blob: 4537971ed977086de7d9e5fb1fa8f5b556fbe342 (
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
50
51
52
53
54
55
56
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/prelude-nids/prelude-nids-0.8.1.ebuild,v 1.4 2004/01/30 06:50:43 drobbins Exp $
DESCRIPTION="Prelude-IDS NIDS"
HOMEPAGE="http://www.prelude-ids.org"
SRC_URI="http://www.prelude-ids.org/download/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
RDEPEND="!dev-libs/libprelude-cvs
!net-analyzer/prelude-nids-cvs
dev-libs/libprelude
doc? ( dev-util/gtk-doc )"
DEPEND="${RDEPEND} >=sys-devel/autoconf-2.58"
S=${WORKDIR}/${P}
src_compile() {
local myconf
export WANT_AUTOCONF=2.5
export WANT_AUTOMAKE=1.6
export MAKEOPTS="" # Doesn't compile if you using make -j
use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc"
aclocal -I /usr/share/aclocal
autoconf
autoheader
libtoolize -c --force --ltdl --automake
automake --gnu -a -c
cd libltdl
mv configure.in configure.in.tmp
echo "AC_PREREQ(2.50)" > configure.in
cat configure.in.tmp >> configure.in
rm -f configure.in.tmp
aclocal -I /usr/share/aclocal
autoconf
autoheader
libtoolize -c --force --ltdl --automake
automake --gnu -a -c
cd ..
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
insinto /etc/init.d
insopts -m 755
newins ${FILESDIR}/gentoo.init prelude-nids
insinto /etc/conf.d
insopts -m 644
newins ${FILESDIR}/gentoo.conf prelude-nids
}
|