diff options
Diffstat (limited to 'net-libs/libnids/libnids-1.16.ebuild')
-rw-r--r-- | net-libs/libnids/libnids-1.16.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/net-libs/libnids/libnids-1.16.ebuild b/net-libs/libnids/libnids-1.16.ebuild index a1fe0de65169..ab988cec99d4 100644 --- a/net-libs/libnids/libnids-1.16.ebuild +++ b/net-libs/libnids/libnids-1.16.ebuild @@ -1,26 +1,28 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.16.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.16.ebuild,v 1.3 2002/07/17 06:28:54 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Libnids is an implementation of an E-component of Network Intrusion Detection System. It emulates the IP stack of Linux 2.0.x. Libnids offers IP defragmentation, TCP stream assembly and TCP port scan detection." SRC_URI="http://www.packetfactory.net/Projects/Libnids/dist/${P}.tar.gz" HOMEPAGE="http://www.packetfactory.net/Projects/Libnids/" + DEPEND="net-libs/libpcap net-libs/libnet" +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="x86" src_compile() { - try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} - assert - + + econf || die make || die } src_install () { - try make prefix=${D}/usr mandir=${D}/usr/share/man install + make prefix=${D}/usr mandir=${D}/usr/share/man install dodoc CHANGES COPYING CREDITS MISC README } - |