diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-08-07 12:44:16 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-08-07 12:44:16 +0000 |
commit | 2ef3ecb58dfc642adc7682a5e6987d1c5d453f73 (patch) | |
tree | be3ac4a761cd7ed82c76d04e2b3bdf6f5ef8e1de /net-misc/sslh/sslh-1.13-r2.ebuild | |
parent | Fix build with metalink + gnutls, bug 428592. Cleaned out unused patch files. (diff) | |
download | gentoo-2-2ef3ecb58dfc642adc7682a5e6987d1c5d453f73.tar.gz gentoo-2-2ef3ecb58dfc642adc7682a5e6987d1c5d453f73.tar.bz2 gentoo-2-2ef3ecb58dfc642adc7682a5e6987d1c5d453f73.zip |
Revision bump to install binaries into the correct location, which was breaking the init script. Thanks to Agostino Sarubbo <ago@gentoo.org>.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/sslh/sslh-1.13-r2.ebuild')
-rw-r--r-- | net-misc/sslh/sslh-1.13-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/net-misc/sslh/sslh-1.13-r2.ebuild b/net-misc/sslh/sslh-1.13-r2.ebuild new file mode 100644 index 000000000000..10c5cbc6a40f --- /dev/null +++ b/net-misc/sslh/sslh-1.13-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/sslh/sslh-1.13-r2.ebuild,v 1.1 2012/08/07 12:44:16 kensington Exp $ + +EAPI=4 + +inherit toolchain-funcs + +DESCRIPTION="SSLH lets one accept both HTTPS and SSH connections on the same port" +HOMEPAGE="http://www.rutschle.net/tech/sslh.shtml" +SRC_URI="http://www.rutschle.net/tech/${P}b.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="tcpd" + +RDEPEND="tcpd? ( sys-apps/tcp-wrappers ) + dev-libs/libconfig" +DEPEND="${RDEPEND} + dev-lang/perl" + +RESTRICT="test" + +src_prepare() { + sed -i \ + -e '/strip sslh/d' \ + -e '/^LIBS=/s:$: $(LDFLAGS):' \ + -e '/^CFLAGS=/d' \ + Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + USELIBWRAP=$(usev tcpd) +} + +src_install() { + dosbin sslh-{fork,select} + dosym sslh-fork /usr/sbin/sslh + doman sslh.8.gz + dodoc ChangeLog README + + newinitd "${FILESDIR}"/sslh.init.d-2 sslh + newconfd "${FILESDIR}"/sslh.conf.d-2 sslh +} |