increase dvbapp PR.
[vuplus_openembedded] / recipes / gnome / libart-lgpl.inc
1 DESCRIPTION = "Library of functions for 2D graphics"
2 SECTION = "x11/gnome"
3 LICENSE = "LGPL"
4
5 ART_CONFIG = "${HOST_ARCH}/art_config.h"
6
7 INC_PR = "r4"
8
9 # can't use gnome.oeclass due to _ in filename
10 SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
11        file://${ART_CONFIG} \
12        file://Makefile.am.patch;patch=1"
13
14 inherit autotools pkgconfig
15
16 FILES_${PN} = "${libdir}/*.so.*"
17 FILES_${PN}-dev += "${bindir}/libart2-config"
18
19 S = "${WORKDIR}/libart_lgpl-${PV}"
20
21 do_configure_prepend() {
22         cp ${WORKDIR}/${ART_CONFIG} ${S}/art_config.h
23 }
24
25 EXTRA_OECONF = "--disable-gtk-doc"
26
27 # With automake-native 1.10.2 the configure and m4 scripts are confused
28 # and detect the following stuff wrong. Correct programs are hereby
29 # enforced.
30 export MKDIR_P = "mkdir -p"
31 export mkdir_p = "mkdir -p"
32
33 do_stage() {
34         autotools_stage_includes
35         oe_libinstall -a -so libart_lgpl_2 ${STAGING_LIBDIR}
36 }