diff options
author | Cédric Krier <cedk@gentoo.org> | 2006-12-21 19:17:23 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2006-12-21 19:17:23 +0000 |
commit | dfbc36431f000a0132d4b4a35402ccb26bb277b3 (patch) | |
tree | 57c5c66a4abb76f784586f34f6927f00cd4f120e /net-analyzer/lft | |
parent | Migrated to generation 2. (diff) | |
download | gentoo-2-dfbc36431f000a0132d4b4a35402ccb26bb277b3.tar.gz gentoo-2-dfbc36431f000a0132d4b4a35402ccb26bb277b3.tar.bz2 gentoo-2-dfbc36431f000a0132d4b4a35402ccb26bb277b3.zip |
Version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-analyzer/lft')
-rw-r--r-- | net-analyzer/lft/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/lft/files/digest-lft-3.0b | 3 | ||||
-rw-r--r-- | net-analyzer/lft/lft-3.0b.ebuild | 29 |
3 files changed, 38 insertions, 1 deletions
diff --git a/net-analyzer/lft/ChangeLog b/net-analyzer/lft/ChangeLog index 4cef29f0b3be..6d9a8029044e 100644 --- a/net-analyzer/lft/ChangeLog +++ b/net-analyzer/lft/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/lft # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lft/ChangeLog,v 1.15 2006/02/15 23:24:09 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lft/ChangeLog,v 1.16 2006/12/21 19:17:23 cedk Exp $ + +*lft-3.0b (21 Dec 2006) + + 21 Dec 2006; Cedric Krier <cedk@gentoo.org> +lft-3.0b.ebuild: + Version bump for bug #146140 15 Feb 2006; Markus Ullmann <jokey@gentoo.org> lft-2.5.ebuild, lft-2.31.ebuild: diff --git a/net-analyzer/lft/files/digest-lft-3.0b b/net-analyzer/lft/files/digest-lft-3.0b new file mode 100644 index 000000000000..1689c9957447 --- /dev/null +++ b/net-analyzer/lft/files/digest-lft-3.0b @@ -0,0 +1,3 @@ +MD5 1915b6d9f82f30d618d920f7d0e8c973 lft-3.0b.tar.gz 168152 +RMD160 a2985f30708a7839af3a9cd31bb4122cb5671497 lft-3.0b.tar.gz 168152 +SHA256 39df452f91c26796bac83f1fa69f8961ec2f13a4bb103a490671044f29f551f7 lft-3.0b.tar.gz 168152 diff --git a/net-analyzer/lft/lft-3.0b.ebuild b/net-analyzer/lft/lft-3.0b.ebuild new file mode 100644 index 000000000000..1c3b8863ec33 --- /dev/null +++ b/net-analyzer/lft/lft-3.0b.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lft/lft-3.0b.ebuild,v 1.1 2006/12/21 19:17:23 cedk Exp $ + +inherit flag-o-matic + +DESCRIPTION="Layer Four Traceroute: an advanced traceroute implementation" +HOMEPAGE="http://oppleman.com/lft/" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="VOSTROM" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86" +IUSE="" + +DEPEND="net-libs/libpcap" + +src_compile() { + # avoid suid related security issues. + append-ldflags $(bindnow-flags) + + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + einstall || die "einstall failed" + dodoc CHANGELOG README TODO +} |