diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-04 18:44:47 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-04 18:44:47 +0000 |
commit | 957eb0ce7777526bf6af0488dca818a6bde65b76 (patch) | |
tree | 79c312e371a4af759a20d85ebbd894e037d78d3d /net-misc/pavuk | |
parent | old (diff) | |
download | gentoo-2-957eb0ce7777526bf6af0488dca818a6bde65b76.tar.gz gentoo-2-957eb0ce7777526bf6af0488dca818a6bde65b76.tar.bz2 gentoo-2-957eb0ce7777526bf6af0488dca818a6bde65b76.zip |
Fix building due variables exported in wrong place (#452640 by dE and Richard Grenville)
(Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-misc/pavuk')
-rw-r--r-- | net-misc/pavuk/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/net-misc/pavuk/ChangeLog b/net-misc/pavuk/ChangeLog index 5d0b300b7a80..e0b128787e61 100644 --- a/net-misc/pavuk/ChangeLog +++ b/net-misc/pavuk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/pavuk # Copyright 2002-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/ChangeLog,v 1.39 2013/01/10 20:43:52 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/ChangeLog,v 1.40 2013/02/04 18:44:47 pacho Exp $ + + 04 Feb 2013; Pacho Ramos <pacho@gentoo.org> + pavuk-0.9.36_pre20120215-r2.ebuild: + Fix building due variables exported in wrong place (#452640 by dE and Richard + Grenville) *pavuk-0.9.36_pre20120215-r2 (10 Jan 2013) diff --git a/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild b/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild index ec0325e4105b..5422deef9995 100644 --- a/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild +++ b/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild @@ -1,10 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild,v 1.1 2013/01/10 20:43:52 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/pavuk-0.9.36_pre20120215-r2.ebuild,v 1.2 2013/02/04 18:44:47 pacho Exp $ EAPI=5 S="${WORKDIR}/${PN}" +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 inherit eutils autotools-utils @@ -17,18 +19,14 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="debug gtk hammer ipv6 nls pcre profile ssl" -RDEPEND="virtual/libintl +RDEPEND="virtual/libintl:= gtk? ( x11-libs/gtk+:2 ) - pcre? ( dev-libs/libpcre ) - ssl? ( dev-libs/openssl )" - + pcre? ( dev-libs/libpcre:= ) + ssl? ( dev-libs/openssl:= )" DEPEND="${RDEPEND} >=sys-apps/sed-4 sys-devel/gettext" -AUTOTOOLS_AUTORECONF=1 -AUTOTOOLS_IN_SOURCE_BUILD=1 - PATCHES=( # Fixes a bug in re.c for PCRE support "${FILESDIR}/${P}-pcre-fix.patch" |