mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
sys-apps/s6-frontend: add 0.0.1.2
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST s6-frontend-0.0.1.1.tar.gz 56413 BLAKE2B 6790dd79bda08dcd2a62caa9c2663b52805ff6ef1fdc92cf7533b47fe180e5673a95d95289740c0297d81e9b746fe3e3fb32b97bccb151fa4d01474b5672306e SHA512 766e5b144eb34a5b075e49702d7d906b2cb5b4e6b32b3178e6912bcd53944f07aad899e30e1cc99998574f1ebd26c1442d0c2361765ddeb40a61a49db3447777
|
||||
DIST s6-frontend-0.0.1.2.tar.gz 57275 BLAKE2B 4c0454fdd86681d2334dad1971d691920ef20ad9399315c7d812609c2abe65e079f73da3af48c90cdf522860fa263c635cec2b559bbd438bfdccef7fecbb1b2c SHA512 9aa9457f5ff6c620398274dc5b2594d93a7da3749f147e08f55f01b82053d6aed3b3f5d1143bc867c5280c14dbf8477b073643b409eae4fa1a7e1e5086c1f235
|
||||
|
||||
59
sys-apps/s6-frontend/s6-frontend-0.0.1.2.ebuild
Normal file
59
sys-apps/s6-frontend/s6-frontend-0.0.1.2.ebuild
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=9
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Frontend to the s6 init system"
|
||||
HOMEPAGE="https://skarnet.org/software/s6-frontend/"
|
||||
SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="ISC"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-lang/execline:=
|
||||
>=dev-libs/skalibs-2.15.0.0:=
|
||||
sys-apps/s6:=[execline]
|
||||
>=sys-apps/s6-rc-0.6.1.1:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-apps/s6-linux-init:=
|
||||
"
|
||||
|
||||
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}"
|
||||
--libexecdir=/lib/s6
|
||||
--with-dynlib="/$(get_libdir)"
|
||||
--with-lib="/usr/$(get_libdir)/execline"
|
||||
--with-lib="/usr/$(get_libdir)/s6"
|
||||
--with-lib="/usr/$(get_libdir)/s6-rc"
|
||||
--with-lib="/usr/$(get_libdir)/skalibs"
|
||||
--with-sysdeps="/usr/$(get_libdir)/skalibs"
|
||||
|
||||
--enable-shared
|
||||
--disable-allstatic
|
||||
--disable-static
|
||||
--disable-static-libc
|
||||
)
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
Reference in New Issue
Block a user