diff options
Diffstat (limited to 'net-analyzer/arpon/arpon-2.6.ebuild')
-rw-r--r-- | net-analyzer/arpon/arpon-2.6.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-analyzer/arpon/arpon-2.6.ebuild b/net-analyzer/arpon/arpon-2.6.ebuild new file mode 100644 index 000000000000..39dc52405ca3 --- /dev/null +++ b/net-analyzer/arpon/arpon-2.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpon/arpon-2.6.ebuild,v 1.1 2011/07/02 15:11:39 hwoarang Exp $ + +EAPI="2" +inherit cmake-utils + +DESCRIPTION="ArpON (Arp handler inspectiON) is a portable Arp handler." + +MY_PN="ArpON" +MY_P="${MY_PN}-${PV}" +HOMEPAGE="http://arpon.sourceforge.net/" +SRC_URI="mirror://sourceforge/arpon/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" + +DEPEND="dev-libs/libdnet + net-libs/libnet:1.1 + net-libs/libpcap" + +RDEPEND=${DEPEND} + +S="${WORKDIR}"/${MY_P} + +src_prepare() { + sed -i -e "s:-Wall.*-ggdb::" CMakeLists.txt || die +} |