| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgee/libgee-0.8.1.ebuild,v 1.1 2012/10/14 20:39:08 tetromino Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
GCONF_DEBUG="no"
|
| 7 |
GNOME2_LA_PUNT="yes"
|
| 8 |
VALA_MIN_API_VERSION="0.18"
|
| 9 |
|
| 10 |
inherit gnome2 multilib vala
|
| 11 |
|
| 12 |
DESCRIPTION="GObject-based interfaces and classes for commonly used data structures."
|
| 13 |
HOMEPAGE="http://live.gnome.org/Libgee"
|
| 14 |
|
| 15 |
LICENSE="LGPL-2.1+"
|
| 16 |
SLOT="0.8"
|
| 17 |
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-linux"
|
| 18 |
IUSE="+introspection"
|
| 19 |
|
| 20 |
# FIXME: add doc support, requires valadoc
|
| 21 |
RDEPEND="
|
| 22 |
>=dev-libs/glib-2.12:2
|
| 23 |
introspection? ( >=dev-libs/gobject-introspection-0.9.6 )"
|
| 24 |
DEPEND="${RDEPEND}
|
| 25 |
virtual/pkgconfig
|
| 26 |
>=dev-lang/vala-0.17.5
|
| 27 |
$(vala_depend)"
|
| 28 |
|
| 29 |
DOCS="AUTHORS ChangeLog* MAINTAINERS NEWS README"
|
| 30 |
|
| 31 |
src_configure() {
|
| 32 |
G2CONF="${G2CONF} $(use_enable introspection)"
|
| 33 |
gnome2_src_configure
|
| 34 |
}
|
| 35 |
|
| 36 |
src_prepare() {
|
| 37 |
vala_src_prepare
|
| 38 |
gnome2_src_prepare
|
| 39 |
}
|