diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-02-26 02:55:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-02-26 02:55:12 +0000 |
commit | e0b41f917006271d4c86cfb48cdf3acc5b141d08 (patch) | |
tree | 416274098a78bf2300f7ed2747a7fb5eb2a1721e /net-analyzer/zodiac/zodiac-0.4.9.ebuild | |
parent | Closes #16349 (diff) | |
download | gentoo-2-e0b41f917006271d4c86cfb48cdf3acc5b141d08.tar.gz gentoo-2-e0b41f917006271d4c86cfb48cdf3acc5b141d08.tar.bz2 gentoo-2-e0b41f917006271d4c86cfb48cdf3acc5b141d08.zip |
initial ebuild for #11784
Diffstat (limited to 'net-analyzer/zodiac/zodiac-0.4.9.ebuild')
-rw-r--r-- | net-analyzer/zodiac/zodiac-0.4.9.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-analyzer/zodiac/zodiac-0.4.9.ebuild b/net-analyzer/zodiac/zodiac-0.4.9.ebuild new file mode 100644 index 000000000000..ae05a67f48ef --- /dev/null +++ b/net-analyzer/zodiac/zodiac-0.4.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zodiac/zodiac-0.4.9.ebuild,v 1.1 2003/02/26 02:55:12 vapier Exp $ + +DESCRIPTION="DNS protocol analyzer" +HOMEPAGE="http://www.packetfactory.net/projects/zodiac/" +SRC_URI="http://www.packetfactory.net/projects/zodiac/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="x86" + +DEPEND="sys-libs/ncurses + net-libs/libnet + net-libs/libpcap" + +S=${WORKDIR}/${PN} + +src_compile() { + cd src + emake CFLAGS="${CFLAGS} `libnet-config --defines` -D_REENTRANT -pthread" || die +} + +src_install() { + dobin zodiac + mv README{,.dev} + dodoc README.dev doc/* + dodir /usr/share/${PF}-src + cd src && make clean + cp -rf * ${D}/usr/share/${PF}-src +} |