blob: a98c965e54d400a9dbf62db0292dc495910e1d3e (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/libdbusmenu-0.6.2.ebuild,v 1.5 2012/10/30 07:22:29 ssuominen Exp $
EAPI=4
AYATANA_VALA_VERSION=0.16
inherit eutils flag-o-matic
DESCRIPTION="Library to pass menu structure across DBus"
HOMEPAGE="http://launchpad.net/dbusmenu"
SRC_URI="http://launchpad.net/${PN/lib}/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3"
SLOT="3"
KEYWORDS="~amd64 ~x86"
IUSE="debug gtk +introspection"
RDEPEND=">=dev-libs/glib-2.32
>=dev-libs/dbus-glib-0.100
dev-libs/libxml2
gtk? ( >=x11-libs/gtk+-3.2:3 )
introspection? ( >=dev-libs/gobject-introspection-1 )
!<${CATEGORY}/${PN}-0.5.1-r200"
DEPEND="${RDEPEND}
app-text/gnome-doc-utils
dev-util/intltool
virtual/pkgconfig
introspection? ( dev-lang/vala:${AYATANA_VALA_VERSION}[vapigen] )"
src_configure() {
append-flags -Wno-error #414323
use introspection && export VALA_API_GEN="$(type -P vapigen-${AYATANA_VALA_VERSION})"
# dumper extra tool is only for GTK+-2.x, tests use valgrind which is stupid
econf \
--docdir=/usr/share/doc/${PF} \
--disable-static \
--disable-silent-rules \
--disable-scrollkeeper \
$(use_enable gtk) \
--disable-dumper \
--disable-tests \
$(use_enable introspection) \
$(use_enable introspection vala) \
$(use_enable debug massivedebugging) \
--with-html-dir=/usr/share/doc/${PF}/html \
--with-gtk=3
}
src_test() { :; } #440192
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc AUTHORS ChangeLog README
local a b
for a in ${PN}-{glib,gtk}; do
b=/usr/share/doc/${PF}/html/${a}
[[ -d ${ED}/${b} ]] && dosym ${b} /usr/share/gtk-doc/html/${a}
done
prune_libtool_files
}
|