diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-05-09 03:19:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-05-09 03:19:04 +0000 |
commit | 031ce78c0ca00308a0aabeba08ffc5fb610c76b2 (patch) | |
tree | a5032f7ccd0eceadbee572b1463571dfc3593571 /net-analyzer | |
parent | Version bump. (diff) | |
download | gentoo-2-031ce78c0ca00308a0aabeba08ffc5fb610c76b2.tar.gz gentoo-2-031ce78c0ca00308a0aabeba08ffc5fb610c76b2.tar.bz2 gentoo-2-031ce78c0ca00308a0aabeba08ffc5fb610c76b2.zip |
Version bump.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/tcpdump/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/tcpdump/tcpdump-4.4.0.ebuild | 96 |
2 files changed, 102 insertions, 1 deletions
diff --git a/net-analyzer/tcpdump/ChangeLog b/net-analyzer/tcpdump/ChangeLog index a9a9683129a0..de1410659657 100644 --- a/net-analyzer/tcpdump/ChangeLog +++ b/net-analyzer/tcpdump/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/tcpdump # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/ChangeLog,v 1.163 2013/02/21 02:59:47 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/ChangeLog,v 1.164 2013/05/09 03:19:04 jer Exp $ + +*tcpdump-4.4.0 (09 May 2013) + + 09 May 2013; Jeroen Roovers <jer@gentoo.org> +tcpdump-4.4.0.ebuild: + Version bump. 21 Feb 2013; Zac Medico <zmedico@gentoo.org> tcpdump-4.3.0.ebuild: Add ~arm-linux keyword. diff --git a/net-analyzer/tcpdump/tcpdump-4.4.0.ebuild b/net-analyzer/tcpdump/tcpdump-4.4.0.ebuild new file mode 100644 index 000000000000..8765fe233c8c --- /dev/null +++ b/net-analyzer/tcpdump/tcpdump-4.4.0.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/tcpdump-4.4.0.ebuild,v 1.1 2013/05/09 03:19:04 jer Exp $ + +EAPI=5 + +AUTOTOOLS_AUTO_DEPEND="no" # Only cross-compiling +inherit flag-o-matic user autotools eutils toolchain-funcs + +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 ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux" +IUSE="+chroot smi ssl ipv6 -samba suid test" + +RDEPEND=" + net-libs/libpcap + smi? ( net-libs/libsmi ) + ssl? ( >=dev-libs/openssl-0.9.6m ) +" +DEPEND=" + ${RDEPEND} + test? ( + || ( app-arch/sharutils sys-freebsd/freebsd-ubin ) + dev-lang/perl + ) +" + +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 + fi + enewgroup tcpdump + enewuser tcpdump -1 -1 -1 tcpdump +} + +src_prepare() { + if tc-is-cross-compiler ; then + epatch "${FILESDIR}"/${P}-ssl-detect.patch + eautoreconf + fi +} + +src_configure() { + # tcpdump needs some optymalization. see bug #108391 + ( ! is-flag -O? || is-flag -O0 ) && append-flags -O2 + + replace-flags -O[3-9] -O2 + filter-flags -finline-functions + + econf \ + --with-user=tcpdump \ + $(use_with ssl crypto "${EPREFIX}/usr") \ + $(use_with smi) \ + $(use_enable ipv6) \ + $(use_enable samba smb) \ + $(use_with chroot chroot "${EPREFIX}/var/lib/tcpdump") +} + +src_test() { + sed '/^\(espudp1\|eapon1\)/d;' -i tests/TESTLIST + emake check +} + +src_install() { + dosbin tcpdump + doman tcpdump.1 + dodoc *.awk + dodoc CHANGES CREDITS README + + if use chroot; then + keepdir /var/lib/tcpdump + fperms 700 /var/lib/tcpdump + fowners tcpdump:tcpdump /var/lib/tcpdump + fi + if use suid; then + fowners root:tcpdump /usr/sbin/tcpdump + fperms 4110 /usr/sbin/tcpdump + fi +} + +pkg_postinst() { + use suid && elog "To let normal users run tcpdump add them into tcpdump group." +} |