blob: 35f0ef818c0b3f8c5332fea167a3c7f12c2df570 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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/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
}
|