diff options
author | Raphaël Marichez <falco@gentoo.org> | 2007-07-26 13:07:19 +0000 |
---|---|---|
committer | Raphaël Marichez <falco@gentoo.org> | 2007-07-26 13:07:19 +0000 |
commit | 2e8f2a07dbc619c305e5db263b55e7d8b08588ed (patch) | |
tree | dc4b1386d14a9856dc70f331863a164cffb59599 /net-misc/socat/socat-2.0.0_beta1.ebuild | |
parent | dev-dotnet/monodevelop-0.14 - fixes in configure.in (bug #183956) (diff) | |
download | gentoo-2-2e8f2a07dbc619c305e5db263b55e7d8b08588ed.tar.gz gentoo-2-2e8f2a07dbc619c305e5db263b55e7d8b08588ed.tar.bz2 gentoo-2-2e8f2a07dbc619c305e5db263b55e7d8b08588ed.zip |
Version bump for testing
(Portage version: 2.1.2.9)
Diffstat (limited to 'net-misc/socat/socat-2.0.0_beta1.ebuild')
-rw-r--r-- | net-misc/socat/socat-2.0.0_beta1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-misc/socat/socat-2.0.0_beta1.ebuild b/net-misc/socat/socat-2.0.0_beta1.ebuild new file mode 100644 index 000000000000..d15f4766f707 --- /dev/null +++ b/net-misc/socat/socat-2.0.0_beta1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-2.0.0_beta1.ebuild,v 1.1 2007/07/26 13:07:19 falco Exp $ + +inherit eutils + +DESCRIPTION="Multipurpose relay (SOcket CAT)" +HOMEPAGE="http://www.dest-unreach.org/socat/" +MY_P=${P/_beta/-b} +S="${WORKDIR}/${MY_P}" +SRC_URI="http://www.dest-unreach.org/socat/download/${MY_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" + +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() { + TMPDIR="${T}" make test || die 'self test failed' +} + +src_install() { + make install DESTDIR="${D}" || die + + dodoc BUGREPORTS CHANGES DEVELOPMENT EXAMPLES \ + FAQ FILES PORTING README SECURITY VERSION + docinto examples + dodoc *.sh + dohtml doc/*.html doc/*.css +} |