diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-17 00:39:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-17 00:39:41 +0000 |
commit | 0a5ec94622ac83111fdf0988e175755c08e304ae (patch) | |
tree | b801cbc8d0928a7047a8ded6ee43d872dd3135e4 /net-analyzer/netcat | |
parent | -net-analyzer/netcat:GAPING_SECURITY_HOLE (diff) | |
download | gentoo-2-0a5ec94622ac83111fdf0988e175755c08e304ae.tar.gz gentoo-2-0a5ec94622ac83111fdf0988e175755c08e304ae.tar.bz2 gentoo-2-0a5ec94622ac83111fdf0988e175755c08e304ae.zip |
Punt USE=GAPING_SECURITY_HOLE support and just enable -e all the time.
(Portage version: 2.1.2)
Diffstat (limited to 'net-analyzer/netcat')
-rw-r--r-- | net-analyzer/netcat/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/netcat/netcat-110-r8.ebuild | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/net-analyzer/netcat/ChangeLog b/net-analyzer/netcat/ChangeLog index 4a79144ccd7f..d32a523b75ed 100644 --- a/net-analyzer/netcat/ChangeLog +++ b/net-analyzer/netcat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/netcat -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.35 2006/04/27 21:36:36 antarus Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.36 2007/01/17 00:39:41 vapier Exp $ + + 17 Jan 2007; Mike Frysinger <vapier@gentoo.org> netcat-110-r8.ebuild: + Punt USE=GAPING_SECURITY_HOLE support and just enable -e all the time. 27 Apr 2006; Alec Warner <antarus@gentoo.org> Manifest: Fixing SHA256 digest, pass four diff --git a/net-analyzer/netcat/netcat-110-r8.ebuild b/net-analyzer/netcat/netcat-110-r8.ebuild index e2936476f7d7..4a7486acce3a 100644 --- a/net-analyzer/netcat/netcat-110-r8.ebuild +++ b/net-analyzer/netcat/netcat-110-r8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r8.ebuild,v 1.8 2006/03/15 01:44:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r8.ebuild,v 1.9 2007/01/17 00:39:41 vapier Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -15,7 +15,7 @@ SRC_URI="http://www.atstake.com/research/tools/network_utilities/${MY_P}.tgz LICENSE="as-is" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" -IUSE="ipv6 static crypt GAPING_SECURITY_HOLE" +IUSE="crypt ipv6 static" DEPEND="crypt? ( dev-libs/libmix )" @@ -30,11 +30,10 @@ src_unpack() { src_compile() { export XLIBS="" - export XFLAGS="-DLINUX -DTELNET" + export XFLAGS="-DLINUX -DTELNET -DGAPING_SECURITY_HOLE" use ipv6 && XFLAGS="${XFLAGS} -DINET6" use static && export STATIC="-static" use crypt && XFLAGS="${XFLAGS} -DAESCRYPT" && XLIBS="${XLIBS} -lmix" - use GAPING_SECURITY_HOLE && XFLAGS="${XFLAGS} -DGAPING_SECURITY_HOLE" make -e CC="$(tc-getCC) ${CFLAGS}" nc || die } |