blob: cbb10b730f936ea06bce5af15e41dfece24395ea (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/firewalld/firewalld-0.2.9.ebuild,v 1.7 2012/11/18 05:30:51 cardoe Exp $
EAPI=4
PYTHON_COMPAT=( python{2_6,2_7} )
BACKPORTS=190680ba
inherit autotools eutils gnome2-utils python-r1 systemd multilib
DESCRIPTION="A firewall daemon with D-BUS interface providing a dynamic firewall"
HOMEPAGE="http://fedorahosted.org/firewalld"
SRC_URI="https://fedorahosted.org/released/firewalld/${P}.tar.bz2
${BACKPORTS:+http://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gui"
RDEPEND="${PYTHON_DEPS}
dev-python/dbus-python
dev-python/decorator
>=dev-python/python-slip-0.2.7[dbus]
dev-python/pygobject:3
net-firewall/ebtables
net-firewall/iptables[ipv6]
|| ( <sys-apps/openrc-0.11.5 sys-apps/systemd )
gui? (
dev-python/pygtk:2
>=x11-libs/gtk+-2.6:2
x11-libs/gtk+:3
)"
DEPEND="${RDEPEND}
dev-libs/glib:2
>=dev-util/intltool-0.35
sys-devel/gettext"
src_prepare() {
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
epatch_user
eautoreconf
}
src_configure() {
python_export_best
econf \
--enable-systemd
"$(systemd_with_unitdir 'systemd-unitdir')"
}
src_install() {
python_foreach_impl \
emake DESTDIR="${ED}" pythondir="$(python_get_sitedir)" install
# Get rid of junk
rm -f "${ED}/etc/rc.d/init.d/firewalld"
rm -f "${ED}/etc/sysconfig/firewalld"
rm -rf "${ED}/etc/rc.d/"
rm -rf "${ED}/etc/sysconfig/"
# For non-gui installs we need to remove GUI bits
if ! use gui; then
rm -f "${ED}/usr/bin/firewall-applet"
rm -f "${ED}/usr/bin/firewall-config"
rm -rf "${ED}/usr/share/icons"
rm -rf "${ED}/usr/share/applications"
fi
newinitd "${FILESDIR}"/firewalld.init firewalld
# Work around until OpenRC starts carrying our module
insinto $(get_libdir)/rc/net
newins "${FILESDIR}"/firewalld.module firewalld.sh
}
pkg_preinst() {
gnome2_icon_savelist
gnome2_schemas_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
gnome2_schemas_update
}
pkg_postrm() {
gnome2_icon_cache_update
gnome2_schemas_update
}
|