From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C138A59CA3 for ; Fri, 18 Mar 2016 03:55:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6AC321C005; Fri, 18 Mar 2016 03:55:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51BF021C003 for ; Fri, 18 Mar 2016 03:55:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97F75340D1A for ; Fri, 18 Mar 2016 03:55:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFF3A85F for ; Fri, 18 Mar 2016 03:55:20 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1458273117.c30bec13d8cec7f20c64f21697e0bf713e00e0ad.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/fwbuilder/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/fwbuilder/fwbuilder-5.3.6.ebuild X-VCS-Directories: net-firewall/fwbuilder/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: c30bec13d8cec7f20c64f21697e0bf713e00e0ad X-VCS-Branch: master Date: Fri, 18 Mar 2016 03:55:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 216d72b4-1a14-4a71-b4a7-451996cfc063 X-Archives-Hash: 17066d252e6da0ed4fcf1929a99e003c commit: c30bec13d8cec7f20c64f21697e0bf713e00e0ad Author: Aaron Bauman gentoo org> AuthorDate: Fri Mar 18 03:51:57 2016 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Mar 18 03:51:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c30bec13 net-firewall/fwbuilder: version bump; add Qt5 support; drop unneeded eclass support and patches net-firewall/fwbuilder/fwbuilder-5.3.6.ebuild | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/net-firewall/fwbuilder/fwbuilder-5.3.6.ebuild b/net-firewall/fwbuilder/fwbuilder-5.3.6.ebuild new file mode 100644 index 0000000..9a174dc --- /dev/null +++ b/net-firewall/fwbuilder/fwbuilder-5.3.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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" +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." +}