blob: 5e02d9888f31b2b3a0f15e8a579e735d9f579043 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-packagekit/gnome-packagekit-3.2.1.ebuild,v 1.1 2011/11/22 20:30:10 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
PYTHON_DEPEND="2"
inherit eutils gnome2 python virtualx
DESCRIPTION="PackageKit client for the GNOME desktop"
HOMEPAGE="http://www.packagekit.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc nls test udev"
# gdk-pixbuf ised in gpk-animated-icon
# pango used on gpk-common
RDEPEND="
>=dev-libs/glib-2.25.9:2
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-2.91.0:3
>=x11-libs/libnotify-0.7.0
x11-libs/pango
>=dev-libs/dbus-glib-0.73
>=app-admin/packagekit-base-0.6.5[udev]
>=app-admin/packagekit-gtk-0.6.5
>=media-libs/libcanberra-0.10[gtk3]
>=sys-apps/dbus-1.1.2
>=sys-power/upower-0.9.0
media-libs/fontconfig
x11-libs/libX11
udev? ( >=sys-fs/udev-145[extras] )"
DEPEND="${RDEPEND}
app-text/docbook-sgml-utils
>=app-text/gnome-doc-utils-0.3.2
dev-libs/libxslt
>=dev-util/intltool-0.35
dev-util/pkgconfig
sys-devel/gettext
doc? ( >=dev-util/gtk-doc-1.9 )"
# NOTES:
# app-text/docbook-sgml-utils required for man pages
# app-text/gnome-doc-utils and dev-libs/libxslt required for gnome help files
# gtk-doc is generating a useless file, don't need it
# UPSTREAM:
# misuse of CPPFLAGS/CXXFLAGS ?
# see if tests can forget about display (use eclass for that ?)
# intltool and gettext only with +nls
pkg_setup() {
DOCS="AUTHORS MAINTAINERS NEWS README TODO"
# localstatedir: /var for upstream /var/lib for gentoo
# scrollkeeper and schemas-install: managed by gnome2 eclass
# tests: not working (need DISPLAY)
# gtk-doc: not needed (builded file is useless)
# --enable-libtool-lock
# --disable-dependency-tracking
# --enable-option-checking
G2CONF="${G2CONF}
--localstatedir=/var
--enable-compile-warnings=yes
--enable-iso-c
--disable-scrollkeeper
--disable-schemas-compile
--disable-strict
$(use_enable nls)
$(use_enable test tests)
$(use_enable udev gudev)"
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
gnome2_src_prepare
# fix pyc/pyo generation
ln -sfn $(type -P true) py-compile
# disable tests with graphical dialogs and that require packagekitd to be
# run with the dummy backend
epatch "${FILESDIR}/${PN}-3.1.90-tests.patch"
}
src_test() {
unset DISPLAY
Xemake check
}
pkg_postinst() {
gnome2_pkg_postinst
python_need_rebuild
python_mod_optimize packagekit
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup packagekit
}
|