blob: ff9236c85d1ddada39f5505ee356625c51090b20 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sonar/sonar-1.2.2.ebuild,v 1.3 2004/06/24 22:19:09 agriffis Exp $
inherit gcc
DESCRIPTION="network reconnaissance utility"
HOMEPAGE="http://autosec.sourceforge.net/"
SRC_URI="mirror://sourceforge/autosec/${P}.tar.bz2"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
DEPEND="virtual/glibc
>=dev-libs/popt-1.7-r1
>=app-doc/doxygen-1.3"
src_install() {
make install DESTDIR=${D} || die
dodoc ChangeLog README AUTHORS CONTRIB NEWS
dohtml doc/html/*
rm -rf ${D}/usr/share/sonar
}
|