blob: e34642b5f62948518ce5a02ce1f49222741d1bc6 (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
DESCRIPTION = "Python bindings for D-Bus"
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/DBusBindings/"
SECTION = "System/Libraries"
LICENSE = "MIT"
SRC_URI = ""
S = "${WORKDIR}/git"
inherit autotools-brokensep
BBCLASSEXTEND = ""
PROVIDES = ""
#PROVIDES by dbus-python-dev
PROVIDES += "dbus-python-dev"
#PROVIDES by dbus-python
RDEPENDS = ""
#RDEPENDS of dbus-python-dev (${PN}-dev)
RDEPENDS_${PN}-dev += "dbus"
RDEPENDS_${PN}-dev += "dbus-python"
#RDEPENDS of dbus-python (${PN})
RDEPENDS_${PN} += "python-xml"
RDEPENDS_${PN} += "dbus"
RDEPENDS_${PN} += "libxml2-python"
DEPENDS = ""
#DEPENDS of dbus-python
inherit pythonnative
DEPENDS += "dbus"
DEPENDS_append_class-native = " fdupes-native"
DEPENDS_append_class-target = " fdupes-native"
DEPENDS += "dbus-glib"
do_prep() {
cd ${S}
chmod -Rf a+rX,u+w,g-w,o-w ${S}
#setup -q
cp ${S}/packaging/dbus-python.manifest .
}
do_patch_append() {
bb.build.exec_func('do_prep', d)
}
do_configure() {
}
do_compile() {
cd ${S}
LANG=C
export LANG
unset DISPLAY
LD_AS_NEEDED=1; export LD_AS_NEEDED ;
export CFLAGS="$CFLAGS -fstack-protector -fno-strict-aliasing -fPIC"
autotools_do_configure
make ${PARALLEL_MAKE}
}
EXTRA_OECONF += " --docdir=${prefix}/share/doc/packages/dbus-python"
do_install() {
echo export RPM_BUILD_ROOT=${D}
cd ${S}
LANG=C
export LANG
unset DISPLAY
rm -rf ${D}
mkdir -p ${D}
oe_runmake \
DESTDIR=${D} \
INSTALL_ROOT=${D} \
BINDIR=${prefix}/bin \
install
rm -f ${D}${infodir}/dir
find ${D} -regex ".*\.la$" | xargs rm -f --
find ${D} -regex ".*\.a$" | xargs rm -f --
rm -rf ${D}${infodir}
rm -rf ${D}${prefix}/share/doc/packages
rm -rf ${D}${prefix}/share/doc/dbus-python
rm -rf ${D}${prefix}/share/doc/dbus-python-1.1.1
rm -rf ${D}${prefix}/share/gtk-doc
rm -rf ${D}${prefix}/share/doc
rm -rf ${D}${prefix}/share/man
find ${D} -regex ".*/man/man./.*.[0-9]" | xargs rm -f --
find ${D} -regex ".*/man/../man./.*.[0-9]" | xargs rm -f --
find ${D} -regex ".*/man/man./.*.[0-9]pm" | xargs rm -f --
_target="";
_symlinks=0;
_symlinks=1;
fdupes -q -n -r ${D} |
while read _file; do
if test -z "$_target" ; then
_target="$_file";
else
if test -z "$_file" ; then
_target="";
continue ;
fi ;
if test "$_symlinks" = 1; then
ln -sf "${_target#${D}}" "$_file";
else
ln -f "$_target" "$_file";
fi ;
fi ;
done
}
PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
PACKAGES += " dbus-python-dev "
PACKAGES += " dbus-python "
dbus-python-dev_files = ""
dbus-python-dev_files += "${prefix}/include/dbus-1.0/dbus/dbus-python.h"
dbus-python-dev_files += "${prefix}/lib/pkgconfig/dbus-python.pc"
MANIFESTFILES_${PN}-dev = "dbus-python.manifest"
dbus-python_files = ""
dbus-python_files += "${prefix}/lib/python2.7/site-packages/*"
dbus-python_files += "${prefix}/lib/python2.7/site-packages/*"
MANIFESTFILES_${PN} = "dbus-python.manifest"
FILES_${PN}-dev = "${dbus-python-dev_files}"
FILES_${PN} = "${dbus-python_files}"
PKG_dbus-python-dev= "dbus-python-dev"
PKG_dbus-python= "dbus-python"
require dbus-python-extraconf.inc
|