diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-11-18 21:21:57 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-11-18 21:21:57 +0000 |
commit | 8e282995d6a750ee9694fc608df76738b5da6fd8 (patch) | |
tree | a70341ee9443d2be4ee901b9808345b757becac9 /dev-util | |
parent | Mask orc for gst-plugins-base by default (to be unmasked on supported platforms) (diff) | |
download | gentoo-2-8e282995d6a750ee9694fc608df76738b5da6fd8.tar.gz gentoo-2-8e282995d6a750ee9694fc608df76738b5da6fd8.tar.bz2 gentoo-2-8e282995d6a750ee9694fc608df76738b5da6fd8.zip |
Version bump and drop old.
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/anjuta/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/anjuta/anjuta-2.32.1.0.ebuild (renamed from dev-util/anjuta/anjuta-2.32.0.0.ebuild) | 6 | ||||
-rw-r--r-- | dev-util/anjuta/files/anjuta-2.32.0.0-automagic-vala.patch | 40 |
3 files changed, 11 insertions, 45 deletions
diff --git a/dev-util/anjuta/ChangeLog b/dev-util/anjuta/ChangeLog index 43fe5f2efb9c..273139aa8637 100644 --- a/dev-util/anjuta/ChangeLog +++ b/dev-util/anjuta/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-util/anjuta # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.123 2010/11/05 20:00:58 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.124 2010/11/18 21:21:57 pacho Exp $ + +*anjuta-2.32.1.0 (18 Nov 2010) + + 18 Nov 2010; Pacho Ramos <pacho@gentoo.org> -anjuta-2.32.0.0.ebuild, + -files/anjuta-2.32.0.0-automagic-vala.patch, +anjuta-2.32.1.0.ebuild: + Version bump fixing multiple bugs and no longer having vala automagic + support. On the other hand, we still need to run eautoreconf to not lose + introspection configure option (see upstream bug #633730). 05 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org> anjuta-2.32.0.0.ebuild: diff --git a/dev-util/anjuta/anjuta-2.32.0.0.ebuild b/dev-util/anjuta/anjuta-2.32.1.0.ebuild index 9efcc0a613b3..2b9c0714830b 100644 --- a/dev-util/anjuta/anjuta-2.32.0.0.ebuild +++ b/dev-util/anjuta/anjuta-2.32.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-2.32.0.0.ebuild,v 1.2 2010/11/05 20:00:58 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-2.32.1.0.ebuild,v 1.1 2010/11/18 21:21:57 pacho Exp $ EAPI="3" GCONF_DEBUG="yes" @@ -88,9 +88,7 @@ pkg_setup() { src_prepare() { gnome2_src_prepare - # Fix automagic dep on vala - epatch "${FILESDIR}/${PN}-2.32.0.0-automagic-vala.patch" - + # Needed to preserve introspection configure option, see bgo#633730 # eautoreconf needs introspection.m4 mv "${WORKDIR}"/introspection.m4 . || die intltoolize --force --copy --automake || die "intltoolize failed" diff --git a/dev-util/anjuta/files/anjuta-2.32.0.0-automagic-vala.patch b/dev-util/anjuta/files/anjuta-2.32.0.0-automagic-vala.patch deleted file mode 100644 index fad756198b4e..000000000000 --- a/dev-util/anjuta/files/anjuta-2.32.0.0-automagic-vala.patch +++ /dev/null @@ -1,40 +0,0 @@ -From bf96448d1a3d04b19c0e742a5541f8399fc374e0 Mon Sep 17 00:00:00 2001 -From: Pacho Ramos <pacho@condmat1.ciencias.uniovi.es> -Date: Thu, 04 Nov 2010 09:37:19 +0000 -Subject: build: bgo#633661 - vala support is automagic - ---- -diff --git a/configure.in b/configure.in -index 1fd6f03..1f40614 100644 ---- a/configure.in -+++ b/configure.in -@@ -266,10 +266,23 @@ AM_CONDITIONAL(HAVE_PLUGIN_SOURCEVIEW, [test x$sourceview = xyes]) - dnl Check for vala - dnl ------------------------------------------------------------- - --PKG_CHECK_MODULES(VALA, -- [vala-0.10 >= $VALA_REQUIRED], -- [enable_vala="yes"], -- [enable_vala="no"]) -+AC_ARG_ENABLE(vala, -+ AC_HELP_STRING([--disable-vala],[Disable vala support]), -+ [ if test "$enableval" = "no"; then -+ user_disabled_vala=1 -+ fi ], -+ [ user_disabled_vala=0 ]) -+ -+AC_MSG_CHECKING(if vala support is disabled) -+if test "$user_disabled_vala" = 1; then -+ AC_MSG_RESULT(yes) -+ enable_vala="no" -+else -+ AC_MSG_RESULT(no) -+ enable_vala="yes" -+ PKG_CHECK_MODULES(VALA, -+ [vala-0.10 >= $VALA_REQUIRED]) -+fi - - if test x$enable_vala = xyes; then - AC_PATH_PROG(VALAC, valac, valac) --- -cgit v0.8.3.1 |