blob: cbbb2e3e5855f7f51d1a57e31cc21b609935a0b5 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils perl-module versionator
DESCRIPTION="Additional userspace utils to assist with AppArmor profile management"
HOMEPAGE="http://apparmor.net/"
SRC_URI="http://launchpad.net/apparmor/$(get_version_component_range 1-2)/${PV}/+download/apparmor-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
LANGS="af ar bg bn bs ca cs cy da de el en_GB en_US es et fi fr gl
gu he hi hr hu id it ja ka km ko lo lt mk mr nb nl pa pl pt
pt_BR pt_PT ro ru si sk sl sr sv ta th tr uk vi wa xh zh_CN
zh_TW zu"
for X in ${LANGS} ; do
IUSE+=" linguas_${X}"
done
unset X
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
~sys-libs/libapparmor-${PV}[perl]
~sys-apps/apparmor-${PV}
dev-perl/Locale-gettext
dev-perl/RPC-XML
dev-perl/TermReadKey
virtual/perl-Data-Dumper
virtual/perl-Getopt-Long"
S=${WORKDIR}/apparmor-${PV}/utils
src_prepare() {
local lang
for lang in ${LANGS}; do
if ! use linguas_${lang}; then
rm po/${lang}.po || die "failed to remove nls"
fi
done
}
src_install() {
perlinfo
emake DESTDIR="${D}" PERLDIR="${D}/${VENDOR_LIB}/Immunix" install
}
|