mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-apps/s6-linux-utils: add 2.6.4.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST s6-linux-utils-2.6.3.0.tar.gz 47091 BLAKE2B da712c74ee388eec91bccac1a106b63fd25742e7e14d7a16c42e266624dd630607a90a3f671d4750cf9de23dc65c63d9f387e5457a6ab0a621065ee1fd819ce5 SHA512 ddd8f96d637b25d3f846d546145325a8cb78a3ba3cbf897649f924ee739c7dbe891907f886dd25f11d0354b40022fe7d16b1907044716d05720e8fd6c0171e60
|
||||
DIST s6-linux-utils-2.6.4.0.tar.gz 54265 BLAKE2B 70a62b687e99df765d3665d9fca19d12f63fbb76c61e9c5e9f4bd938972ce22247f70404ba112a7e95d70832bb0daa6f40b6434df48afdced7f04e2255b4992d SHA512 925f002129b91f750f32dbe9b87b427b45ed2794361e3d7b1bc361c6b998e0584ca5241945b896ae1e6b00ef09a0b3dedec22c6549e88808282b8566ff80d0f0
|
||||
DIST s6-linux-utils-2.6.4.1.tar.gz 54889 BLAKE2B 0cdcd3a07c1ac5a11a50f688c7d11aec6d308bda518bb4de1b7a905458cdfbd72a73ce196a4631af1f9743a42f86011d7ceda983d2ab8500c822850db55d994c SHA512 64db710476c254aa912eaed8e7714a4c322a558ee9bc4ea8f0c553e41c1c79386430260ed8a4f2484388db7c5c8d244b20ad144ce57387d5c4553984f0a0913e
|
||||
|
||||
49
sys-apps/s6-linux-utils/s6-linux-utils-2.6.4.1.ebuild
Normal file
49
sys-apps/s6-linux-utils/s6-linux-utils-2.6.4.1.ebuild
Normal file
@@ -0,0 +1,49 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=9
|
||||
|
||||
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.15.0.0:="
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
>=dev-lang/execline-2.9.8.0
|
||||
"
|
||||
|
||||
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[@]}"
|
||||
}
|
||||
Reference in New Issue
Block a user