diff options
81 files changed, 559 insertions, 65 deletions
diff --git a/dvbtools/dvbstream_cvs.oe b/dvbtools/dvbstream_cvs.oe index af5589173b..c65a30d816 100644 --- a/dvbtools/dvbstream_cvs.oe +++ b/dvbtools/dvbstream_cvs.oe @@ -1,5 +1,5 @@ PV = "0.0cvs${CVSDATE}" -SECTION = "console/dvb" +SECTION = "console/multimedia" PRIORITY = "optional" MAINTAINER = "Phil Blundell <pb@debian.org>" DEPENDS = "libxml2" diff --git a/dvbtools/dvbtune_cvs.oe b/dvbtools/dvbtune_cvs.oe index e9d60ea766..14260ecd2b 100644 --- a/dvbtools/dvbtune_cvs.oe +++ b/dvbtools/dvbtune_cvs.oe @@ -1,5 +1,5 @@ PV = "0.0cvs${CVSDATE}" -SECTION = "console/dvb" +SECTION = "console/multimedia" PRIORITY = "optional" MAINTAINER = "Phil Blundell <pb@debian.org>" DEPENDS = "libxml2" diff --git a/flac/flac_1.1.0.oe b/flac/flac_1.1.0.oe index e69de29bb2..e9c2bf921a 100644 --- a/flac/flac_1.1.0.oe +++ b/flac/flac_1.1.0.oe @@ -0,0 +1,69 @@ +DESCRIPTION = "FLAC is a Free Lossless Audio Codec." +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" +SECTION = "libs" +DEPENDS = "libogg" + +SRC_URI = "${SOURCEFORGE_MIRROR}/flac/flac-${PV}.tar.gz \ + file://xmms.m4" +S = "${WORKDIR}/flac-${PV}" + +inherit autotools + +EXTRA_OECONF = "--disable-oggtest --disable-id3libtest \ + --with-ogg-libraries=${STAGING_LIBDIR} \ + --with-ogg-includes=${STAGING_INCDIR} \ + --without-xmms-prefix \ + --without-xmms-exec-prefix \ + --without-libiconv-prefix \ + --without-id3lib" + +do_configure () { + install -d ${S}/m4 + install -m 0644 ${WORKDIR}/xmms.m4 ${S}/m4/ + autotools_do_configure +} + +do_stage () { + install -d ${STAGING_DATADIR}/aclocal + + oe_libinstall -a -so -C src/libOggFLAC libOggFLAC ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/OggFLAC + install -m 0644 ${S}/include/OggFLAC/export.h ${STAGING_INCDIR}/OggFLAC/export.h + install -m 0644 ${S}/include/OggFLAC/all.h ${STAGING_INCDIR}/OggFLAC/all.h + install -m 0644 ${S}/include/OggFLAC/stream_encoder.h ${STAGING_INCDIR}/OggFLAC/stream_encoder.h + install -m 0644 ${S}/include/OggFLAC/stream_decoder.h ${STAGING_INCDIR}/OggFLAC/stream_decoder.h + install -m 0644 ${S}/src/libOggFLAC/libOggFLAC.m4 ${STAGING_DATADIR}/aclocal/ + + oe_libinstall -a -so -C src/libFLAC libFLAC ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/FLAC + install -m 0644 ${S}/include/FLAC/export.h ${STAGING_INCDIR}/FLAC/export.h + install -m 0644 ${S}/include/FLAC/metadata.h ${STAGING_INCDIR}/FLAC/metadata.h + install -m 0644 ${S}/include/FLAC/all.h ${STAGING_INCDIR}/FLAC/all.h + install -m 0644 ${S}/include/FLAC/format.h ${STAGING_INCDIR}/FLAC/format.h + install -m 0644 ${S}/include/FLAC/stream_encoder.h ${STAGING_INCDIR}/FLAC/stream_encoder.h + install -m 0644 ${S}/include/FLAC/stream_decoder.h ${STAGING_INCDIR}/FLAC/stream_decoder.h + install -m 0644 ${S}/include/FLAC/ordinals.h ${STAGING_INCDIR}/FLAC/ordinals.h + install -m 0644 ${S}/include/FLAC/seekable_stream_encoder.h ${STAGING_INCDIR}/FLAC/seekable_stream_encoder.h + install -m 0644 ${S}/include/FLAC/file_encoder.h ${STAGING_INCDIR}/FLAC/file_encoder.h + install -m 0644 ${S}/include/FLAC/seekable_stream_decoder.h ${STAGING_INCDIR}/FLAC/seekable_stream_decoder.h + install -m 0644 ${S}/include/FLAC/file_decoder.h ${STAGING_INCDIR}/FLAC/file_decoder.h + install -m 0644 ${S}/include/FLAC/assert.h ${STAGING_INCDIR}/FLAC/assert.h + install -m 0644 ${S}/src/libFLAC/libFLAC.m4 ${STAGING_DATADIR}/aclocal/ + + oe_libinstall -a -so -C src/libFLAC++ libFLAC++ ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/FLAC++ + install -m 0644 ${S}/include/FLAC++/export.h ${STAGING_INCDIR}/FLAC++/export.h + install -m 0644 ${S}/include/FLAC++/metadata.h ${STAGING_INCDIR}/FLAC++/metadata.h + install -m 0644 ${S}/include/FLAC++/all.h ${STAGING_INCDIR}/FLAC++/all.h + install -m 0644 ${S}/include/FLAC++/encoder.h ${STAGING_INCDIR}/FLAC++/encoder.h + install -m 0644 ${S}/include/FLAC++/decoder.h ${STAGING_INCDIR}/FLAC++/decoder.h + install -m 0644 ${S}/src/libFLAC++/libFLAC++.m4 ${STAGING_DATADIR}/aclocal/ + + oe_libinstall -a -so -C src/libOggFLAC++ libOggFLAC++ ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/OggFLAC++ + install -m 0644 ${S}/include/OggFLAC++/export.h ${STAGING_INCDIR}/OggFLAC++/export.h + install -m 0644 ${S}/include/OggFLAC++/all.h ${STAGING_INCDIR}/OggFLAC++/all.h + install -m 0644 ${S}/include/OggFLAC++/encoder.h ${STAGING_INCDIR}/OggFLAC++/encoder.h + install -m 0644 ${S}/include/OggFLAC++/decoder.h ${STAGING_INCDIR}/OggFLAC++/decoder.h + install -m 0644 ${S}/src/libOggFLAC++/libOggFLAC++.m4 ${STAGING_DATADIR}/aclocal/ +} diff --git a/frodo/frodo_4.1b.oe b/frodo/frodo_4.1b.oe index e69de29bb2..59016835e0 100644 --- a/frodo/frodo_4.1b.oe +++ b/frodo/frodo_4.1b.oe @@ -0,0 +1,45 @@ +DESCRIPTION = "A C64 emulator based on SDL." +SECTION = "opie/utils" +DEPENDS = "libsdl-qpe" + +SRC_URI = "http://wwwthep.physik.uni-mainz.de/~cbauer/FrodoV4_1b.Src.tar.gz \ + file://frodo-qte.diff;patch=1 \ + file://frodo-joystick-4state.diff;patch=1 \ + file://frodorc \ + file://Frodo.png \ + file://frodo.desktop" +S = "${WORKDIR}/Frodo-${PV}/Src" + +inherit autotools + +EXTRA_OECONF = "--disable-sdltest --enable-qtopia" + +do_configure() { + gnu-configize + oe_runconf +} + +do_install() { + install -d ${D}/${palmtopdir}/bin \ + ${D}/${palmtopdir}/apps/Games \ + ${D}/${palmtopdir}/pics + install -m 0644 ${WORKDIR}/Frodo.png ${D}/${palmtopdir}/pics/Frodo.png + install -m 0644 ${WORKDIR}/frodo.desktop ${D}/${palmtopdir}/apps/Games/frodo.desktop + # start script and executable + install -d ${D}/${palmtopdir}/bin/${PN} + install -m 0755 Frodo ${D}/${palmtopdir}/bin/${PN}/Frodo + cat <<STARTER_EOF > ${D}/${palmtopdir}/bin/${PN}/frodostart +#!/bin/sh +cd ${palmtopdir}/bin/${PN} +./Frodo +STARTER_EOF + chmod 0755 ${D}/${palmtopdir}/bin/${PN}/frodostart + ln -sf ${PN}/frodostart ${D}/${palmtopdir}/bin/Frodo + # conffiles + install -d ${D}/${sysconfdir} + install -m 644 ${WORKDIR}/frodorc ${D}/${sysconfdir}/frodorc +} + +FILES_${PN} = "${palmtopdir} ${sysconfdir}" + +#FIXME: Add postinst which copies /etc/frodorc into $HOME/.frodorc diff --git a/frodo/frodo_4.2.oe b/frodo/frodo_4.2.oe index ca82fd1206..e7a2d4db13 100644 --- a/frodo/frodo_4.2.oe +++ b/frodo/frodo_4.2.oe @@ -1,5 +1,5 @@ DESCRIPTION = "C64 Emulator based on SDL" -SECTION = "games" +SECTION = "opie/utils" PRIORITY = "optional" DEPENDS = "libsdl-qpe" CVSDATE = "20040801" diff --git a/gammu/gammu_0.98.9.oe b/gammu/gammu_0.98.9.oe index 7bc613a9da..60265a9824 100644 --- a/gammu/gammu_0.98.9.oe +++ b/gammu/gammu_0.98.9.oe @@ -3,7 +3,7 @@ LICENSE = "GPL" HOMEPAGE = "http://mwiacek.com/gsm/soft/gammu.html" AUTHOR = "Marcin Wiacek <marcin@mwiacek.com>" MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>" -SECTION = "base" +SECTION = "console/network" SRC_URI = "http://www.mwiacek.com/zips/gsm/gammu/test/gammu-${PV}.tar.gz \ file://ldflags.patch;patch=1 \ diff --git a/gcc-csl/gcc-csl_2004-q1a.oe b/gcc-csl/gcc-csl_2004-q1a.oe index 7c6c83d93d..b179975816 100644 --- a/gcc-csl/gcc-csl_2004-q1a.oe +++ b/gcc-csl/gcc-csl_2004-q1a.oe @@ -1,4 +1,4 @@ -SECTION = "base" +SECTION = "devel" inherit autotools DESCRIPTION = "The GNU cc and gcc C compilers." diff --git a/gdb/gdb-cross_6.1.oe b/gdb/gdb-cross_6.1.oe index 526f095279..54558656ab 100644 --- a/gdb/gdb-cross_6.1.oe +++ b/gdb/gdb-cross_6.1.oe @@ -1,5 +1,5 @@ DESCRIPTION = "gdb - GNU debugger" -SECTION = "base" +SECTION = "devel" PRIORITY = "optional" MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" DEPENDS = "ncurses-native" diff --git a/gdb/gdb-cross_6.2.oe b/gdb/gdb-cross_6.2.oe index e69de29bb2..54558656ab 100644 --- a/gdb/gdb-cross_6.2.oe +++ b/gdb/gdb-cross_6.2.oe @@ -0,0 +1,35 @@ +DESCRIPTION = "gdb - GNU debugger" +SECTION = "devel" +PRIORITY = "optional" +MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" +DEPENDS = "ncurses-native" + +inherit autotools sdk + +S = "${WORKDIR}/gdb-${PV}" +SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ + file://sim-install.patch;patch=1" + +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/gdb-${PV}" + +export CC_FOR_BUILD = "${BUILD_CC}" +export CXX_FOR_BUILD = "${BUILD_CXX}" +export CPP_FOR_BUILD = "${BUILD_CPP}" +export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" +export CXXFLAGS_FOR_BUILD = "${BUILD_CXXFLAGS}" +export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" + +EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils' LDFLAGS='${BUILD_LDFLAGS}'" + +EXTRA_OECONF = "--with-curses --with-readline" + +do_configure () { +# override this function to avoid the autoconf/automake/aclocal/autoheader +# calls for now + gnu-configize + oe_runconf +} + +do_stage() { + : +} diff --git a/gnome/gconf_2.6.1.oe b/gnome/gconf_2.6.1.oe index 6c13efc9aa..5e950668a4 100644 --- a/gnome/gconf_2.6.1.oe +++ b/gnome/gconf_2.6.1.oe @@ -1,4 +1,4 @@ -SECTION = "gnome/base" +SECTION = "x11/gnome" DESCRIPTION = "GNOME configuration database system" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/GConf/2.6/GConf-${PV}.tar.bz2 \ file://backends.patch;patch=1" diff --git a/gnome/gnome-common_2.4.0.oe b/gnome/gnome-common_2.4.0.oe index 6ad7efa577..8d74dfc47b 100644 --- a/gnome/gnome-common_2.4.0.oe +++ b/gnome/gnome-common_2.4.0.oe @@ -1,4 +1,4 @@ -SECTION = "x11/base" +SECTION = "x11/gnome" PR = "r0" DESCRIPTION = "Common macros for building GNOME applications" inherit gnome diff --git a/gnome/gnome-desktop_2.7.90.oe b/gnome/gnome-desktop_2.7.90.oe index 5b8562a9a5..cb597645e5 100644 --- a/gnome/gnome-desktop_2.7.90.oe +++ b/gnome/gnome-desktop_2.7.90.oe @@ -1,4 +1,4 @@ -SECTION = "x11/libs" +SECTION = "x11/gnome" PR = "r0" DESCRIPTION = "GNOME library for reading .desktop files" inherit gnome diff --git a/gnome/gnome-games_2.6.1.oe b/gnome/gnome-games_2.6.1.oe index e1d5529416..f3448fc54f 100644 --- a/gnome/gnome-games_2.6.1.oe +++ b/gnome/gnome-games_2.6.1.oe @@ -1,4 +1,4 @@ -SECTION = "x11/games" +SECTION = "x11/gnome" MAINTAINER = "Phil Blundell <pb@handhelds.org>" DEPENDS = "guile gtk+ libgnome libgnomeui librsvg gnome-vfs gconf libglade gnome-common" PR = "r2" diff --git a/gnome/gnome-icon-theme_1.3.3.oe b/gnome/gnome-icon-theme_1.3.3.oe index ebe1fb387f..7688d6fbd3 100644 --- a/gnome/gnome-icon-theme_1.3.3.oe +++ b/gnome/gnome-icon-theme_1.3.3.oe @@ -1,4 +1,4 @@ -SECTION = "x11" +SECTION = "x11/gnome" SRC_URI = "${GNOME_MIRROR}/${PN}/1.3/${PN}-${PV}.tar.bz2" FILES_${PN} += "${datadir}/icons" diff --git a/gnome/gnome-keyring_0.2.1.oe b/gnome/gnome-keyring_0.2.1.oe index f6232ed855..6f672e2c2c 100644 --- a/gnome/gnome-keyring_0.2.1.oe +++ b/gnome/gnome-keyring_0.2.1.oe @@ -1,4 +1,4 @@ -SECTION = "x11/utils" +SECTION = "x11/gnome" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/0.2/${PN}-${PV}.tar.bz2" inherit autotools libtool pkgconfig diff --git a/gnome/gnome-mime-data_2.4.1.oe b/gnome/gnome-mime-data_2.4.1.oe index 81edcfa1e0..5775919fd6 100644 --- a/gnome/gnome-mime-data_2.4.1.oe +++ b/gnome/gnome-mime-data_2.4.1.oe @@ -1,2 +1,2 @@ -SECTION = "x11/base" +SECTION = "x11/gnome" inherit gnome diff --git a/gnome/gnome-vfs-extras_0.99.13.oe b/gnome/gnome-vfs-extras_0.99.13.oe index f1d33654a7..56f5233322 100644 --- a/gnome/gnome-vfs-extras_0.99.13.oe +++ b/gnome/gnome-vfs-extras_0.99.13.oe @@ -1,4 +1,4 @@ -SECTION = "x11/base" +SECTION = "x11/gnome" PR = "r1" inherit gnome diff --git a/gnome/gnome-vfs_2.6.0.oe b/gnome/gnome-vfs_2.6.0.oe index ca477fa2b1..39974c09b0 100644 --- a/gnome/gnome-vfs_2.6.0.oe +++ b/gnome/gnome-vfs_2.6.0.oe @@ -1,4 +1,4 @@ -SECTION = "x11/base" +SECTION = "x11/gnome" PR = "r3" inherit gnome diff --git a/gnome/gnome-vfs_2.6.2.oe b/gnome/gnome-vfs_2.6.2.oe index d6ef32ce59..e11915351c 100644 --- a/gnome/gnome-vfs_2.6.2.oe +++ b/gnome/gnome-vfs_2.6.2.oe @@ -1,4 +1,4 @@ -SECTION = "x11/base" +SECTION = "x11/gnome" PR = "r4" inherit gnome diff --git a/gnome/libart-lgpl_2.3.16.oe b/gnome/libart-lgpl_2.3.16.oe index 9e5770f68c..6e611d5a3d 100644 --- a/gnome/libart-lgpl_2.3.16.oe +++ b/gnome/libart-lgpl_2.3.16.oe @@ -1,4 +1,4 @@ -SECTION = "libs" +SECTION = "x11/gnome" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \ file://${HOST_SYS}/art_config.h \ file://Makefile.am.patch;patch=1" diff --git a/gnome/libbonobo_2.6.0.oe b/gnome/libbonobo_2.6.0.oe index d8086d6c3f..0c713b2d98 100644 --- a/gnome/libbonobo_2.6.0.oe +++ b/gnome/libbonobo_2.6.0.oe @@ -1,4 +1,4 @@ -SECTION = "gnome/base" +SECTION = "x11/gnome" DESCRIPTION = "Bonobo CORBA interfaces library" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libbonobo/2.6/libbonobo-${PV}.tar.bz2 \ file://gtk-doc.m4 \ diff --git a/gnome/libbonobo_2.6.2.oe b/gnome/libbonobo_2.6.2.oe index f58950d655..4092908de9 100644 --- a/gnome/libbonobo_2.6.2.oe +++ b/gnome/libbonobo_2.6.2.oe @@ -1,5 +1,5 @@ PR = "r1" -SECTION = "gnome/base" +SECTION = "x11/gnome/libs" DESCRIPTION = "Bonobo CORBA interfaces library" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libbonobo/2.6/libbonobo-${PV}.tar.bz2 \ file://gtk-doc.m4 \ diff --git a/gnome/libbonoboui_2.6.1.oe b/gnome/libbonoboui_2.6.1.oe index 6fb6cb8876..0a21d3de87 100644 --- a/gnome/libbonoboui_2.6.1.oe +++ b/gnome/libbonoboui_2.6.1.oe @@ -1,4 +1,4 @@ -SECTION = "x11/libs" +SECTION = "x11/gnome/libs" PR = "r1" inherit gnome pkgconfig diff --git a/gnome/libgnome_2.6.1.1.oe b/gnome/libgnome_2.6.1.1.oe index b1518a4797..8e34b6682b 100644 --- a/gnome/libgnome_2.6.1.1.oe +++ b/gnome/libgnome_2.6.1.1.oe @@ -1,4 +1,4 @@ -SECTION = "x11/libs" +SECTION = "x11/gnome/libs" PR = "r1" inherit gnome diff --git a/gnome/libgnomecanvas_2.6.1.1.oe b/gnome/libgnomecanvas_2.6.1.1.oe index 0d0d879994..c3a8241259 100644 --- a/gnome/libgnomecanvas_2.6.1.1.oe +++ b/ |
