diff options
author | Angus Ainslie <nytowl@openmoko.org> | 2009-04-21 13:18:02 -0600 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-04-24 17:23:57 +0200 |
commit | df48726ac9dc66f910bf4c871f3de7094a726a77 (patch) | |
tree | 6a8f6662090a500ea66d8cb946d9f56af371951b /recipes/fltk/fltk2_svn.bb | |
parent | 80c85e0af3865710a189ba536022d326fa996d26 (diff) |
fltk2: add an svn recipe for the beta version of fltk library
Diffstat (limited to 'recipes/fltk/fltk2_svn.bb')
-rw-r--r-- | recipes/fltk/fltk2_svn.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes/fltk/fltk2_svn.bb b/recipes/fltk/fltk2_svn.bb new file mode 100644 index 0000000000..7cc5a06b74 --- /dev/null +++ b/recipes/fltk/fltk2_svn.bb @@ -0,0 +1,41 @@ +DESCRIPTION = "FLTK is a cross-platform C++ GUI toolkit" +HOMEPAGE = "http://www.fltk.org" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "LGPL" +DEPENDS = "zlib jpeg libpng libxext libxft" + +SRC_URI = "http://ftp.easysw.com/pub/fltk/snapshots/fltk-2.0.x-r6671.tar.bz2" + +#S = "${WORKDIR}/fltk-${PV}" +S = "${WORKDIR}/fltk-2.0.x-r6671" + +inherit autotools binconfig + +EXTRA_OECONF = "--enable-shared --enable-xdbe --enable-xft --enable-gl --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR}" + +do_configure() { + oe_runconf +} + +do_stage() { + autotools_stage_all +} + +do_install () { + sed -i "s|^STRIP.*=.*$|STRIP = ${STRIP}|" makeinclude + sed -i "s|^bindir.*=.*$|bindir = ${D}${bindir}|" makeinclude + oe_runmake install \ + prefix="${D}${prefix}" \ + bindir="${D}${bindir}" \ + libdir="${D}${libdir}" \ + includedir="${D}${includedir}" \ + datadir="${STAGING_DATADIR}" +} + +python populate_packages_prepend () { + if (bb.data.getVar('DEBIAN_NAMES', d, 1)): + bb.data.setVar('PKG_${PN}', 'libfltk2${PV}', d) +} + +LEAD_SONAME = "libfltk2.so" |