diff options
author | Samuel Holland <samuel@sholland.org> | 2019-05-19 18:30:33 -0500 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-06-22 09:32:23 +0200 |
commit | cedcf777f171a9e4c5b37d20d1fa8ab7d8733aa3 (patch) | |
tree | 2a800e53a1e888ecd15d04da04eb5abfcf71eb92 /net-misc/s6-networking/s6-networking-2.3.0.4.ebuild | |
parent | net-dns/s6-dns: Version bump to 2.3.0.2 (diff) | |
download | gentoo-cedcf777f171a9e4c5b37d20d1fa8ab7d8733aa3.tar.gz gentoo-cedcf777f171a9e4c5b37d20d1fa8ab7d8733aa3.tar.bz2 gentoo-cedcf777f171a9e4c5b37d20d1fa8ab7d8733aa3.zip |
net-misc/s6-networking: Version bump to 2.3.0.4
Signed-off-by: Samuel Holland <samuel@sholland.org>
Closes: https://github.com/gentoo/gentoo/pull/12120
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc/s6-networking/s6-networking-2.3.0.4.ebuild')
-rw-r--r-- | net-misc/s6-networking/s6-networking-2.3.0.4.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/net-misc/s6-networking/s6-networking-2.3.0.4.ebuild b/net-misc/s6-networking/s6-networking-2.3.0.4.ebuild new file mode 100644 index 000000000000..ebf8b078727e --- /dev/null +++ b/net-misc/s6-networking/s6-networking-2.3.0.4.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Suite of small networking utilities for Unix systems" +HOMEPAGE="https://www.skarnet.org/software/s6-networking/" +SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64 ~x86" +IUSE="ssl static static-libs" + +REQUIRED_USE="static? ( static-libs )" + +RDEPEND=">=dev-lang/execline-2.5.1.0:=[static-libs?] + >=dev-libs/skalibs-2.8.0.0:=[static-libs?] + >=sys-apps/s6-2.8.0.0:=[static-libs?] + !static? ( + >=net-dns/s6-dns-2.3.0.2:= + ssl? ( >=dev-libs/libressl-2.7.4:= ) + ) +" +DEPEND="${RDEPEND} + >=net-dns/s6-dns-2.3.0.2[static-libs?] + ssl? ( >=dev-libs/libressl-2.7.4[static-libs?] ) +" + +HTML_DOCS=( doc/. ) + +src_prepare() { + default + + # Avoid QA warning for LDFLAGS addition; avoid overriding -fstack-protector + sed -i -e 's/.*-Wl,--hash-style=both$/:/' -e '/-fno-stack-protector$/d' \ + configure || die +} + +src_configure() { + econf \ + --bindir=/bin \ + --dynlibdir=/usr/$(get_libdir) \ + --libdir=/usr/$(get_libdir)/${PN} \ + --with-dynlib=/usr/$(get_libdir) \ + --with-lib=/usr/$(get_libdir)/s6 \ + --with-lib=/usr/$(get_libdir)/s6-dns \ + --with-lib=/usr/$(get_libdir)/skalibs \ + --with-sysdeps=/usr/$(get_libdir)/skalibs \ + --enable-shared \ + $(use_enable ssl ssl libressl) \ + $(use_enable static allstatic) \ + $(use_enable static static-libc) \ + $(use_enable static-libs static) +} |