blob: 39f4bf7b91a0c725f3b3e9364c9810505cb446b6 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/libdbusmenu-0.5.1-r300.ebuild,v 1.3 2011/11/28 22:37:34 zmedico Exp $
EAPI=4
PN_vala_version=0.14
inherit virtualx
DESCRIPTION="Library to pass menu structure across DBus"
HOMEPAGE="https://launchpad.net/dbusmenu"
SRC_URI="http://launchpad.net/dbusmenu/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3"
SLOT="3"
KEYWORDS="~amd64 ~x86"
IUSE="gtk +introspection test"
RDEPEND=">=dev-libs/glib-2.26
dev-libs/dbus-glib
dev-libs/libxml2
gtk? ( x11-libs/gtk+:3 )
introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
!<${CATEGORY}/${PN}-0.5.1-r200"
DEPEND="${RDEPEND}
test? (
dev-libs/json-glib[introspection?]
dev-util/dbus-test-runner
)
dev-lang/vala:${PN_vala_version}[vapigen]
app-text/gnome-doc-utils
dev-util/intltool
dev-util/pkgconfig"
src_prepare() {
# Drop DEPRECATED flags, bug #391103
sed -i \
-e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \
{libdbusmenu-{glib,gtk},tests}/Makefile.{am,in} configure{,.ac} || die
}
src_configure() {
export VALA_API_GEN="$(type -P vapigen-${PN_vala_version})"
# note: --disable-dumper to avoid GTK+ 2.0
econf \
--docdir=/usr/share/doc/${PF} \
--disable-static \
$(use_enable gtk) \
--disable-dumper \
$(use_enable introspection) \
$(use_enable test tests) \
--with-html-dir=/usr/share/doc/${PF} \
--with-gtk=3
}
src_test() {
Xemake check
}
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc AUTHORS ChangeLog README
find "${ED}" -name '*.la' -exec rm -f {} +
}
|