diff options
author | 2018-01-21 20:24:13 -0500 | |
---|---|---|
committer | 2018-01-21 20:24:26 -0500 | |
commit | 0b18aaa8782f3f5fdf89051e73be94b1b32c9487 (patch) | |
tree | 275ebfde22a58f71689b3841492ceb454ff4570e /net-misc/sslh/sslh-9999.ebuild | |
parent | profiles: Drop obsolete sci-libs/plplot p.use.stable.mask (diff) | |
download | gentoo-0b18aaa8782f3f5fdf89051e73be94b1b32c9487.tar.gz gentoo-0b18aaa8782f3f5fdf89051e73be94b1b32c9487.tar.bz2 gentoo-0b18aaa8782f3f5fdf89051e73be94b1b32c9487.zip |
net-misc/sslh: version bump to 1.19
Diffstat (limited to 'net-misc/sslh/sslh-9999.ebuild')
-rw-r--r-- | net-misc/sslh/sslh-9999.ebuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/net-misc/sslh/sslh-9999.ebuild b/net-misc/sslh/sslh-9999.ebuild index 8f3831fefa9b..3c1ac5f9f7f7 100644 --- a/net-misc/sslh/sslh-9999.ebuild +++ b/net-misc/sslh/sslh-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI="6" inherit flag-o-matic systemd toolchain-funcs @@ -11,7 +11,7 @@ if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/yrutschle/sslh.git" inherit git-r3 else - KEYWORDS="amd64 ~arm ~m68k ~mips ~s390 ~sh x86" + KEYWORDS="~amd64 ~arm ~m68k ~mips ~s390 ~sh ~x86" MY_P="${PN}-v${PV}" SRC_URI="http://www.rutschle.net/tech/${PN}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} @@ -31,6 +31,14 @@ DEPEND="${RDEPEND} RESTRICT="test" +src_prepare() { + default + sed -i \ + -e '/MAN/s:| gzip -9 - >:>:' \ + -e '/MAN=sslh.8.gz/s:.gz::' \ + Makefile || die +} + src_compile() { # On older versions of GCC, the default gnu89 variant # will reject within-for-loop initializers, bug #595426 @@ -51,12 +59,11 @@ src_install() { dosbin sslh-{fork,select} dosym sslh-fork /usr/sbin/sslh - gunzip ${PN}.8.gz doman ${PN}.8 dodoc ChangeLog README.md - newinitd "${FILESDIR}"/sslh.init.d-2 sslh + newinitd "${FILESDIR}"/sslh.init.d-3 sslh newconfd "${FILESDIR}"/sslh.conf.d-2 sslh if use systemd; then |