mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-apps/s6-linux-init: drop 1.0.7.3-r1
Signed-off-by: Petr Vaněk <arkamar@atlas.cz> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
committed by
Joonas Niilola
parent
bed1f25cc3
commit
dfa810c5d0
@@ -1,2 +1 @@
|
||||
DIST s6-linux-init-1.0.7.3.tar.gz 58607 BLAKE2B 081c452761d96308b496e4ec3281c8b50d6cc1760b34d74647bd27cfef213e73f0cb1e1919c7d238242e8295c91a8fb3bf51638b1216e922516c71eb5718486a SHA512 ff4e1727f7d68ceb72db501de5abc36962b0083baef376899aefa4cd81420852c7966ca1c625339c052d205a28261cc928e87a2e5715854b5fcc4666c56eeff3
|
||||
DIST s6-linux-init-1.0.8.0.tar.gz 58732 BLAKE2B 15e90b1987729f4771ffd294d2a6b4738e0e2d3438c694c1739c6c8ff8bff3a3b9c31565f446e7387fda226b4f0480c36051a593e2e8081301bc83973f9fcb5e SHA512 b64319bc13a98e5f766a118ebd54ccec93163b38b2afc060fe4034a4f2312bb6ae68019e37706338f84c74aa527e5b2ac1f4b29d39255c2d436eab8608483346
|
||||
|
||||
@@ -1,74 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Generates an init binary for s6-based init systems"
|
||||
HOMEPAGE="https://www.skarnet.org/software/s6-linux-init/"
|
||||
SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="ISC"
|
||||
SLOT="0/$(ver_cut 1-2)"
|
||||
KEYWORDS="amd64 ~arm x86"
|
||||
IUSE="static static-libs +sysv-utils"
|
||||
|
||||
REQUIRED_USE="static? ( static-libs )"
|
||||
|
||||
RDEPEND=">=dev-lang/execline-2.8.3.0:=[static-libs(-)?]
|
||||
>=dev-libs/skalibs-2.11.2.0:=[static-libs(-)?]
|
||||
>=sys-apps/s6-2.11.1.0:=[execline,static-libs(-)?]
|
||||
sysv-utils? (
|
||||
!sys-apps/systemd[sysv-utils]
|
||||
!sys-apps/sysvinit
|
||||
)
|
||||
"
|
||||
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)
|
||||
--skeldir=/etc/s6-linux-init/skel
|
||||
--libdir=/usr/$(get_libdir)/${PN}
|
||||
--with-dynlib=/usr/$(get_libdir)
|
||||
--with-lib=/usr/$(get_libdir)/s6
|
||||
--with-lib=/usr/$(get_libdir)/skalibs
|
||||
--with-sysdeps=/usr/$(get_libdir)/skalibs
|
||||
--enable-shared
|
||||
$(use_enable static allstatic)
|
||||
$(use_enable static static-libc)
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
if use sysv-utils ; then
|
||||
"${D}/bin/s6-linux-init-maker" -f "${D}/etc/s6-linux-init/skel" "${T}/dir" || die
|
||||
into /
|
||||
dosbin "${T}/dir/bin"/{halt,poweroff,reboot,shutdown,telinit}
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "Read ${EROOT}/usr/share/doc/${PF}/html/quickstart.html"
|
||||
einfo "for usage instructions."
|
||||
}
|
||||
Reference in New Issue
Block a user