blob: 1da55493ca7d7786023b1d3e2b05ece4b65f6d31 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/neti/neti-2.0.ebuild,v 1.5 2009/09/23 18:22:01 patrick Exp $
DESCRIPTION="NETI@Home research project from GATech"
HOMEPAGE="http://www.neti.gatech.edu"
SRC_URI="mirror://sourceforge/neti/${P}.tar.gz"
KEYWORDS="~ppc x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="zlib java"
DEPEND="java? ( || ( >=virtual/jdk-1.2 >=virtual/jre-1.2 ) )
net-libs/libpcap"
RDEPEND="${DEPEND}"
RESTRICT="test"
src_compile() {
econf \
$(use_with zlib) \
|| die "econf failed"
emake NETILogParse neti \
|| die "emake NETILogParse neti failed"
if use java;
then
emake javadir=/usr/share/${PN} classjava.stamp || die "emake classjava.stamp failed"
fi
}
src_install() {
emake DESTDIR="${D}" install-sbinPROGRAMS \
install-sysconfDATA install-man install-info || die "emake install failed"
if use java;
then
emake javadir=/usr/share/${PN} \
DESTDIR="${D}" install-javaJAVA install-javaDATA || die "emake java install failed"
dobin /usr/bin
echo cd /usr/share/${PN}\;java -cp /usr/share/${PN} NETIMap > "${D}"/usr/bin/NETIMap
fperms ugo+x /usr/bin/NETIMap
fi
dodoc README AUTHORS
newinitd "${FILESDIR}"/neti-init2 neti
}
|