diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-06-06 14:38:01 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-06-06 14:38:01 +0000 |
commit | a7078c7115a562d138da6498119e27b143e12810 (patch) | |
tree | 0e693943501cf2089d4ed7c1dd0b6dac4ba36b52 /packages/fltk/fltk_1.1.9.bb | |
parent | 923c2692e9bfc580eee2a564d5ef8824080f71fa (diff) |
fltk: update to 1.1.9 and make it build again
* make fltk build again
* disable test-dir for now and until we fixed that fluid is build natvie
* commit makes bug 430 invalid
Diffstat (limited to 'packages/fltk/fltk_1.1.9.bb')
-rw-r--r-- | packages/fltk/fltk_1.1.9.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/fltk/fltk_1.1.9.bb b/packages/fltk/fltk_1.1.9.bb new file mode 100644 index 0000000000..a2c5dcb5ab --- /dev/null +++ b/packages/fltk/fltk_1.1.9.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "FLTK is a cross-platform C++ GUI toolkit" +HOMEPAGE = "http://www.fltk.org" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "LGPL" +DEPENDS = "alsa-lib zlib jpeg libpng libxext libxft" +PR = "r0" + +SRC_URI = "ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/fltk/${PV}/fltk-${PV}-source.tar.bz2 \ + file://disable_test.patch;patch=1 \ + " + +S = "${WORKDIR}/fltk-${PV}" + +inherit lib_package autotools binconfig + +EXTRA_OECONF = "--enable-shared \ + --enable-threads \ + --enable-xdbe --enable-xft --enable-gl \ + --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR}" + +do_configure() { + oe_runconf +} + +do_stage() { + autotools_stage_all +} + +python populate_packages_prepend () { + if (bb.data.getVar('DEBIAN_NAMES', d, 1)): + bb.data.setVar('PKG_${PN}', 'libfltk${PV}', d) +} + +LEAD_SONAME = "libfltk.so" |