diff options
author | John Lee <john_lee@openmoko.org> | 2008-02-27 07:50:52 +0000 |
---|---|---|
committer | Openmoko anonymizer key <devel@lists.openmoko.org> | 2008-02-27 07:50:52 +0000 |
commit | d6f3635f2e2baa680d878461fc8fa9b68c51162b (patch) | |
tree | a07627fc6746f21a02a543381681f1cb1320b38d /packages/fltk/efltk_2.0.7.bb | |
parent | b14906e8fa695a85b9ddf27838c959be1c8a5fad (diff) | |
parent | 9d22cb8106117d2d923bf7b2c263bf9e31b5305f (diff) |
merge of '8dccbf106093aaa7b62b2a96962945185534c923'
and 'c50825ba187c292f591cf43c91216cebffb5e290'
Diffstat (limited to 'packages/fltk/efltk_2.0.7.bb')
-rw-r--r-- | packages/fltk/efltk_2.0.7.bb | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/packages/fltk/efltk_2.0.7.bb b/packages/fltk/efltk_2.0.7.bb new file mode 100644 index 0000000000..57737e1c57 --- /dev/null +++ b/packages/fltk/efltk_2.0.7.bb @@ -0,0 +1,67 @@ +DESCRIPTION = "EFLTK is a cross-platform C++ GUI toolkit" +HOMEPAGE = "http://equinox-project.org/page/documentation" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "LGPL" +DEPENDS = "zlib jpeg libpng libxext libxft" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/ede/efltk-${PV}.tar.gz" +S = "${WORKDIR}/efltk" + +inherit autotools binconfig + +EXTRA_OECONF = "\ + --enable-shared \ + --enable-xdbe \ + --enable-xft \ + --enable-gl \ + --disable-mysql \ + --disable-unixODBC \ + --x-includes=${STAGING_INCDIR}/freetype2 \ + --x-libraries=${STAGING_LIBDIR} \ +" + +# yes, this is nasty, but configure is so broken there is no other way +do_configure() { + gnu-configize + oe_runconf + mv -f config.h save + autotools_do_configure + mv -f save config.h +} + +# more nasties +do_configure_append() { + sed -i s,/usr/include,${STAGING_INCDIR}, makeinclude + sed -i s,/usr/include/freetype2,, makeinclude + sed -i s,/usr/bin/strip,echo, makeinclude + sed -i s,CONFIGDIR,'"${datadir}/ede/"', src/core/Fl_Config.cpp +} + +do_stage() { + oe_runmake install prefix="${STAGING_DIR}" \ + bindir="${STAGING_BINDIR}" \ + includedir="${STAGING_INCDIR}" \ + libdir="${STAGING_LIBDIR}" \ + datadir="${STAGING_DATADIR}" +} + +do_install () { + install -d ${D}${libdir} + 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}', 'libefltk${PV}', d) +} + +LEAD_SONAME = "libefltk.so" + +FILES_${PN} += "${libdir}/fltk/*.theme" +FILES_${PN}-dbg += "${libdir}/fltk/.debug" |