summaryrefslogtreecommitdiff
blob: 6de5276cbb3458e0f4caa003d88688893b80171c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netdude/netdude-0.4.6.ebuild,v 1.1 2006/02/18 23:51:28 vanquirius Exp $

DESCRIPTION="Netdude is a front-end to the libnetdude packet manipulation library"
HOMEPAGE="http://netdude.sourceforge.net/index.html"
SRC_URI="mirror://sourceforge/netdude/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"

DEPEND="net-libs/libnetdude
	=x11-libs/gtk+-1*
	app-admin/fam"

RDEPEND="${DEPEND}
	( || ( virtual/x11
	( >=x11-libs/libX11-1.0.0
	>=x11-libs/libXext-1.0.0 )
	) )"

src_compile() {
	econf $(use_enable doc gtk-doc) || die
	emake || die
}

src_install() {
	make DESTDIR="${D}" install || die

	use doc || rm -rf "${D}"/usr/share/gtk-doc
}