diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-05-07 22:52:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-05-07 22:52:04 +0000 |
commit | ce79b5aa7550808d882565c50815cf480b2360a5 (patch) | |
tree | 6ab51a52d83b6b0c03b353cf1fb68eaf96f4fa72 /net-misc/socat | |
parent | Add halbattary patch b.k.o bug 187600 (diff) | |
download | gentoo-2-ce79b5aa7550808d882565c50815cf480b2360a5.tar.gz gentoo-2-ce79b5aa7550808d882565c50815cf480b2360a5.tar.bz2 gentoo-2-ce79b5aa7550808d882565c50815cf480b2360a5.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'net-misc/socat')
-rw-r--r-- | net-misc/socat/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/socat/socat-1.7.1.1.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/net-misc/socat/ChangeLog b/net-misc/socat/ChangeLog index ec881d6f6262..c4835cbdc44d 100644 --- a/net-misc/socat/ChangeLog +++ b/net-misc/socat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/socat # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.50 2009/05/06 17:09:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.51 2009/05/07 22:52:04 jer Exp $ + +*socat-1.7.1.1 (07 May 2009) + + 07 May 2009; Jeroen Roovers <jer@gentoo.org> +socat-1.7.1.1.ebuild: + Version bump. 06 May 2009; Raúl Porcel <armin76@gentoo.org> socat-1.7.0.0.ebuild: ia64/sparc stable wrt #267878 diff --git a/net-misc/socat/socat-1.7.1.1.ebuild b/net-misc/socat/socat-1.7.1.1.ebuild new file mode 100644 index 000000000000..58967eef440e --- /dev/null +++ b/net-misc/socat/socat-1.7.1.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.7.1.1.ebuild,v 1.1 2009/05/07 22:52:04 jer Exp $ + +EAPI="2" + +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_configure() { + econf \ + $(use_enable ssl openssl) \ + $(use_enable readline) \ + $(use_enable ipv6 ip6) \ + $(use_enable tcpd libwrap) +} + +src_test() { + TMPDIR="${T}" emake test || die 'self test failed' +} + +src_install() { + emake install DESTDIR="${D}" || die "emake install failed" + + dodoc BUGREPORTS CHANGES DEVELOPMENT EXAMPLES \ + FAQ FILES PORTING README SECURITY VERSION + docinto examples + dodoc *.sh + dohtml doc/*.html doc/*.css +} |