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/gd/gd_2.0.21.bb | 24 ++++++++++++++++++++++++ recipes/gd/gd_2.0.22.bb | 25 +++++++++++++++++++++++++ recipes/gd/gd_2.0.33.bb | 30 ++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 recipes/gd/gd_2.0.21.bb create mode 100644 recipes/gd/gd_2.0.22.bb create mode 100644 recipes/gd/gd_2.0.33.bb (limited to 'recipes/gd') diff --git a/recipes/gd/gd_2.0.21.bb b/recipes/gd/gd_2.0.21.bb new file mode 100644 index 0000000000..03a506b882 --- /dev/null +++ b/recipes/gd/gd_2.0.21.bb @@ -0,0 +1,24 @@ +SECTION = "libs" +LICENSE = "GD" +DESCRIPTION = "gd is a library used to create PNG, JPEG, or WBMP images." +DEPENDS = "libpng jpeg zlib" + +SRC_URI = "http://www.boutell.com/gd/http/gd-${PV}.tar.gz" +S = "${WORKDIR}/gd-${PV}" + +inherit autotools gettext + +EXTRA_OECONF += " --with-zlib=${STAGING_LIBDIR}/.. \ + --with-png=${STAGING_LIBDIR}/.. \ + --with-jpeg=${STAGING_LIBDIR}/.. \ + --without-xpm" + +headers = "gd.h gdcache.h gd_io.h gdfx.h gdfontmb.h \ + gdfontg.h gdfontl.h gdfonts.h gdfontt.h" + +do_stage () { + oe_libinstall -so -a libgd ${STAGING_LIBDIR}/ + for i in ${headers}; do + install -m 0644 $i ${STAGING_INCDIR}/ + done +} diff --git a/recipes/gd/gd_2.0.22.bb b/recipes/gd/gd_2.0.22.bb new file mode 100644 index 0000000000..a54809bf3b --- /dev/null +++ b/recipes/gd/gd_2.0.22.bb @@ -0,0 +1,25 @@ +SECTION = "libs" +LICENSE = "GD" +DESCRIPTION = "gd is a library used to create PNG, JPEG, or WBMP images." +DEPENDS = "libpng jpeg zlib" +PR = "r1" + +SRC_URI = "http://www.boutell.com/gd/http/gd-${PV}.tar.gz" +S = "${WORKDIR}/gd-${PV}" + +inherit autotools binconfig gettext + +EXTRA_OECONF += " --with-zlib=${STAGING_LIBDIR}/.. \ + --with-png=${STAGING_LIBDIR}/.. \ + --with-jpeg=${STAGING_LIBDIR}/.. \ + --without-xpm" + +headers = "gd.h gdcache.h gd_io.h gdfx.h gdfontmb.h \ + gdfontg.h gdfontl.h gdfonts.h gdfontt.h" + +do_stage () { + oe_libinstall -so -a libgd ${STAGING_LIBDIR}/ + for i in ${headers}; do + install -m 0644 $i ${STAGING_INCDIR}/ + done +} diff --git a/recipes/gd/gd_2.0.33.bb b/recipes/gd/gd_2.0.33.bb new file mode 100644 index 0000000000..7c1f7c3d19 --- /dev/null +++ b/recipes/gd/gd_2.0.33.bb @@ -0,0 +1,30 @@ +SECTION = "libs" +LICENSE = "GD" +DESCRIPTION = "gd is a library used to create PNG, JPEG, or WBMP images." +DEPENDS = "libpng jpeg zlib" +PR = "r1" + +SRC_URI = "http://www.boutell.com/gd/http/gd-${PV}.tar.gz" +S = "${WORKDIR}/gd-${PV}" + +inherit autotools binconfig gettext + +EXTRA_OECONF += " --with-zlib=${STAGING_LIBDIR}/.. \ + --with-png=${STAGING_LIBDIR}/.. \ + --with-jpeg=${STAGING_LIBDIR}/.. \ + --without-freetype \ + --without-fontconfig \ + --without-xpm \ + --without-x" + +EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}" + +headers = "gd.h gdcache.h gd_io.h gdfx.h gdfontmb.h \ + gdfontg.h gdfontl.h gdfonts.h gdfontt.h" + +do_stage () { + oe_libinstall -so -a libgd ${STAGING_LIBDIR}/ + for i in ${headers}; do + install -m 0644 $i ${STAGING_INCDIR}/ + done +} -- cgit 1.2.3-korg