diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-02-11 21:02:35 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-02-11 21:02:35 +0000 |
commit | 4ffc460b47551afb29ad57fc16d70e512ef4e42f (patch) | |
tree | ab361c80d38baec7f099483e3cbe7ea8a8f68b1f /net-misc/socat/socat-1.4.3.1.ebuild | |
parent | virtual for getopt-long (diff) | |
download | gentoo-2-4ffc460b47551afb29ad57fc16d70e512ef4e42f.tar.gz gentoo-2-4ffc460b47551afb29ad57fc16d70e512ef4e42f.tar.bz2 gentoo-2-4ffc460b47551afb29ad57fc16d70e512ef4e42f.zip |
1.4.3.1 version bump.
(Portage version: 2.0.54)
Diffstat (limited to 'net-misc/socat/socat-1.4.3.1.ebuild')
-rw-r--r-- | net-misc/socat/socat-1.4.3.1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/net-misc/socat/socat-1.4.3.1.ebuild b/net-misc/socat/socat-1.4.3.1.ebuild new file mode 100644 index 000000000000..963fb22d9cff --- /dev/null +++ b/net-misc/socat/socat-1.4.3.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.4.3.1.ebuild,v 1.1 2006/02/11 21:02:35 vanquirius Exp $ + +inherit eutils + +DESCRIPTION="Multipurpose relay (SOcket CAT)" +HOMEPAGE="http://www.dest-unreach.org/socat/" +SRC_URI="http://www.dest-unreach.org/socat/download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="ssl readline ipv6 tcpd" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 ) + readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 ) + tcpd? ( sys-apps/tcp-wrappers ) + virtual/libc" + +S="${WORKDIR}/socat-${PV:0:3}" + +src_unpack() { + unpack ${A} + epatch "${FILESDIR}"/${PN}-1.4.3.0-tmp-tail.patch + cp "${S}"/test.sh "${S}"/test.sh.original + epatch "${FILESDIR}"/${PN}-1.4.3.0-noptytest.patch +} + +src_compile() { + econf \ + $(use_enable ssl openssl) \ + $(use_enable readline) \ + $(use_enable ipv6 ip6) \ + $(use_enable tcpd libwrap) \ + || die "econf failed" + emake || die +} + +src_test() { + TMP="${T}" make test || die 'self test failed' +} + +src_install() { + dodir /usr/bin /usr/share/man/man1 + make install DESTDIR="${D}" || die + + dodoc BUGREPORTS CHANGES DEVELOPMENT EXAMPLES \ + FAQ FILES PORTING README SECURITY VERSION xio.help + docinto examples + dodoc *.sh + dohtml socat.html +} |