blob: 7d915ef062b5506146b8486a3e32915baea5dfd2 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit qmake-utils autotools
DESCRIPTION="A firewall GUI"
HOMEPAGE="http://www.fwbuilder.org/"
SRC_URI="https://github.com/UNINETT/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="libressl"
DEPEND="
!libressl? ( dev-libs/openssl:0 )
libressl? ( dev-libs/libressl )
dev-libs/elfutils
>=dev-qt/qtgui-5.5.1-r1:5"
RDEPEND="${DEPEND}"
src_prepare() {
eapply_user
sed -i -e '/dnl.*AM_INIT_AUTOMAKE/d' configure.in || die #398743
mv configure.in configure.ac || die #426262
eautoreconf
}
src_configure() {
eqmake5
# portage handles ccache/distcc itself
econf --without-{ccache,distcc}
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
pkg_postinst() {
validate_desktop_entries
elog "You need to emerge sys-apps/iproute2"
elog "in order to run the firewall script."
}
|