diff options
author | Luis Ressel <aranea@aixah.de> | 2018-08-22 23:37:23 +0200 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2018-10-08 17:11:01 -0700 |
commit | 7c758a3b52ad5a0654402a4f51709fe5c5b83f45 (patch) | |
tree | 9b5f81d50460e69badae6075ff897c699757da4e /sys-apps/s6-portable-utils | |
parent | sys-apps/s6: Bump to 2.7.2.1 (diff) | |
download | gentoo-7c758a3b52ad5a0654402a4f51709fe5c5b83f45.tar.gz gentoo-7c758a3b52ad5a0654402a4f51709fe5c5b83f45.tar.bz2 gentoo-7c758a3b52ad5a0654402a4f51709fe5c5b83f45.zip |
sys-apps/s6-portable-utils: Bump to 2.2.1.2
Bump to EAPI 7.
Closes: https://github.com/gentoo/gentoo/pull/9675
Signed-off-by: Luis Ressel <aranea@aixah.de>
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'sys-apps/s6-portable-utils')
-rw-r--r-- | sys-apps/s6-portable-utils/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.2.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/sys-apps/s6-portable-utils/Manifest b/sys-apps/s6-portable-utils/Manifest index f0eddcc21a00..73c94721643e 100644 --- a/sys-apps/s6-portable-utils/Manifest +++ b/sys-apps/s6-portable-utils/Manifest @@ -1 +1,2 @@ DIST s6-portable-utils-2.2.1.1.tar.gz 47138 BLAKE2B f5519fbedc2599c0b9366bbff38a9438cb4cdf3b770dfec6e519f8857bd77a3bea172284318df224104fe7003af4a68cadc8089d77c98ba4da85eb59d59819f4 SHA512 fba7a4d1f5e0c969dc254775f28c02f1b8673ead28022962175bd605125dc56012cfdeb177037c322780be93a5191a5292a47cb26cf5d466bb5eb081fa5a9657 +DIST s6-portable-utils-2.2.1.2.tar.gz 47446 BLAKE2B 31093828bbff8d7ebd68e9b9024abff802511d6def436b6c4a42e127fc8ee84544a3e590db2e59d76f2ab407b29edbd462725d8f6c8b4923b999809c58126c8f SHA512 697356a1bea6a0d9ca2dc995667fb2c3ab0e0ec72f9cba9f64a3b745e17ff85793be4b9a3bfcb8137938b732195fdabd2ffba5cef26f86f3ad2705907c6a8ab4 diff --git a/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.2.ebuild b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.2.ebuild new file mode 100644 index 000000000000..d10b94ff05bd --- /dev/null +++ b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.1.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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="static? ( >=dev-libs/skalibs-2.7.0.0[static-libs] ) + !static? ( >=dev-libs/skalibs-2.7.0.0 ) +" +RDEPEND="!static? ( >=dev-libs/skalibs-2.7.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) +} |