diff options
author | 2014-03-18 17:16:41 +0000 | |
---|---|---|
committer | 2014-03-18 17:16:41 +0000 | |
commit | e406fe8e12a68953160c15f03420c075ea322787 (patch) | |
tree | b09809748a5464854147446df479bbc29584b2ae /net-misc/socat | |
parent | dev-tcltk/bwidget: Version BUmp, #504966 (diff) | |
download | gentoo-2-e406fe8e12a68953160c15f03420c075ea322787.tar.gz gentoo-2-e406fe8e12a68953160c15f03420c075ea322787.tar.bz2 gentoo-2-e406fe8e12a68953160c15f03420c075ea322787.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/socat')
-rw-r--r-- | net-misc/socat/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/socat/socat-1.7.2.4.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/net-misc/socat/ChangeLog b/net-misc/socat/ChangeLog index 6652f8d0dd47..cee062269213 100644 --- a/net-misc/socat/ChangeLog +++ b/net-misc/socat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/socat # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.131 2014/03/17 16:07:50 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.132 2014/03/18 17:16:41 jer Exp $ + +*socat-1.7.2.4 (18 Mar 2014) + + 18 Mar 2014; Jeroen Roovers <jer@gentoo.org> +socat-1.7.2.4.ebuild: + Version bump. 17 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> socat-1.7.2.3.ebuild: Keyword amd64-linux and x86-linux diff --git a/net-misc/socat/socat-1.7.2.4.ebuild b/net-misc/socat/socat-1.7.2.4.ebuild new file mode 100644 index 000000000000..0da44a43f65f --- /dev/null +++ b/net-misc/socat/socat-1.7.2.4.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.7.2.4.ebuild,v 1.1 2014/03/18 17:16:41 jer Exp $ + +EAPI=5 + +inherit eutils flag-o-matic toolchain-funcs + +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 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +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 ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i test.sh -e "s|/sbin/ifconfig|$(type -P ifconfig)|g" || die +} + +src_configure() { + filter-flags '-Wno-error*' #293324 + tc-export AR + econf \ + $(use_enable ssl openssl) \ + $(use_enable readline) \ + $(use_enable ipv6 ip6) \ + $(use_enable tcpd libwrap) +} + +src_test() { + TMPDIR="${T}" emake test +} + +src_install() { + default + + dodoc BUGREPORTS CHANGES DEVELOPMENT \ + FAQ FILES PORTING README SECURITY VERSION + docinto examples + dodoc EXAMPLES *.sh + dohtml doc/*.html doc/*.css +} |