blob: bc42fb0d863d1ae5892aafbc26852dd09fad9bf6 (
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
|
# 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.7.ebuild,v 1.1 2009/10/17 10:40:54 mrpouet Exp $
EAPI=1
GCONF_DEBUG=no
inherit gnome2
DESCRIPTION="Vala - Compiler for the GObject type system"
HOMEPAGE="http://live.gnome.org/Vala"
SRC_URI="http://www.freesmartphone.org/sources/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="test +vapigen +coverage"
#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)
$(use_enable coverage)"
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
}
|