blob: 1c5aad8027fbd2d44d2c9a330ad6f787169e5010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
LICENSE = "GPL"
SECTION = "x11/libs"
DEPENDS = "intltool libgnomeprint gtk+ libglade libgnomeui libgnomecanvas libxml2 libgnomeprintui"
inherit gnome
SRC_URI = "${GNOME_MIRROR}/gal/1.99/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.0 ${STAGING_LIBDIR}
oe_libinstall -C gal/a11y -so -a libgal-a11y-2.0 ${STAGING_LIBDIR}
}
|