sys-apps/s6-linux-utils: 2.1.0.0 version bump
authorWilliam Hubbs <williamh@gentoo.org>
Wed, 29 Jun 2016 17:22:17 +0000 (12:22 -0500)
committerWilliam Hubbs <williamh@gentoo.org>
Wed, 29 Jun 2016 17:35:37 +0000 (12:35 -0500)
Package-Manager: portage-2.2.28

sys-apps/s6-linux-utils/Manifest
sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild [new file with mode: 0644]

index e8793747fbcc9b99e1be3dfea92e70bc164463bf..12e9831d95a6ba630f047509262feb7bef07b22f 100644 (file)
@@ -1 +1,2 @@
 DIST s6-linux-utils-2.0.2.3.tar.gz 40050 SHA256 f959ffb9bb79865018becc6664d29faef22cb747a43db252879e11886b1b8cc3 SHA512 10d919c67036dbd57ed8d0e2ba46e1957c621414cae2326c2c696a27b46496d928aa768465236585ed8be279a2866cc9a519f9feb51b9757f999e9b8b80faf2d WHIRLPOOL 7c5515d65fc2f5db1a0b14abedfd2ea462e621a6a16200da162487b0a57d1adce6f5ecc034524b1e8f066e531413f5a9c528187dee38b1980d3826a3a970d6c8
+DIST s6-linux-utils-2.1.0.0.tar.gz 40996 SHA256 3523ba84ba524198711b2de3edaaf620381a4e95d78ec6d13dcb7aba42397ead SHA512 a2bd997334b69c7d864ea14dd27af7b62c8a7b6ccf8f9431ed87f46590546e540a06577f04d2cf3e52299cd9819a31e926326862d751b8528bc98ec2f4e93913 WHIRLPOOL 3718fc4260b3ea1fe04d8b05021ce1a8ad2b1099e780da646df53d7174cabbe536c2e366f2b725a049258bcc057cdf9e226bd81a0fe575ad184f3df866112847
diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild
new file mode 100644 (file)
index 0000000..49c46a6
--- /dev/null
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Set of tiny linux utilities"
+HOMEPAGE="http://www.skarnet.org/software/s6-linux-utils/"
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+DEPEND="
+       static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
+       !static? ( >=dev-libs/skalibs-2.3.10.0 )
+       "
+RDEPEND="
+       !static? ( >=dev-libs/skalibs-2.3.10.0 )
+       "
+
+HTML_DOCS="doc/."
+
+src_prepare()
+{
+       # Remove QA warning about LDFLAGS addition
+       sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" "${S}/configure" || die
+
+       eapply_user
+}
+
+src_configure()
+{
+       econf \
+               $(use_enable !static shared) \
+               $(use_enable static allstatic) \
+               $(use_enable static) \
+               --bindir=/bin \
+               --sbindir=/sbin \
+               --dynlibdir=/$(get_libdir) \
+               --libdir=/usr/$(get_libdir)/${PN} \
+               --datadir=/etc \
+               --sysdepdir=/usr/$(get_libdir)/${PN} \
+               --with-dynlib=/$(get_libdir) \
+               --with-sysdeps=/usr/$(get_libdir)/skalibs
+}