diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 06:28:54 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 06:28:54 +0000 |
commit | 976da5f4e8df79ce64416fd5968d258ad4451bfc (patch) | |
tree | 46ce0b46cd3c5f506574d455b8fd279224cef53c /net-libs/libnids | |
parent | added php virtual (diff) | |
download | gentoo-2-976da5f4e8df79ce64416fd5968d258ad4451bfc.tar.gz gentoo-2-976da5f4e8df79ce64416fd5968d258ad4451bfc.tar.bz2 gentoo-2-976da5f4e8df79ce64416fd5968d258ad4451bfc.zip |
repoman'd
Diffstat (limited to 'net-libs/libnids')
-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 } - |