aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gnome/libart-lgpl.inc
blob: aa06237e4d2266b4736d6fb4901192f75d3ee77a (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
DESCRIPTION = "Library of functions for 2D graphics"
SECTION = "x11/gnome"
LICENSE = "LGPL"

ART_CONFIG = "${HOST_ARCH}/art_config.h"

INC_PR = "r5"

# can't use gnome.bbclass due to _ in filename
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
       file://${ART_CONFIG} \
       file://Makefile.am.patch"

inherit autotools pkgconfig

FILES_${PN} = "${libdir}/*.so.*"
FILES_${PN}-dev += "${bindir}/libart2-config"

S = "${WORKDIR}/libart_lgpl-${PV}"

do_configure_prepend() {
	cp ${WORKDIR}/${ART_CONFIG} ${S}/art_config.h
}

EXTRA_OECONF = "--disable-gtk-doc"

# With automake-native 1.10.2 the configure and m4 scripts are confused
# and detect the following stuff wrong. Correct programs are hereby
# enforced.
export MKDIR_P = "mkdir -p"
export mkdir_p = "mkdir -p"