diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2023-01-16 16:10:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-17 01:52:13 +0000 |
commit | c8c7d548c213742e8470fe9089901f78574d082f (patch) | |
tree | d576352c8a10ca6aafd78f2cfa270d9deb26a002 /sys-apps | |
parent | sys-apps/s6-rc: add 0.5.3.3 (diff) | |
download | gentoo-c8c7d548c213742e8470fe9089901f78574d082f.tar.gz gentoo-c8c7d548c213742e8470fe9089901f78574d082f.tar.bz2 gentoo-c8c7d548c213742e8470fe9089901f78574d082f.zip |
sys-apps/s6-linux-utils: add 2.6.0.1
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/s6-linux-utils/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.1.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/sys-apps/s6-linux-utils/Manifest b/sys-apps/s6-linux-utils/Manifest index 079c6d422108..2e481e4e6896 100644 --- a/sys-apps/s6-linux-utils/Manifest +++ b/sys-apps/s6-linux-utils/Manifest @@ -1 +1,2 @@ DIST s6-linux-utils-2.6.0.0.tar.gz 39674 BLAKE2B 146b5ef47c00c4e96eb6ea697137cd11732087612df98781e45169ff8503fe3ba9b84cab06e6b96ba373f11c65902f4f5111322d51b0fdb395b3422ba092d836 SHA512 cecd745d473b200e10071d73191d5ec425533818a9775e882a2b8a2fbc98779f2309e17d41f844b171e0625b233804bc7af9585709e8e42dc73ff30afcee06e9 +DIST s6-linux-utils-2.6.0.1.tar.gz 40062 BLAKE2B 41aa8e3f6774383c1400f83c9b743c1abe106a46ae6213dfba799106cdd10ac2a7bac452c5af297e40081c109b043afa2011c194b50ea8aa53df6a96a632ef39 SHA512 52e10411ea2532534c397a07981e5bd79ce97c79c688efe0378edc4e696ce9dfdc4fd3eb942c4a75c06f16a5d7c10b2f8cd396c07d98620e94446fcd10bc5bae diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.1.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.1.ebuild new file mode 100644 index 000000000000..d93443a16c11 --- /dev/null +++ b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Set of tiny linux utilities" +HOMEPAGE="https://www.skarnet.org/software/s6-linux-utils/" +SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=">=dev-libs/skalibs-2.13.0.0:=" +DEPEND="${RDEPEND}" + +HTML_DOCS=( doc/. ) + +src_prepare() { + default + + # Avoid QA warning for LDFLAGS addition + sed -i -e 's/.*-Wl,--hash-style=both$/:/' configure || die + + sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die +} + +src_configure() { + tc-export AR CC RANLIB + + local myconf=( + --bindir=/bin + --dynlibdir=/usr/$(get_libdir) + --libdir=/usr/$(get_libdir)/${PN} + --with-dynlib=/usr/$(get_libdir) + --with-lib=/usr/$(get_libdir)/skalibs + --with-sysdeps=/usr/$(get_libdir)/skalibs + --disable-allstatic + --disable-static + --disable-static-libc + ) + + econf "${myconf[@]}" +} |