diff options
author | 2013-02-19 04:52:25 +0000 | |
---|---|---|
committer | 2013-02-19 04:52:25 +0000 | |
commit | 20e13f67c3f61281eabd6414db91cfbd3e072965 (patch) | |
tree | 4adeed1c2e3817e441c2edfc2f7417683737d4a0 /net-firewall/firewalld | |
parent | Add ~arm-linux keyword. (diff) | |
download | gentoo-2-20e13f67c3f61281eabd6414db91cfbd3e072965.tar.gz gentoo-2-20e13f67c3f61281eabd6414db91cfbd3e072965.tar.bz2 gentoo-2-20e13f67c3f61281eabd6414db91cfbd3e072965.zip |
Version bump
(Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-firewall/firewalld')
-rw-r--r-- | net-firewall/firewalld/ChangeLog | 9 | ||||
-rw-r--r-- | net-firewall/firewalld/firewalld-0.2.12.ebuild | 90 |
2 files changed, 97 insertions, 2 deletions
diff --git a/net-firewall/firewalld/ChangeLog b/net-firewall/firewalld/ChangeLog index ac5a90d9c309..b6c18bdd7fb1 100644 --- a/net-firewall/firewalld/ChangeLog +++ b/net-firewall/firewalld/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-firewall/firewalld -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/firewalld/ChangeLog,v 1.10 2012/12/17 19:33:23 mgorny Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firewalld/ChangeLog,v 1.11 2013/02/19 04:52:25 cardoe Exp $ + +*firewalld-0.2.12 (19 Feb 2013) + + 19 Feb 2013; Doug Goldstein <cardoe@gentoo.org> +firewalld-0.2.12.ebuild: + Version bump 17 Dec 2012; Michał Górny <mgorny@gentoo.org> firewalld-0.2.9-r1.ebuild: Bump to EAPI=5 to make Paludis happy, bug #447524. diff --git a/net-firewall/firewalld/firewalld-0.2.12.ebuild b/net-firewall/firewalld/firewalld-0.2.12.ebuild new file mode 100644 index 000000000000..18833fa98608 --- /dev/null +++ b/net-firewall/firewalld/firewalld-0.2.12.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firewalld/firewalld-0.2.12.ebuild,v 1.1 2013/02/19 04:52:25 cardoe Exp $ + +EAPI=5 +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 +} + +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 +} |