blob: b4e958b86aeb6f824b75e55398cdc0e2e3608b60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
LICENSE = "GPL"
SECTION = "x11/libs"
DEPENDS = "intltool libgnomeprint gtk+ libglade libgnomeui libgnomecanvas libxml2 libgnomeprintui"
inherit gnome
SRC_URI = "${GNOME_MIRROR}/gal/2.1/gal-${PV}.tar.bz2 \
file://configure.patch;patch=1 \
file://forward-decl.patch;patch=1 \
file://iconv-detect.h"
S = "${WORKDIR}/gal-${PV}"
do_configure_prepend() {
cp ${WORKDIR}/iconv-detect.h ${S}/
}
do_stage() {
gnome_stage_includes
oe_libinstall -C gal -so -a libgal-2.2 ${STAGING_LIBDIR}
}
|