diff options
author | Timothy Redaelli <drizzt@gentoo.org> | 2007-09-26 21:03:37 +0000 |
---|---|---|
committer | Timothy Redaelli <drizzt@gentoo.org> | 2007-09-26 21:03:37 +0000 |
commit | 7bcc0ec8cb9e32521148f203dae72c887914edf7 (patch) | |
tree | 4762ee64c9e97798b7b061400601c5f31f9336a8 /net-analyzer | |
parent | added get_active_profile helper function (diff) | |
download | gentoo-2-7bcc0ec8cb9e32521148f203dae72c887914edf7.tar.gz gentoo-2-7bcc0ec8cb9e32521148f203dae72c887914edf7.tar.bz2 gentoo-2-7bcc0ec8cb9e32521148f203dae72c887914edf7.zip |
Version bump as reported by upstream.
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/rtpbreak/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/rtpbreak/files/digest-rtpbreak-1.2 | 3 | ||||
-rw-r--r-- | net-analyzer/rtpbreak/files/rtpbreak-1.2-ldflags.patch | 19 | ||||
-rw-r--r-- | net-analyzer/rtpbreak/rtpbreak-1.2.ebuild | 33 |
4 files changed, 62 insertions, 1 deletions
diff --git a/net-analyzer/rtpbreak/ChangeLog b/net-analyzer/rtpbreak/ChangeLog index a5389ebe8c9d..3ef0146166d3 100644 --- a/net-analyzer/rtpbreak/ChangeLog +++ b/net-analyzer/rtpbreak/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/rtpbreak # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rtpbreak/ChangeLog,v 1.1 2007/05/28 15:19:29 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rtpbreak/ChangeLog,v 1.2 2007/09/26 21:03:37 drizzt Exp $ + +*rtpbreak-1.2 (26 Sep 2007) + + 26 Sep 2007; Timothy Redaelli <drizzt@gentoo.org> + +files/rtpbreak-1.2-ldflags.patch, +rtpbreak-1.2.ebuild: + Version bump as reported by upstream. *rtpbreak-1.0 (28 May 2007) diff --git a/net-analyzer/rtpbreak/files/digest-rtpbreak-1.2 b/net-analyzer/rtpbreak/files/digest-rtpbreak-1.2 new file mode 100644 index 000000000000..da67c0caf00a --- /dev/null +++ b/net-analyzer/rtpbreak/files/digest-rtpbreak-1.2 @@ -0,0 +1,3 @@ +MD5 06a0259452c34b406b2b26443f0cf2b9 rtpbreak-1.2.tgz 50902 +RMD160 11b5c465dcd7039507749bff8efdd286b1c630fb rtpbreak-1.2.tgz 50902 +SHA256 5231bdbc123462e1b86b2a0c1fdfa608877c051e44e610d73f4c80bb263c2092 rtpbreak-1.2.tgz 50902 diff --git a/net-analyzer/rtpbreak/files/rtpbreak-1.2-ldflags.patch b/net-analyzer/rtpbreak/files/rtpbreak-1.2-ldflags.patch new file mode 100644 index 000000000000..c3fa610f4e4c --- /dev/null +++ b/net-analyzer/rtpbreak/files/rtpbreak-1.2-ldflags.patch @@ -0,0 +1,19 @@ +--- Makefile.old 2007-09-26 19:27:45.000000000 +0200 ++++ Makefile 2007-09-26 19:28:31.000000000 +0200 +@@ -11,7 +11,7 @@ + $(CC) -c -DVERSION=\"$(VERSION)\" $(CFLAGS) $(DEFS) rtpbreak.c + $(CC) -c $(CFLAGS) $(DEFS) common.c + $(CC) -c $(CFLAGS) $(DEFS) net.c +- $(CC) $(LIBS) rtpbreak.o common.o net.o -o rtpbreak ++ $(CC) $(LDFLAGS) rtpbreak.o common.o net.o -o rtpbreak $(LIBS) + @echo "%" + + header: +@@ -20,6 +20,7 @@ + @echo "%" + @echo "% CC...................: $(CC)" + @echo "% CFLAGS...............: $(CFLAGS)" ++ @echo "% LDFLAGS..............: $(LDFLAGS)" + @echo "% LIBS.................: $(LIBS)" + @echo "% DEFS.................: $(DEFS)" + @echo "%" diff --git a/net-analyzer/rtpbreak/rtpbreak-1.2.ebuild b/net-analyzer/rtpbreak/rtpbreak-1.2.ebuild new file mode 100644 index 000000000000..b02c83568dd1 --- /dev/null +++ b/net-analyzer/rtpbreak/rtpbreak-1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rtpbreak/rtpbreak-1.2.ebuild,v 1.1 2007/09/26 21:03:37 drizzt Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Detects, reconstructs and analyzes any RTP session through heuristics over the UDP network traffic." +HOMEPAGE="http://xenion.antifork.org/rtpbreak/index.html" +SRC_URI="http://xenion.antifork.org/rtpbreak/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=net-libs/libnet-1.1 + >=net-libs/libpcap-0.7" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${P}-ldflags.patch +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + dobin rtpbreak || die "cannot install rtpbreak" + dodoc README.{en,it} +} |