diff options
author | Samuel Holland <samuel@sholland.org> | 2017-10-03 13:36:22 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2017-10-03 13:43:54 -0500 |
commit | fd5459746e3fd7ff0002715cf11ddf5495d66fbd (patch) | |
tree | 1aad5c3d868a438d1b185f8dea3537d85bf79375 /sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild | |
parent | sys-apps/s6-rc: 0.2.1.2 version bump (diff) | |
download | gentoo-fd5459746e3fd7ff0002715cf11ddf5495d66fbd.tar.gz gentoo-fd5459746e3fd7ff0002715cf11ddf5495d66fbd.tar.bz2 gentoo-fd5459746e3fd7ff0002715cf11ddf5495d66fbd.zip |
sys-apps/s6-portable-utils: 2.2.1.1 version bump
Diffstat (limited to 'sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild')
-rw-r--r-- | sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild new file mode 100644 index 000000000000..d303c8bb16a9 --- /dev/null +++ b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="set of tiny portable unix utilities" +HOMEPAGE="https://www.skarnet.org/software/s6-portable-utils/" +SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static" + +DEPEND=">=sys-devel/make-3.81 + static? ( + >=dev-libs/skalibs-2.6.0.0[static-libs] + ) + !static? ( + >=dev-libs/skalibs-2.6.0.0 + ) +" +RDEPEND=" + !static? ( + >=dev-libs/skalibs-2.6.0.0:= + ) +" + +HTML_DOCS="doc/*" + +src_prepare() { + default + + # Remove QA warning about LDFLAGS addition + sed -i "s/tryldflag LDFLAGS_AUTO -Wl,--hash-style=both/:/" "${S}/configure" || die + + # configure overrides gentoo's -fstack-protector default + sed -i "/^tryflag CFLAGS_AUTO -fno-stack-protector$/d" "${S}/configure" || die +} + +src_configure() { + econf \ + --bindir=/bin \ + --dynlibdir=/$(get_libdir) \ + --libdir=/usr/$(get_libdir)/${PN} \ + --with-dynlib=/$(get_libdir) \ + --with-lib=/usr/$(get_libdir)/skalibs \ + --with-sysdeps=/usr/$(get_libdir)/skalibs \ + $(use_enable static allstatic) \ + $(use_enable static static-libc) +} |