From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/fltk/efltk_2.0.7.bb | 63 +++++++++++++++++++++++++++++++++++ recipes/fltk/files/disable_test.patch | 13 ++++++++ recipes/fltk/fltk_1.1.4.bb | 40 ++++++++++++++++++++++ recipes/fltk/fltk_1.1.7.bb | 38 +++++++++++++++++++++ recipes/fltk/fltk_1.1.9.bb | 35 +++++++++++++++++++ 5 files changed, 189 insertions(+) create mode 100644 recipes/fltk/efltk_2.0.7.bb create mode 100644 recipes/fltk/files/disable_test.patch create mode 100644 recipes/fltk/fltk_1.1.4.bb create mode 100644 recipes/fltk/fltk_1.1.7.bb create mode 100644 recipes/fltk/fltk_1.1.9.bb (limited to 'recipes/fltk') diff --git a/recipes/fltk/efltk_2.0.7.bb b/recipes/fltk/efltk_2.0.7.bb new file mode 100644 index 0000000000..b048e078b3 --- /dev/null +++ b/recipes/fltk/efltk_2.0.7.bb @@ -0,0 +1,63 @@ +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() { + autotools_stage_all +} + +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" diff --git a/recipes/fltk/files/disable_test.patch b/recipes/fltk/files/disable_test.patch new file mode 100644 index 0000000000..8c01a1f806 --- /dev/null +++ b/recipes/fltk/files/disable_test.patch @@ -0,0 +1,13 @@ +Index: fltk-1.1.9/Makefile +=================================================================== +--- fltk-1.1.9.orig/Makefile 2008-06-06 16:14:11.936736201 +0200 ++++ fltk-1.1.9/Makefile 2008-06-06 16:14:22.526357637 +0200 +@@ -27,7 +27,7 @@ + + include makeinclude + +-DIRS = $(IMAGEDIRS) src fluid test documentation ++DIRS = $(IMAGEDIRS) src fluid documentation + + all: makeinclude fltk-config + for dir in $(DIRS); do\ diff --git a/recipes/fltk/fltk_1.1.4.bb b/recipes/fltk/fltk_1.1.4.bb new file mode 100644 index 0000000000..ae7c0e1c95 --- /dev/null +++ b/recipes/fltk/fltk_1.1.4.bb @@ -0,0 +1,40 @@ +DESCRIPTION = "FLTK is a cross-platform C++ GUI toolkit" +HOMEPAGE = "http://www.fltk.org" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "LGPL" +DEPENDS = "jpeg libpng mesa zlib" +PR = "r1" + +SRC_URI = "ftp://ftp-fourier.ujf-grenoble.fr/xcas/devel/sources/fltk-${PV}-device.tar.gz" + +S = "${WORKDIR}/fltk-${PV}-Fl_Device" + +inherit autotools binconfig lib_package + +CXXFLAGS = "" + +EXTRA_OECONF = "--enable-shared --enable-gl --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR}" + +do_configure() { + oe_runconf +} + +do_install () { + autotools_stage_all +} + +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 (bb.data.getVar('DEBIAN_NAMES', d, 1)): + bb.data.setVar('PKG_${PN}', 'libfltk${PV}', d) +} + +LEAD_SONAME = "libfltk.so" diff --git a/recipes/fltk/fltk_1.1.7.bb b/recipes/fltk/fltk_1.1.7.bb new file mode 100644 index 0000000000..866db129e8 --- /dev/null +++ b/recipes/fltk/fltk_1.1.7.bb @@ -0,0 +1,38 @@ +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" +PR = "r2" + +SRC_URI = "ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/fltk/${PV}/fltk-${PV}-source.tar.bz2" + +S = "${WORKDIR}/fltk-${PV}" + +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 () { + 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}', 'libfltk${PV}', d) +} + +LEAD_SONAME = "libfltk.so" diff --git a/recipes/fltk/fltk_1.1.9.bb b/recipes/fltk/fltk_1.1.9.bb new file mode 100644 index 0000000000..a2c5dcb5ab --- /dev/null +++ b/recipes/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" -- cgit v1.2.3