diff options
author | 2005-03-21 23:10:19 +0000 | |
---|---|---|
committer | 2005-03-21 23:10:19 +0000 | |
commit | d01dd2657712e3d8260a98ddeb4c479858f788a3 (patch) | |
tree | cbf3df1732ea14a8089f7314ed6f725c96d07990 /net-misc/socat/socat-1.4.2.0.ebuild | |
parent | Ok, that should take care of the mplayer pic patch fun. Tested this on gcc 3... (diff) | |
download | historical-d01dd2657712e3d8260a98ddeb4c479858f788a3.tar.gz historical-d01dd2657712e3d8260a98ddeb4c479858f788a3.tar.bz2 historical-d01dd2657712e3d8260a98ddeb4c479858f788a3.zip |
Version bump to 1.4.2.0. Closes bug #86187.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-misc/socat/socat-1.4.2.0.ebuild')
-rw-r--r-- | net-misc/socat/socat-1.4.2.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/net-misc/socat/socat-1.4.2.0.ebuild b/net-misc/socat/socat-1.4.2.0.ebuild new file mode 100644 index 000000000000..bf12ff9d4e1b --- /dev/null +++ b/net-misc/socat/socat-1.4.2.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.4.2.0.ebuild,v 1.1 2005/03/21 23:10:19 chriswhite 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 +} |