diff options
author | Markus Ullmann <jokey@gentoo.org> | 2006-11-28 00:14:26 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2006-11-28 00:14:26 +0000 |
commit | 0132528b0c9ab138a5c9d099cbaed9c7121455f7 (patch) | |
tree | de6e33723529fea03601510d461039f66795aa81 /net-libs/libnetdude/libnetdude-0.9.ebuild | |
parent | Add ~x86-fbsd keyword, and disable arts useflag for this package. (diff) | |
download | gentoo-2-0132528b0c9ab138a5c9d099cbaed9c7121455f7.tar.gz gentoo-2-0132528b0c9ab138a5c9d099cbaed9c7121455f7.tar.bz2 gentoo-2-0132528b0c9ab138a5c9d099cbaed9c7121455f7.zip |
Version bump
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'net-libs/libnetdude/libnetdude-0.9.ebuild')
-rw-r--r-- | net-libs/libnetdude/libnetdude-0.9.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-libs/libnetdude/libnetdude-0.9.ebuild b/net-libs/libnetdude/libnetdude-0.9.ebuild new file mode 100644 index 000000000000..000e9d2df37a --- /dev/null +++ b/net-libs/libnetdude/libnetdude-0.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnetdude/libnetdude-0.9.ebuild,v 1.1 2006/11/28 00:14:26 jokey Exp $ + +DESCRIPTION="Library for manipulating libpcap/tcpdump trace files" +HOMEPAGE="http://netdude.sourceforge.net/index.html" +SRC_URI="mirror://sourceforge/netdude/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="net-libs/libpcapnav + =dev-libs/glib-1*" + +IUSE="doc" + +src_compile() { + econf $(use_enable doc gtk-doc) || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README TODO + + use doc || rm -rf "${D}"/usr/share/gtk-doc +} |