blob: 40f5d02dba2c03557a03b434c6b430190e027617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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.8.1.ebuild,v 1.4 2010/07/15 16:31:17 jer 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
}
|