diff options
author | Mart Raudsepp <leio@gentoo.org> | 2008-03-21 16:57:57 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2008-03-21 16:57:57 +0000 |
commit | 49738457c4efd06b56d14709a80d0d2d209ec3ce (patch) | |
tree | 6d99d01dfdda2f4d48e20025f0e964d4ab9b3f50 /x11-libs | |
parent | Stable on amd64 (diff) | |
download | gentoo-2-49738457c4efd06b56d14709a80d0d2d209ec3ce.tar.gz gentoo-2-49738457c4efd06b56d14709a80d0d2d209ec3ce.tar.bz2 gentoo-2-49738457c4efd06b56d14709a80d0d2d209ec3ce.zip |
Fix up regex dependency handling - system pcre is never needed with the glib version we indirectly depend on, and glib provided GRegex is used instead. No real change other than unnecessary libpcre dependency is now removed.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gtksourceview/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/x11-libs/gtksourceview/ChangeLog b/x11-libs/gtksourceview/ChangeLog index a321c28a8718..e4bbaf52c59c 100644 --- a/x11-libs/gtksourceview/ChangeLog +++ b/x11-libs/gtksourceview/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/gtksourceview # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/ChangeLog,v 1.128 2008/03/10 19:55:21 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/ChangeLog,v 1.129 2008/03/21 16:57:57 leio Exp $ + + 21 Mar 2008; Mart Raudsepp <leio@gentoo.org> gtksourceview-2.2.0.ebuild: + Fix up regex dependency handling - system pcre is never needed with the glib + version we indirectly depend on, and glib provided GRegex is used instead. + No real change other than the unnecessary libpcre dependency is now removed. *gtksourceview-2.2.0 (10 Mar 2008) diff --git a/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild b/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild index 331f6402fe6b..68ad5361d882 100644 --- a/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild +++ b/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild,v 1.1 2008/03/10 19:55:21 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/gtksourceview-2.2.0.ebuild,v 1.2 2008/03/21 16:57:57 leio Exp $ inherit gnome2 eutils @@ -12,10 +12,12 @@ SLOT="2.0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="doc" +# glib-2.14 dep is to be sure GRegex exists, so that gtksourceview does not +# build a copy of it. However gtk+-2.12 already can't work with lower version +# than that RDEPEND=">=x11-libs/gtk+-2.12 >=dev-libs/libxml2-2.5 - >=dev-libs/glib-2 - >=dev-libs/libpcre-7.4" + >=dev-libs/glib-2.14" DEPEND="${RDEPEND} sys-devel/gettext >=dev-util/intltool-0.35 @@ -26,7 +28,7 @@ DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO" pkg_setup() { # Removes the gnome-vfs dep - G2CONF="${G2CONF} --disable-build-tests --with-system-pcre" + G2CONF="${G2CONF} --disable-build-tests" } src_install() { |