diff options
| author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-09 21:36:58 +0000 |
|---|---|---|
| committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-09 21:36:58 +0000 |
| commit | 68c1896202e12376543b4bfafe48fc053f8d38b9 (patch) | |
| tree | 32e23849e500b26b4c3c523ae30f53e4b5734822 /packages | |
| parent | f13935215c790b58ba20b0bd570802288bf3f0b2 (diff) | |
| parent | 09d44c043f33b47b7d577f51a62bd414ea2e94aa (diff) | |
merge of '6cbf0719a581ec7faecefbc05b3c17d8b1b72d52'
and '7d51500e1f981f891b494ca3d396c965faecc9e0'
Diffstat (limited to 'packages')
80 files changed, 3796 insertions, 1241 deletions
diff --git a/packages/base-files/base-files_3.0.14.bb b/packages/base-files/base-files_3.0.14.bb index ac12f5e08a..0d3a411095 100644 --- a/packages/base-files/base-files_3.0.14.bb +++ b/packages/base-files/base-files_3.0.14.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Miscellaneous files for the base system." SECTION = "base" PRIORITY = "required" -PR = "r71" +PR = "r72" LICENSE = "GPL" SRC_URI = " \ @@ -24,8 +24,6 @@ SRC_URI = " \ file://licenses/Artistic " S = "${WORKDIR}" -SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" - docdir_append = "/${P}" dirs1777 = "/tmp ${localstatedir}/volatile/lock ${localstatedir}/volatile/tmp" dirs2775 = "/home ${prefix}/src ${localstatedir}/local" @@ -152,6 +150,8 @@ FILES_${PN}-doc = "${docdir} ${datadir}/common-licenses" PACKAGE_ARCH_mnci = "mnci" PACKAGE_ARCH_rt3000 = "rt3000" +PACKAGE_ARCH = "${MACHINE_ARCH}" + # Unslung distribution specific packaging PACKAGES_unslung = "${PN}-unslung" diff --git a/packages/e17/exhibit_cvs.bb b/packages/e17/exhibit_cvs.bb index 4433287353..ccf93ded9f 100644 --- a/packages/e17/exhibit_cvs.bb +++ b/packages/e17/exhibit_cvs.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Exhibit is the ETK picture viewer" -DEPENDS = "evas ecore edje etk epsilon engrave" +DEPENDS = "evas ecore epsilon edje eet etk efreet" LICENSE = "MIT" PV = "0.0.0+cvs${SRCDATE}" PR = "r0" diff --git a/packages/ezx/ezxd_svn.bb b/packages/ezx/ezxd_svn.bb index 3a052174b2..9aed2a4465 100644 --- a/packages/ezx/ezxd_svn.bb +++ b/packages/ezx/ezxd_svn.bb @@ -15,9 +15,6 @@ inherit update-rc.d INITSCRIPT_NAME = "ezxd" INITSCRIPT_PARAMS = "start 00 S ." -RREPLACES = "opentapi" - - S = "${WORKDIR}/${PN}" do_install() { @@ -26,7 +23,7 @@ do_install() { install -d ${D}${libdir}/ezxd install -m 755 *.so ${D}${libdir}/ezxd - + install -d ${D}${sysconfdir}/init.d install -m 0600 ezxd.conf ${D}${sysconfdir}/ install -m 0755 ${WORKDIR}/ezxd.init ${D}${sysconfdir}/init.d/ezxd diff --git a/packages/ezx/opentapi/opentapi.init b/packages/ezx/opentapi/opentapi.init deleted file mode 100644 index 0b41418e00..0000000000 --- a/packages/ezx/opentapi/opentapi.init +++ /dev/null @@ -1,84 +0,0 @@ -#! /bin/sh -# -*- coding: utf-8 -*- -# init.d script for opentapi - -set -e - -DAEMON=/usr/bin/opentapi -NAME=opentapi -PIDDIR=/var/run/opentapi -PIDFILE=$PIDDIR/pid -DESC="OpenTAPI server" - -test -x $DAEMON || exit 0 - -# Source defaults file; edit that file to configure this script. -ENABLED=1 -PARAMS="" -if [ -e /etc/default/opentapi ]; then - . /etc/default/opentapi -fi - -test "$ENABLED" != "0" || exit 0 - -start_it_up() -{ - if [ ! -d $PIDDIR ]; then - mkdir -p $PIDDIR - fi - if [ -e $PIDFILE ]; then - PIDDIR=/proc/$(cat $PIDFILE) - if [ -d ${PIDDIR} -a "$(readlink -f ${PIDDIR}/exe)" = "${DAEMON}" ]; then - echo "$DESC already started; not starting." - else - echo "Removing stale PID file $PIDFILE." - rm -f $PIDFILE - fi - fi - - echo -n "Starting $DESC: " - start-stop-daemon --start --background --quiet --pidfile $PIDFILE \ - --exec $DAEMON -- --system $PARAMS - # We need to sleep here because opening the mux devices takes some time - sleep 15 - echo "$NAME." - if [ -d $EVENTDIR ]; then - run-parts --arg=start $EVENTDIR - fi -} - -shut_it_down() -{ - if [ -d $EVENTDIR ]; then - run-parts --reverse --arg=stop $EVENTDIR - fi - echo -n "Stopping $DESC: " - start-stop-daemon --stop --quiet --pidfile $PIDFILE - - # We no longer include these arguments so that start-stop-daemon - # can do its job even given that we may have been upgraded. - # We rely on the pidfile being sanely managed - # --exec $DAEMON -- --system $PARAMS - echo "$NAME." - rm -f $PIDFILE -} - -case "$1" in - start) - start_it_up - ;; - stop) - shut_it_down - ;; - restart|force-reload) - shut_it_down - sleep 1 - start_it_up - ;; - *) - echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/packages/ezx/opentapi_svn.bb b/packages/ezx/opentapi_svn.bb deleted file mode 100644 index 7426dfe853..0000000000 --- a/packages/ezx/opentapi_svn.bb +++ /dev/null @@ -1,28 +0,0 @@ -DESCRIPTION = "Open implementation of motorola's tapisrv" -LICENSE = "GPLv2" -SECTION = "devel" -AUTHOR = "Daniel Willmann" - -PV = "0.0+svnr${SRCREV}" -PR = "r3" - -SRC_URI = "svn://svn.openezx.org/trunk/src/userspace/;module=opentapi;proto=http \ - file://opentapi.init \ - " - -inherit update-rc.d - -INITSCRIPT_NAME = "opentapi" -INITSCRIPT_PARAMS = "start 00 S ." - - -S = "${WORKDIR}/${PN}" - -do_install() { - install -d ${D}${bindir} - install -m 755 opentapi ${D}${bindir} - - install -d ${D}${sysconfdir}/init.d - install -m 0755 ${WORKDIR}/opentapi.init ${D}${sysconfdir}/init.d/opentapi -} - diff --git a/packages/ezx/opentapi/.mtn2git_empty b/packages/fxload/.mtn2git_empty index e69de29bb2..e69de29bb2 100644 --- a/packages/ezx/opentapi/.mtn2git_empty +++ b/packages/fxload/.mtn2git_empty diff --git a/packages/linux/linux-ezx-2.6.21/e2/.mtn2git_empty b/packages/fxload/files/.mtn2git_empty index e69de29bb2..e69de29bb2 100644 --- a/packages/linux/linux-ezx-2.6.21/e2/.mtn2git_empty +++ b/packages/fxload/files/.mtn2git_empty diff --git a/packages/fxload/files/usbheader.patch b/packages/fxload/files/usbheader.patch new file mode 100644 index 0000000000..db205e9ab5 --- /dev/null +++ b/packages/fxload/files/usbheader.patch @@ -0,0 +1,15 @@ +--- fxload-0.0.20020411.orig/ezusb.c ++++ fxload-0.0.20020411/ezusb.c +@@ -29,7 +29,11 @@ + # include <sys/ioctl.h> + + # include <linux/version.h> +-# include <linux/usb.h> ++#if (LINUX_VERSION_CODE >= 132630) ++# include <linux/usb/ch9.h> ++#else ++# include <linux/usb_ch9.h> ++#endif + # include <linux/usbdevice_fs.h> + + # include "ezusb.h" diff --git a/packages/fxload/fxload_0.0.20020411.bb b/packages/fxload/fxload_0.0.20020411.bb new file mode 100644 index 0000000000..2bebded964 --- /dev/null +++ b/packages/fxload/fxload_0.0.20020411.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "fxload loads firmware into the ezusb chips" +AUTHOR = "Stephen Williams, David Brownell" +HOMEPAGE = "http://linux-hotplug.sourceforge.net/" +SECTION = "admin" +LICENSE = "GPL" +DEPENDS = "linux-libc-headers" +PR = "r1" + +SRC_URI = "http://dfn.dl.sourceforge.net/sourceforge/linux-hotplug/fxload-2002_04_11.tar.gz \ + file://usbheader.patch;patch=1" + +S = "${WORKDIR}/fxload-2002_04_11" + +FILES_${PN} = "${base_sbindir}/fxload" + +do_install() { + mkdir -p ${D}/sbin/ + cp ${S}/fxload ${D}/sbin/fxload +} diff --git a/packages/gcc/gcc-4.2.1/204-uclibc-locale-wchar_fix.patch b/packages/gcc/gcc-4.2.1/204-uclibc-locale-wchar_fix.patch new file mode 100644 index 0000000000..160ab35bb3 --- /dev/null +++ b/packages/gcc/gcc-4.2.1/204-uclibc-locale-wchar_fix.patch @@ -0,0 +1,48 @@ +--- gcc/libstdc++-v3/config/locale/uclibc/monetary_members.cc.uclibc200_wchar~ 2006-03-10 15:32:37 +0100 ++++ gcc/libstdc++-v3/config/locale/uclibc/monetary_members.cc 2006-03-10 15:37:27 +0100 +@@ -401,7 +401,7 @@ + # ifdef __UCLIBC_HAS_XLOCALE__ + _M_data->_M_decimal_point = __cloc->decimal_point_wc; + _M_data->_M_thousands_sep = __cloc->thousands_sep_wc; +-# else ++# elif defined __UCLIBC_HAS_LOCALE__ + _M_data->_M_decimal_point = __global_locale->decimal_point_wc; + _M_data->_M_thousands_sep = __global_locale->thousands_sep_wc; + # endif +@@ -556,7 +556,7 @@ + # ifdef __UCLIBC_HAS_XLOCALE__ + _M_data->_M_decimal_point = __cloc->decimal_point_wc; + _M_data->_M_thousands_sep = __cloc->thousands_sep_wc; +-# else ++# elif defined __UCLIBC_HAS_LOCALE__ + _M_data->_M_decimal_point = __global_locale->decimal_point_wc; + _M_data->_M_thousands_sep = __global_locale->thousands_sep_wc; + # endif +--- gcc/libstdc++-v3/config/locale/uclibc/numeric_members.cc.uclibc200_wchar~ 2006-03-10 15:32:37 +0100 ++++ gcc/libstdc++-v3/config/locale/uclibc/numeric_members.cc 2006-03-10 15:37:27 +0100 +@@ -127,12 +127,25 @@ + { + // Named locale. + // NB: In the GNU model wchar_t is always 32 bit wide. ++#ifdef __UCLIBC_MJN3_ONLY__ ++#warning fix this... should be numeric ++#endif ++#ifdef __UCLIBC__ ++# ifdef __UCLIBC_HAS_XLOCALE__ ++ _M_data->_M_decimal_point = __cloc->decimal_point_wc; ++ _M_data->_M_thousands_sep = __cloc->thousands_sep_wc; ++# elif defined __UCLIBC_HAS_LOCALE__ ++ _M_data->_M_decimal_point = __global_locale->decimal_point_wc; ++ _M_data->_M_thousands_sep = __global_locale->thousands_sep_wc; ++# endif ++#else + union { char *__s; wchar_t __w; } __u; + __u.__s = __nl_langinfo_l(_NL_NUMERIC_DECIMAL_POINT_WC, __cloc); + _M_data->_M_decimal_point = __u.__w; + + __u.__s = __nl_langinfo_l(_NL_NUMERIC_THOUSANDS_SEP_WC, __cloc); + _M_data->_M_thousands_sep = __u.__w; ++#endif + + if (_M_data->_M_thousands_sep == L'\0') + _M_data->_M_grouping = ""; diff --git a/packages/gcc/gcc-4.2.1/205-uclibc-locale-update.patch b/packages/gcc/gcc-4.2.1/205-uclibc-locale-update.patch new file mode 100644 index 0000000000..86b2844554 --- /dev/null +++ b/packages/gcc/gcc-4.2.1/205-uclibc-locale-update.patch @@ -0,0 +1,347 @@ +--- gcc/libstdc++-v3/config/locale/uclibc/c_locale.cc.uclibc200_update~ 2006-03-10 15:32:37 +0100 ++++ gcc/libstdc++-v3/config/locale/uclibc/c_locale.cc 2006-03-10 15:39:14 +0100 +@@ -46,16 +47,13 @@ + __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, + const __c_locale& __cloc) + { +- if (!(__err & ios_base::failbit)) +- { +- char* __sanity; +- errno = 0; < |
