blob: fa4564b967c6ee47717d972ba906e6c8196caa40 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
DESCRIPTION = "FLTK is a cross-platform C++ GUI toolkit"
LICENSE ="LGPL"
HOMEPAGE = "http://www.fltk.org"
SECTION = "libs"
PRIORITY = "optional"
MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
DEPENDS = "jpeg libpng zlib"
PR = "r1"
SRC_URI = "cvs://anonymous:@cvs.sourceforge.net/cvsroot/fltk;module=fltk;method=pserver;tag=v1_2;date=${@oe.data.getVar('PV', d, 1)[7:]} \
file://makefiles.patch;patch=1 \
file://autotools.patch;patch=1"
S="${WORKDIR}/fltk"
inherit autotools binconfig
do_configure_prepend() {
autoconf
}
FILES_${PN} = "${libdir}/lib*.so.*"
FILES_${PN}-dev += " ${bindir}/fltk-config"
LEAD_SONAME = "libfltk.so"
EXTRA_OECONF = "--enable-shared --disable-gl"
do_install () {
oe_runmake prefix="${D}/${prefix}" \
bindir="${D}/${bindir}" \
libdir="${D}/${libdir}" \
includedir="${D}/${includedir}" \
install
}
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR}
}
python populate_packages_prepend () {
if (oe.data.getVar('DEBIAN_NAMES', d, 1)):
oe.data.setVar('PKG_${PN}', 'libfltk1.2', d)
}
|