|
Lines 26-31
Link Here
|
| 26 |
|
26 |
|
| 27 |
MAKEOPTS="${MAKEOPTS} -j1" |
27 |
MAKEOPTS="${MAKEOPTS} -j1" |
| 28 |
|
28 |
|
|
|
29 |
src_unpack() { |
| 30 |
unpack ${A} |
| 31 |
cd ${S} |
| 32 |
# don't waste time building the examples |
| 33 |
sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \ |
| 34 |
die "sed Makefile.in failed" |
| 35 |
} |
| 36 |
|
| 29 |
src_compile() { |
37 |
src_compile() { |
| 30 |
gnome2_src_compile |
38 |
gnome2_src_compile |
| 31 |
if use doc ; then |
39 |
if use doc ; then |
|
Lines 36-41
Link Here
|
| 36 |
|
44 |
|
| 37 |
src_install() { |
45 |
src_install() { |
| 38 |
gnome2_src_install |
46 |
gnome2_src_install |
|
|
47 |
rm -fr ${D}/usr/share/doc/libxml++* |
| 39 |
use doc && dohtml docs/reference/${PV%.*}/html/* |
48 |
use doc && dohtml docs/reference/${PV%.*}/html/* |
| 40 |
} |
49 |
} |
| 41 |
|
50 |
|