blob: 5f6d175b6e7ef0ced49d31dfdcbd247d22ad1fbb (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.30.1.ebuild,v 1.1 2011/10/16 19:24:10 pacho Exp $
EAPI="4"
GNOME_ORG_MODULE="glib"
PYTHON_DEPEND="2:2.5"
PYTHON_USE_WITH="xml"
inherit gnome.org multilib python
DESCRIPTION="GDBus code and documentation generator"
HOMEPAGE="http://www.gtk.org/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
# To prevent circular dependencies with glib[test]
PDEPEND=">=dev-libs/glib-${PV}:2"
S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs 2 gdbus-codegen.in
sed -e "s:@libdir@:${EPREFIX}/usr/$(get_libdir):" \
-i gdbus-codegen.in || die "sed gdbus-codegen.in failed"
sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
-i config.py || die "sed config.py failed"
}
src_test() {
elog "Skipping tests. To test ${PN}, emerge dev-libs/glib"
elog "with FEATURES=test"
}
src_install() {
insinto "/usr/$(get_libdir)/gdbus-2.0/codegen"
# Keep in sync with Makefile.am!
doins __init__.py \
codegen.py \
codegen_main.py \
codegen_docbook.py \
config.py \
dbustypes.py \
parser.py \
utils.py
newbin gdbus-codegen.in gdbus-codegen
doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
}
pkg_postinst() {
python_need_rebuild
python_mod_optimize /usr/$(get_libdir)/gdbus-2.0/codegen
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/gdbus-2.0/codegen
}
|