diff options
author | Raphaël Marichez <falco@gentoo.org> | 2007-08-02 11:17:03 +0000 |
---|---|---|
committer | Raphaël Marichez <falco@gentoo.org> | 2007-08-02 11:17:03 +0000 |
commit | 7cbbb9cdd1c9cd2443f40fb777a95ca2c61662c4 (patch) | |
tree | d69fca719301352bd8fd4ff5ae36be52055ea7ed /net-analyzer | |
parent | Version bump (diff) | |
download | gentoo-2-7cbbb9cdd1c9cd2443f40fb777a95ca2c61662c4.tar.gz gentoo-2-7cbbb9cdd1c9cd2443f40fb777a95ca2c61662c4.tar.bz2 gentoo-2-7cbbb9cdd1c9cd2443f40fb777a95ca2c61662c4.zip |
Version bump
(Portage version: 2.1.2.9)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/tcpdump/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/tcpdump/files/digest-tcpdump-3.9.7 | 3 | ||||
-rw-r--r-- | net-analyzer/tcpdump/tcpdump-3.9.7.ebuild | 76 |
3 files changed, 85 insertions, 1 deletions
diff --git a/net-analyzer/tcpdump/ChangeLog b/net-analyzer/tcpdump/ChangeLog index f7c051df2ac6..0b2714ce88e2 100644 --- a/net-analyzer/tcpdump/ChangeLog +++ b/net-analyzer/tcpdump/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/tcpdump # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/ChangeLog,v 1.108 2007/07/26 22:07:18 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/ChangeLog,v 1.109 2007/08/02 11:17:03 falco Exp $ + +*tcpdump-3.9.7 (02 Aug 2007) + + 02 Aug 2007; Raphael Marichez <falco@gentoo.org> +tcpdump-3.9.7.ebuild: + Version bump 26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> tcpdump-3.9.6-r1.ebuild: diff --git a/net-analyzer/tcpdump/files/digest-tcpdump-3.9.7 b/net-analyzer/tcpdump/files/digest-tcpdump-3.9.7 new file mode 100644 index 000000000000..7b8e08701c71 --- /dev/null +++ b/net-analyzer/tcpdump/files/digest-tcpdump-3.9.7 @@ -0,0 +1,3 @@ +MD5 2aacf4dc9a3bc500a8b4f3887a32cdd5 tcpdump-3.9.7.tar.gz 873866 +RMD160 1c662f61c99121bfc8336eb059b60630cab03998 tcpdump-3.9.7.tar.gz 873866 +SHA256 09f1daece22a3555f1ca1f9779caf36357cc8d5b9ad1964606093c7e884e0da4 tcpdump-3.9.7.tar.gz 873866 diff --git a/net-analyzer/tcpdump/tcpdump-3.9.7.ebuild b/net-analyzer/tcpdump/tcpdump-3.9.7.ebuild new file mode 100644 index 000000000000..a26a2dedf256 --- /dev/null +++ b/net-analyzer/tcpdump/tcpdump-3.9.7.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/tcpdump-3.9.7.ebuild,v 1.1 2007/08/02 11:17:03 falco Exp $ + +inherit flag-o-matic toolchain-funcs eutils + +DESCRIPTION="A Tool for network monitoring and data acquisition" +HOMEPAGE="http://www.tcpdump.org/" +SRC_URI="http://www.tcpdump.org/release/${P}.tar.gz + http://www.jp.tcpdump.org/release/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ssl ipv6 samba" + +DEPEND="net-libs/libpcap + ssl? ( >=dev-libs/openssl-0.9.6m )" + +pkg_setup() { + if use samba ; then + ewarn + ewarn "CAUTION !!! CAUTION !!! CAUTION" + ewarn + ewarn "You're about to compile tcpdump with samba printing support" + ewarn "Upstream tags it as 'possibly-buggy SMB printer'" + ewarn "So think twice whether this is fine with you" + ewarn + ewarn "CAUTION !!! CAUTION !!! CAUTION" + ewarn + ewarn "(Giving you 10 secs to think about it)" + ewarn + ebeep 5 + epause 5 + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" +} + +src_compile() { + # tcpdump needs some optymalization. see bug #108391 + ( ! is-flag -O? || is-flag -O0 ) && append-flags -O + + replace-flags -O[3-9] -O2 + filter-flags -finline-functions + + # Fix wrt bug #48747 + if [[ $(gcc-major-version) -gt 3 ]] || \ + [[ $(gcc-major-version) -eq 3 && $(gcc-minor-version) -ge 4 ]] + then + filter-flags -funit-at-a-time + append-flags -fno-unit-at-a-time + fi + + local myconf + if ! use ssl ; then + myconf="--without-crypto" + fi + + econf \ + $(use_enable ipv6) \ + $(use_enable samba smb) \ + ${myconf} || die "configure failed" + + make CCOPT="$CFLAGS" || die "make failed" +} + +src_install() { + dosbin tcpdump + doman tcpdump.1 + dodoc *.awk + dodoc README FILES VERSION CHANGES CREDITS TODO +} |