diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-22 21:53:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-22 21:53:30 +0000 |
commit | 0ed91e2b394d669715f811beae11e46522fa9137 (patch) | |
tree | 3663e2f2b1943b5e5801443e029b34e69ff96940 /net-misc/socat | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-0ed91e2b394d669715f811beae11e46522fa9137.tar.gz gentoo-2-0ed91e2b394d669715f811beae11e46522fa9137.tar.bz2 gentoo-2-0ed91e2b394d669715f811beae11e46522fa9137.zip |
Version bump #68547 for security.
Diffstat (limited to 'net-misc/socat')
-rw-r--r-- | net-misc/socat/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/socat/files/digest-socat-1.4.0.3 | 1 | ||||
-rw-r--r-- | net-misc/socat/socat-1.4.0.3.ebuild | 38 |
3 files changed, 45 insertions, 1 deletions
diff --git a/net-misc/socat/ChangeLog b/net-misc/socat/ChangeLog index 58c2b9136b52..e13116311b78 100644 --- a/net-misc/socat/ChangeLog +++ b/net-misc/socat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/socat # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.12 2004/07/01 21:57:54 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.13 2004/10/22 21:53:30 vapier Exp $ + +*socat-1.4.0.3 (22 Oct 2004) + + 22 Oct 2004; Mike Frysinger <vapier@gentoo.org> +socat-1.4.0.3.ebuild: + Version bump #68547 for security. 01 Jul 2004; Jon Hood <squinky86@gentoo.org> socat-1.3.0.1.ebuild, socat-1.3.1.0.ebuild, socat-1.3.2.0.ebuild, socat-1.3.2.1.ebuild, diff --git a/net-misc/socat/files/digest-socat-1.4.0.3 b/net-misc/socat/files/digest-socat-1.4.0.3 new file mode 100644 index 000000000000..cb0f4d6d517b --- /dev/null +++ b/net-misc/socat/files/digest-socat-1.4.0.3 @@ -0,0 +1 @@ +MD5 104f87f25305990bf46708f55e525973 socat-1.4.0.3.tar.bz2 255824 diff --git a/net-misc/socat/socat-1.4.0.3.ebuild b/net-misc/socat/socat-1.4.0.3.ebuild new file mode 100644 index 000000000000..34a61a7d5fcb --- /dev/null +++ b/net-misc/socat/socat-1.4.0.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.4.0.3.ebuild,v 1.1 2004/10/22 21:53:30 vapier Exp $ + +DESCRIPTION="Multipurpose relay (SOcket CAT)" +HOMEPAGE="http://www.dest-unreach.org/socat/" +SRC_URI="http://www.dest-unreach.org/${PN}/download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 hppa mips ppc sparc x86" +IUSE="ssl readline ipv6" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 ) + readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 ) + virtual/libc" + +S=${WORKDIR}/socat-${PV:0:3} + +src_compile() { + econf \ + $(use_enable ssl openssl) \ + $(use_enable readline) \ + $(use_enable ipv6 ip6) \ + || die "econf failed" + emake || die +} + +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 +} |