* [gentoo-commits] gentoo-x86 commit in dev-util/anjuta: metadata.xml anjuta-3.4.4.ebuild ChangeLog anjuta-2.32.1.1.ebuild anjuta-3.2.2.ebuild
@ 2012-11-17 12:31 Pacho Ramos (pacho)
0 siblings, 0 replies; only message in thread
From: Pacho Ramos (pacho) @ 2012-11-17 12:31 UTC (permalink / raw
To: gentoo-commits
pacho 12/11/17 12:31:47
Modified: metadata.xml anjuta-3.4.4.ebuild ChangeLog
Removed: anjuta-2.32.1.1.ebuild anjuta-3.2.2.ebuild
Log:
Drop 'doc' USE flag as it is only used to rebuild documentation, port to vala.eclass, drop old.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.18 dev-util/anjuta/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/metadata.xml?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/metadata.xml?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/metadata.xml?r1=1.17&r2=1.18
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/anjuta/metadata.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- metadata.xml 16 Nov 2011 02:12:25 -0000 1.17
+++ metadata.xml 17 Nov 2012 12:31:47 -0000 1.18
@@ -8,7 +8,6 @@
<flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg>
for introspection</flag>
<flag name="packagekit">Use packagekit to search for missing tools</flag>
- <flag name="sourceview">Build sourceview editing plugin for anjuta</flag>
<flag name='vala'>Enable support for the Vala programming
language</flag>
</use>
1.2 dev-util/anjuta/anjuta-3.4.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild?r1=1.1&r2=1.2
Index: anjuta-3.4.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- anjuta-3.4.4.ebuild 9 Aug 2012 08:54:19 -0000 1.1
+++ anjuta-3.4.4.ebuild 17 Nov 2012 12:31:47 -0000 1.2
@@ -1,13 +1,15 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild,v 1.1 2012/08/09 08:54:19 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-3.4.4.ebuild,v 1.2 2012/11/17 12:31:47 pacho Exp $
EAPI="4"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
PYTHON_DEPEND="2"
+VALA_MIN_API_VERSION="0.16"
+VALA_MAX_API_VERSION="0.16"
-inherit gnome2 flag-o-matic multilib python
+inherit gnome2 flag-o-matic multilib python vala
DESCRIPTION="A versatile IDE for GNOME"
HOMEPAGE="http://www.anjuta.org"
@@ -15,13 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
-IUSE="debug devhelp doc glade graphviz +introspection packagekit subversion test vala"
-
-# FIXME: tests are fragile and may require a specific set of USE flags
-#RESTRICT="test"
-
-# FIXME: documentation fails to build when USE=test. But why?
-REQUIRED_USE="test? ( !doc )"
+IUSE="debug devhelp glade graphviz +introspection packagekit subversion test vala"
COMMON_DEPEND=">=dev-libs/glib-2.29.2:2
x11-libs/gdk-pixbuf:2
@@ -48,7 +44,7 @@
>=net-libs/neon-0.28.2
>=dev-libs/apr-1
>=dev-libs/apr-util-1 )
- vala? ( dev-lang/vala:0.16 )"
+ vala? ( $(vala_depend) )"
RDEPEND="${COMMON_DEPEND}
packagekit? ( app-admin/packagekit-base )"
DEPEND="${COMMON_DEPEND}
@@ -56,24 +52,30 @@
>=app-text/scrollkeeper-0.3.14-r2
>=dev-lang/perl-5
>=dev-util/intltool-0.40.1
+ dev-util/gtk-doc-am
sys-devel/bison
sys-devel/flex
>=sys-devel/gettext-0.17
virtual/pkgconfig
!!dev-libs/gnome-build
- doc? ( >=dev-util/gtk-doc-1.4 )
test? (
app-text/docbook-xml-dtd:4.1.2
app-text/docbook-xml-dtd:4.5 )"
# eautoreconf requires: gtk-doc-am, gnome-common, gobject-introspection-common
pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}
+
+src_prepare() {
+ use vala && vala_src_prepare
+
# COPYING is used in Anjuta's help/about entry
DOCS="AUTHORS ChangeLog COPYING FUTURE MAINTAINERS NEWS README ROADMAP THANKS TODO"
G2CONF="${G2CONF}
--disable-static
- --disable-schemas-compile
--docdir=/usr/share/doc/${PF}
$(use_enable debug)
$(use_enable devhelp plugin-devhelp)
@@ -84,21 +86,9 @@
$(use_enable subversion plugin-subversion)
$(use_enable vala)"
- if use vala; then
- G2CONF="${G2CONF} VALAC=$(type -P valac-0.16)"
- fi
-
# Conflicts with -pg in a plugin, bug #266777
filter-flags -fomit-frame-pointer
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
-# intltoolize --force --copy --automake || die "intltoolize failed"
-# AT_M4DIR="." eautoreconf
-
# https://bugzilla.gnome.org/show_bug.cgi?id=675584
# avoid autoreconf
sed -e 's:valac:$(VALAC):' \
1.151 dev-util/anjuta/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/ChangeLog?r1=1.150&r2=1.151
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog 28 Oct 2012 15:47:42 -0000 1.150
+++ ChangeLog 17 Nov 2012 12:31:47 -0000 1.151
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/anjuta
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.150 2012/10/28 15:47:42 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/ChangeLog,v 1.151 2012/11/17 12:31:47 pacho Exp $
+
+ 17 Nov 2012; Pacho Ramos <pacho@gentoo.org> -anjuta-2.32.1.1.ebuild,
+ -anjuta-3.2.2.ebuild, anjuta-3.4.4.ebuild, metadata.xml:
+ Drop 'doc' USE flag as it is only used to rebuild documentation, port to
+ vala.eclass, drop old.
28 Oct 2012; Raúl Porcel <armin76@gentoo.org> anjuta-3.4.3.ebuild:
sparc stable wrt #427544
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-11-17 12:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-17 12:31 [gentoo-commits] gentoo-x86 commit in dev-util/anjuta: metadata.xml anjuta-3.4.4.ebuild ChangeLog anjuta-2.32.1.1.ebuild anjuta-3.2.2.ebuild Pacho Ramos (pacho)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox