From fb7db910c42376b6456e767efb631b960461af72 Mon Sep 17 00:00:00 2001 From: Sergey Popov Date: Fri, 14 Aug 2015 13:17:20 +0300 Subject: net-proxy/bfilter: revision bump. EAPI 5, epatch_user, add some explicit includes in package headers via sed call Package-Manager: portage-2.2.20 --- net-proxy/bfilter/bfilter-1.1.4-r2.ebuild | 85 +++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 net-proxy/bfilter/bfilter-1.1.4-r2.ebuild (limited to 'net-proxy') diff --git a/net-proxy/bfilter/bfilter-1.1.4-r2.ebuild b/net-proxy/bfilter/bfilter-1.1.4-r2.ebuild new file mode 100644 index 000000000000..aabb5d81c34a --- /dev/null +++ b/net-proxy/bfilter/bfilter-1.1.4-r2.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools eutils user + +DESCRIPTION="An ad-filtering web proxy featuring an effective heuristic ad-detection algorithm" +HOMEPAGE="http://bfilter.sourceforge.net/" +SRC_URI="mirror://sourceforge/bfilter/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="X debug" + +RDEPEND="sys-libs/zlib + dev-libs/ace:= + dev-libs/libsigc++:2 + X? ( dev-cpp/gtkmm:2.4 x11-libs/libX11 ) + dev-libs/boost:=" + +DEPEND="${RDEPEND} + dev-util/scons + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog ) + +PATCHES=( + "${FILESDIR}/${P}-glib-2.32.patch" + "${FILESDIR}/${P}-external-boost.patch" + "${FILESDIR}/${P}-gtkmm-X11-underlinking.patch" +) + +RESTRICT="test" # boost's test API has changed + +src_prepare() { + epatch ${PATCHES[@]} + + # Some includes are missing and this breaks updates of ACE + sed -i \ + -e "/#include /a#include \n#include " \ + libjs/nspr_impl/private.h \ + main/*.h \ + main/cache/*.h || die + + mv configure.in configure.ac || die + rm -rf boost + + epatch_user + eautoreconf +} + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_with X gui) \ + --without-builtin-boost +} + +src_install() { + default + + insinto /etc/bfilter + doins "${FILESDIR}/forwarding.xml" + + dodoc "${FILESDIR}/forwarding-proxy.xml" + dohtml doc/* + + newinitd "${FILESDIR}/bfilter.init" bfilter + newconfd "${FILESDIR}/bfilter.conf" bfilter +} + +pkg_preinst() { + enewgroup bfilter + enewuser bfilter -1 -1 -1 bfilter +} + +pkg_postinst() { + elog "The documentation is available at" + elog " http://bfilter.sourceforge.net/documentation.php" + elog "For forwarding bfilter service traffic through a proxy," + elog "see forwarding-proxy.xml example installed in the doc directory." +} -- cgit v1.2.3-65-gdbad