diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2023-02-18 15:55:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-02-21 08:01:01 +0000 |
commit | 3c6ddf757e8c589b220a3660801fae79627b9e8d (patch) | |
tree | f6ec4cd6cb40e4afb51316a39506ff1b61d3c59f /sys-apps/s6-linux-utils | |
parent | sys-apps/s6-rc: add 0.5.4.0 (diff) | |
download | gentoo-3c6ddf757e8c589b220a3660801fae79627b9e8d.tar.gz gentoo-3c6ddf757e8c589b220a3660801fae79627b9e8d.tar.bz2 gentoo-3c6ddf757e8c589b220a3660801fae79627b9e8d.zip |
sys-apps/s6-linux-utils: add 2.6.1.0
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/s6-linux-utils')
-rw-r--r-- | sys-apps/s6-linux-utils/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/s6-linux-utils/s6-linux-utils-2.6.1.0.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 2e481e4e6896..93d2bbcd066e 100644 --- a/sys-apps/s6-linux-utils/Manifest +++ b/sys-apps/s6-linux-utils/Manifest @@ -1,2 +1,3 @@ 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 +DIST s6-linux-utils-2.6.1.0.tar.gz 42798 BLAKE2B b3e858c5755ffc7604e23a8fc08344161a11cad7b52183f5c527cd155c0d15c50f004aa4365cbbb236c5c1e5a48ff8af7787084c10f7517ef0e81d4afcf12c8b SHA512 a9308cf6629439356c7379d7e07e79cd2fa780014f65fa997551b89fe8a7a9490145efea8612490ece4bdaf3b0ae06e07464ec157a1ed1509d4afee2d5722ec1 diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.6.1.0.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.1.0.ebuild new file mode 100644 index 000000000000..43ea27b14a6a --- /dev/null +++ b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.1.0.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="/$(get_libdir)" + --libdir="/usr/$(get_libdir)/${PN}" + --with-dynlib="/$(get_libdir)" + --with-lib="/usr/$(get_libdir)/skalibs" + --with-sysdeps="/usr/$(get_libdir)/skalibs" + --disable-allstatic + --disable-static + --disable-static-libc + ) + + econf "${myconf[@]}" +} |