diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2010-07-21 09:50:14 +0000 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2010-07-21 09:50:14 +0000 |
commit | 41fd79354c80debe82ef2476fe0234ae246e1ef0 (patch) | |
tree | 4d39bf91ba5263609bd235cfed6c8a98fd05c202 /dev-lang/vala | |
parent | initial commit. (diff) | |
download | gentoo-2-41fd79354c80debe82ef2476fe0234ae246e1ef0.tar.gz gentoo-2-41fd79354c80debe82ef2476fe0234ae246e1ef0.tar.bz2 gentoo-2-41fd79354c80debe82ef2476fe0234ae246e1ef0.zip |
Bump to 0.9.3. Lots of enhancements, bug fixes and vapi fixes.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/vala')
-rw-r--r-- | dev-lang/vala/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/vala/vala-0.9.3.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-lang/vala/ChangeLog b/dev-lang/vala/ChangeLog index 73269ca2e841..0a12d520693d 100644 --- a/dev-lang/vala/ChangeLog +++ b/dev-lang/vala/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/vala # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.23 2010/07/15 16:31:17 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.24 2010/07/21 09:50:14 ford_prefect Exp $ + +*vala-0.9.3 (21 Jul 2010) + + 21 Jul 2010; Arun Raghavan <ford_prefect@gentoo.org> +vala-0.9.3.ebuild: + Bump to 0.9.3. Lots of enhancements, bug fixes and vapi fixes. 15 Jul 2010; Jeroen Roovers <jer@gentoo.org> vala-0.8.1.ebuild: Marked ~hppa (bug #320429). diff --git a/dev-lang/vala/vala-0.9.3.ebuild b/dev-lang/vala/vala-0.9.3.ebuild new file mode 100644 index 000000000000..257e61158dda --- /dev/null +++ b/dev-lang/vala/vala-0.9.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/vala-0.9.3.ebuild,v 1.1 2010/07/21 09:50:14 ford_prefect Exp $ + +EAPI=1 +GCONF_DEBUG=no +inherit gnome2 + +DESCRIPTION="Vala - Compiler for the GObject type system" +HOMEPAGE="http://live.gnome.org/Vala" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test +vapigen coverage" + +RDEPEND=">=dev-libs/glib-2.14" +DEPEND="${RDEPEND} + sys-devel/flex + || ( sys-devel/bison dev-util/byacc dev-util/yacc ) + dev-util/pkgconfig + dev-libs/libxslt + test? ( dev-libs/dbus-glib )" + +pkg_setup() { + G2CONF="${G2CONF} + $(use_enable vapigen) + $(use_enable coverage)" + DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README" + + if use coverage && has ccache ${FEATURES}; then + ewarn "USE=coverage does not work well with ccache; valac and libvala" + ewarn "built with ccache and USE=coverage create temporary files inside" + ewarn "CCACHE_DIR and mess with ccache's working, as well as causing" + ewarn "sandbox violations when used to compile other packages." + ewarn "It is STRONGLY recommended that you disable one of them." + fi +} |