blob: 49b8ef0ec8b43f8843d24658f4ff6ee13106f7d1 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils
DESCRIPTION="Rule management for SNORT"
SRC_URI="mirror://sourceforge/oinkmaster/${P}.tar.gz"
HOMEPAGE="http://oinkmaster.sf.net/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm ppc sparc x86"
IUSE="X"
RDEPEND="
>=dev-lang/perl-5.6.1
X? ( dev-perl/perl-tk )
net-misc/wget
app-arch/tar
app-arch/gzip
"
src_install() {
dobin \
contrib/addmsg.pl \
contrib/addsid.pl \
contrib/create-sidmap.pl \
contrib/makesidex.pl \
oinkmaster.pl
use X && dobin contrib/oinkgui.pl
dodoc FAQ README README.gui README.win32 UPGRADING contrib/README.contrib
doman oinkmaster.1
insinto /etc
doins oinkmaster.conf
}
|