blob: dedc8d90c8047fa3d68b74a64a669d270ce6ac57 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/vala-0.7.5.ebuild,v 1.1 2009/09/03 16:15:34 mrpouet 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="~amd64 ~arm ~ppc ~x86"
IUSE="test +vapigen"
#FIXME: flex and bison are in "base" profile,
# so why put them into DEPEND ?
RDEPEND=">=dev-libs/glib-2.12"
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)"
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
}
|