diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/chibitracker/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/chibitracker/chibitracker_svn.bb | 13 | ||||
-rw-r--r-- | packages/gizmod/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gizmod/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gizmod/files/disable-bmp.patch | 105 | ||||
-rw-r--r-- | packages/gizmod/files/disable-xmms.patch | 113 | ||||
-rw-r--r-- | packages/gizmod/files/fix-python-configure.patch | 17 | ||||
-rw-r--r-- | packages/gizmod/gizmod_2.3.bb | 24 | ||||
-rw-r--r-- | packages/linux/linux-ezx/defconfig-a780 | 27 | ||||
-rw-r--r-- | packages/linux/linux-ezx_2.6.16.13.bb | 6 |
10 files changed, 291 insertions, 14 deletions
diff --git a/packages/chibitracker/.mtn2git_empty b/packages/chibitracker/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/chibitracker/.mtn2git_empty diff --git a/packages/chibitracker/chibitracker_svn.bb b/packages/chibitracker/chibitracker_svn.bb new file mode 100644 index 0000000000..ec7d9284a2 --- /dev/null +++ b/packages/chibitracker/chibitracker_svn.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Chibitracker is an impulse tracker clone based on SDL" +LICENSE = "GPL" +HOMEPAGE = "http://www.chibitracker.com" +SECTION = "multimedia" +AUTHOR = "Juan Linietsky <reduzio@gmail.com>" +DEPENDS = "virtual/libsdl libsdl-mixer" +PV = "0.9.9+svn${SRCDATE}" + +SRC_URI = "svn://svn.berlios.de/chibitracker;module=trunk" +S = "${WORKDIR}/trunk" + +inherit scons + diff --git a/packages/gizmod/.mtn2git_empty b/packages/gizmod/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gizmod/.mtn2git_empty diff --git a/packages/gizmod/files/.mtn2git_empty b/packages/gizmod/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gizmod/files/.mtn2git_empty diff --git a/packages/gizmod/files/disable-bmp.patch b/packages/gizmod/files/disable-bmp.patch new file mode 100644 index 0000000000..89dfad3446 --- /dev/null +++ b/packages/gizmod/files/disable-bmp.patch @@ -0,0 +1,105 @@ +Index: gizmod-2.3/configure.ac +=================================================================== +--- gizmod-2.3.orig/configure.ac ++++ gizmod-2.3/configure.ac +@@ -319,76 +319,6 @@ fi + + ########################################################################### + ## +-## Check whether to build BMP plugin +-## +- +-################## +-## enabled? +-######## +- +-AC_MSG_CHECKING(Whether or not to build BMP plugin) +-AC_ARG_ENABLE(bmp, +- [ --enable-bmp build BMP plugin <default = no>], +- [enable_bmp="$enableval"], enable_bmp=no) +-AC_MSG_RESULT($enable_bmp) +- +-AM_CONDITIONAL(BUILD_EXTERNALPLUGIN_BMP, test x$enable_bmp = xyes) +-AM_CONDITIONAL(BUILD_PLUGIN_BMPCONTROL, test x$enable_bmp = xyes) +- +-################## +-## can we build it if it's enabled? +-######## +- +-if test "$enable_bmp" == "yes"; then +- +-BEEP_CFLAGS="" +-BEEP_LIBS="" +- +-#check stuff +-AM_PATH_GLIB_2_0(2.4.0, , +- AC_MSG_ERROR([GTK+ >= 2.4.0 not installed - required for BMP plugin])) +-AM_PATH_GTK_2_0(2.4.0, , +- AC_MSG_ERROR([GTK+ >= 2.4.0 not installed - required for BMP plugin])) +- +-dnl check for beep +-PKG_CHECK_MODULES(BEEP, [ bmp >= 0.9.7], , +- AC_MSG_ERROR("You need the BEEP development files to build the BEEP plugin!")) +- +-BEEP_PLUGIN_DIR="`$PKG_CONFIG --variable=output_plugin_dir bmp`" +-BEEP_INPUT_PLUGIN_DIR="`$PKG_CONFIG --variable=input_plugin_dir bmp`" +-BEEP_OUTPUT_PLUGIN_DIR="`$PKG_CONFIG --variable=output_plugin_dir bmp`" +-BEEP_GENERAL_PLUGIN_DIR="`$PKG_CONFIG --variable=general_plugin_dir bmp`" +-BEEP_VISUALIZATION_PLUGIN_DIR="`$PKG_CONFIG --variable=visualization_plugin_dir bmp`" +-BEEP_EFFECT_PLUGIN_DIR="`$PKG_CONFIG --variable=effect_plugin_dir bmp`" +-BEEP_DATA_DIR="`$PKG_CONFIG --variable=data_dir bmp`" +- +-AC_SUBST(BEEP_PLUGIN_DIR) +-AC_SUBST(BEEP_INPUT_PLUGIN_DIR) +-AC_SUBST(BEEP_OUTPUT_PLUGIN_DIR) +-AC_SUBST(BEEP_GENERAL_PLUGIN_DIR) +-AC_SUBST(BEEP_VISUALIZATION_PLUGIN_DIR) +-AC_SUBST(BEEP_EFFECT_PLUGIN_DIR) +-AC_SUBST(BEEP_DATA_DIR) +- +-dnl make BEEP_DATA_DIR a variable in config.h +-AH_TEMPLATE(BEEP_DATA_DIR, "Path to bmp-touch.config") +-AC_DEFINE_UNQUOTED(BEEP_DATA_DIR, "$BEEP_DATA_DIR") +- +-CPPFLAGS="$CPPFLAGS $BEEP_CFLAGS" +- +-AC_CHECK_HEADER(bmp/beepctrl.h, [ +- AC_DEFINE(HAVE_BEEPCTRL_H, 1, [Has bmp/beepctrl.h]) +- ], [ +- AC_MSG_ERROR([Cannot find beepctrl.h!]) +- ]) +- +-AC_SUBST(BEEP_CFLAGS) +-AC_SUBST(BEEP_LIBS) +- +-fi +- +-########################################################################### +-## + ## Check whether to build Sound Visualization plugin + ## + +@@ -633,9 +563,7 @@ AC_CONFIG_FILES([ + plugins/soundVisualization/Makefile + plugins/cpuUsage/Makefile + plugins/x11/Makefile +- plugins/bmpControl/Makefile + plugins/externalPlugins/Makefile +- plugins/externalPlugins/bmp/Makefile + plugins/lirc/Makefile + ]) + AC_OUTPUT +Index: gizmod-2.3/plugins/Makefile.am +=================================================================== +--- gizmod-2.3.orig/plugins/Makefile.am ++++ gizmod-2.3/plugins/Makefile.am +@@ -1 +1 @@ +-SUBDIRS=scriptingPlugins powermate alsaMixer xosd generic externalPlugins soundVisualization cpuUsage x11 bmpControl lirc ++SUBDIRS=scriptingPlugins powermate alsaMixer xosd generic externalPlugins soundVisualization cpuUsage x11 lirc +Index: gizmod-2.3/plugins/externalPlugins/Makefile.am +=================================================================== +--- gizmod-2.3.orig/plugins/externalPlugins/Makefile.am ++++ gizmod-2.3/plugins/externalPlugins/Makefile.am +@@ -1 +1 @@ +-SUBDIRS=bmp ++SUBDIRS= diff --git a/packages/gizmod/files/disable-xmms.patch b/packages/gizmod/files/disable-xmms.patch new file mode 100644 index 0000000000..e8aea12b4c --- /dev/null +++ b/packages/gizmod/files/disable-xmms.patch @@ -0,0 +1,113 @@ +Index: gizmod-2.3/configure.ac +=================================================================== +--- gizmod-2.3.orig/configure.ac ++++ gizmod-2.3/configure.ac +@@ -393,60 +393,6 @@ fi + + ########################################################################### + ## +-## Check whether to build XMMS plugin +-## +- +-################## +-## enabled? +-######## +- +-AC_MSG_CHECKING(Whether or not to build XMMS plugin) +-AC_ARG_ENABLE(xmms, +- [ --enable-xmms build XMMS plugin <default = yes>], +- [enable_xmms="$enableval"], enable_xmms=yes) +-AC_MSG_RESULT($enable_xmms) +- +-AM_CONDITIONAL(BUILD_EXTERNALPLUGIN_XMMS, test x$enable_xmms = xyes) +-AM_CONDITIONAL(BUILD_PLUGIN_XMMSCONTROL, test x$enable_xmms = xyes) +- +-################## +-## can we build it if it's enabled? +-######## +- +-if test "$enable_xmms" == "yes"; then +- +-XMMS_CFLAGS="" +-XMMS_LIBS="" +- +-#check stuff +- +-AM_PATH_XMMS(1.2.4, +- XMMS_CFLAGS=`xmms-config --cflags` +- CPPFLAGS="$CPPFLAGS $XMMS_CFLAGS" +- XMMS_LIBS=`xmms-config --libs` +- , +- AC_MSG_ERROR([You must have the XMMS development headers installed to build the XMMS plugin!]) +-) +- +-AC_CHECK_HEADER(xmms/xmmsctrl.h, [ +- AC_DEFINE(HAVE_XMMSCTRL_H, 1, [Has xmms/xmmsctrl.h]) +- ], [ +- AC_MSG_ERROR([Cannot find xmmsctrl.h!]) +- ]) +- +-AC_CHECK_HEADER(xmms/plugin.h, [ +- AC_DEFINE(HAVE_XMMSPLUGIN_H, 1, [Has xmms/xmmsplugin.h]) +- ], [ +- AC_MSG_ERROR([Cannot find xmms/plugin.h!]) +- ]) +- +-AC_SUBST(XMMS_CFLAGS) +-AC_SUBST(XMMS_LIBS) +- +-fi +- +-########################################################################### +-## + ## Check whether to build Sound Visualization plugin + ## + +@@ -691,10 +637,8 @@ AC_CONFIG_FILES([ + plugins/soundVisualization/Makefile + plugins/cpuUsage/Makefile + plugins/x11/Makefile +- plugins/xmmsControl/Makefile + plugins/bmpControl/Makefile + plugins/externalPlugins/Makefile +- plugins/externalPlugins/xmms/Makefile + plugins/externalPlugins/bmp/Makefile + plugins/lirc/Makefile + ]) +@@ -774,22 +718,10 @@ else + echo " BMP Control plugin: Disabled" + fi + +-if test "$enable_xmms" == "yes"; then +- echo " XMMS Control plugin: Enabled" +-else +- echo " XMMS Control plugin: Disabled" +-fi +- + if test "$enable_bmp" == "yes"; then + echo " BMP Visualization plugin: Enabled" + else + echo " BMP Visualization plugin: Disabled" + fi + +-if test "$enable_xmms" == "yes"; then +- echo " XMMS Visualization plugin: Enabled" +-else +- echo " XMMS Visualization plugin: Disabled" +-fi +- + echo +Index: gizmod-2.3/plugins/Makefile.am +=================================================================== +--- gizmod-2.3.orig/plugins/Makefile.am ++++ gizmod-2.3/plugins/Makefile.am +@@ -1 +1 @@ +-SUBDIRS=scriptingPlugins powermate alsaMixer xosd generic externalPlugins soundVisualization cpuUsage x11 xmmsControl bmpControl lirc ++SUBDIRS=scriptingPlugins powermate alsaMixer xosd generic externalPlugins soundVisualization cpuUsage x11 bmpControl lirc +Index: gizmod-2.3/plugins/externalPlugins/Makefile.am +=================================================================== +--- gizmod-2.3.orig/plugins/externalPlugins/Makefile.am ++++ gizmod-2.3/plugins/externalPlugins/Makefile.am +@@ -1 +1 @@ +-SUBDIRS=xmms bmp ++SUBDIRS=bmp diff --git a/packages/gizmod/files/fix-python-configure.patch b/packages/gizmod/files/fix-python-configure.patch new file mode 100644 index 0000000000..9b48c9790f --- /dev/null +++ b/packages/gizmod/files/fix-python-configure.patch @@ -0,0 +1,17 @@ +Index: gizmod-2.3/configure.ac +=================================================================== +--- gizmod-2.3.orig/configure.ac ++++ gizmod-2.3/configure.ac +@@ -162,11 +162,7 @@ CFLAGS="$PYTHON_INC $CFLAGS" + # AC_MSG_ERROR([Cannot find python.h!]) + # ]) + +-AC_CHECK_FILE(${py_prefix}/include/python${py_ver}/Python.h, [ +- AC_DEFINE(HAVE_PYTHON_H, 1, [Has Python.h]) +- ], [ +- AC_MSG_ERROR([Cannot find Python.h!]) +- ]) ++AC_DEFINE(HAVE_PYTHON_H, 1, [Has Python.h]) + + CFLAGS="$OLD_CFLAGS" + diff --git a/packages/gizmod/gizmod_2.3.bb b/packages/gizmod/gizmod_2.3.bb new file mode 100644 index 0000000000..c00293b64c --- /dev/null +++ b/packages/gizmod/gizmod_2.3.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "Gizmo Daemon" +HOMEPAGE = "http://gizmod.sourceforge.net" +LICENSE = "GPLv2" +MAINTAINER = "Justin Patrin <papercrane@reversefold.com>" +SECTION = "console/multimedia" +DEPENDS = "python virtual/libx11 xf86vidmodeproto" +SRC_URI = "${SOURCEFORGE_MIRROR}/gizmod/gizmod-${PV}.tar.bz2 \ + file://disable-xmms.patch;patch=1 \ + file://fix-python-configure.patch;patch=1 \ + file://disable-bmp.patch;patch=1" + +PR = "r0" + +inherit autotools + +EXTRA_OECONF = "--disable-xmms --disable-bmp --disable-xosd" + +#do_configure_prepend() { +# sed -i 's/TARGET_SYS/${TARGET_SYS}/' ${S}/configure.ac +#} + +FILES_${PN} += "${datadir}/gizmo/scripts ${datadir}/gizmo/plugins/*.so ${datadir}/gizmo/plugins/*.so.*" +FILES_${PN}-dev += "${datadir}/gizmo/plugins/*.a ${datadir}/gizmo/plugins/*.la" +FILES_${PN}-dbg += "${datadir}/gizmo/plugins/.debug"
\ No newline at end of file diff --git a/packages/linux/linux-ezx/defconfig-a780 b/packages/linux/linux-ezx/defconfig-a780 index beb7a64cc1..1321bf7df6 100644 --- a/packages/linux/linux-ezx/defconfig-a780 +++ b/packages/linux/linux-ezx/defconfig-a780 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Linux kernel version: 2.6.16.13 -# Thu May 18 19:40:25 2006 +# Sun Jan 21 10:52:04 2007 # CONFIG_ARM=y CONFIG_MMU=y @@ -14,7 +14,6 @@ CONFIG_ARCH_MTD_XIP=y # CONFIG_EXPERIMENTAL=y CONFIG_BROKEN_ON_SMP=y -CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 # @@ -124,6 +123,8 @@ CONFIG_IWMMXT=y CONFIG_PXA_SPI=y CONFIG_PXA_EZX_PCAP=y CONFIG_PXA_EZX_PCAP_EMU=m +CONFIG_PXA_EZX_PCAP_EMU_USB=y +# CONFIG_PXA_EZX_PCAP_EMU_UART is not set # # Processor Type @@ -155,7 +156,8 @@ CONFIG_XSCALE_PMU=y # # CONFIG_PREEMPT is not set # CONFIG_NO_IDLE_HZ is not set -# CONFIG_AEABI is not set +CONFIG_AEABI=y +CONFIG_OABI_COMPAT=y # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y @@ -172,7 +174,7 @@ CONFIG_ALIGNMENT_TRAP=y # CONFIG_ZBOOT_ROM_TEXT=0x0 CONFIG_ZBOOT_ROM_BSS=0x0 -CONFIG_CMDLINE="mem=32M root=/dev/mmcblk0p1 rootfstype=ext3 rootdelay=1 ip=192.168.1.2:192.168.1.10:192.168.1.10:255.255.255.0:ezx:usb0:off console=ttyS2,115200n8 console=tty0" +CONFIG_CMDLINE="console=ttyS2,115200n8 console=tty1 noinitrd root=/dev/mmcblk0p1 rootfstype=ext3 rootdelay=5 ip=192.168.1.2:192.168.1.10:192.168.1.10:255.255.255.0:ezx:usb0:off debug mem=32M@0xA0000000 mem=16M@0xAC000000" # CONFIG_XIP_KERNEL is not set # @@ -192,7 +194,6 @@ CONFIG_FPE_NWFPE=y CONFIG_BINFMT_ELF=y # CONFIG_BINFMT_AOUT is not set # CONFIG_BINFMT_MISC is not set -# CONFIG_ARTHUR is not set # # Power management options @@ -737,7 +738,6 @@ CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set -# CONFIG_LEGACY_PTY_COUNT is not set # # IPMI @@ -765,6 +765,8 @@ CONFIG_SA1100_RTC=y # # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set +CONFIG_TS0710_MUX=y +CONFIG_TS0710_MUX_USB=y # # I2C support @@ -841,9 +843,10 @@ CONFIG_SPI_BITBANG=m # # Motorola EZX devices # -# CONFIG_KEYPAD_A780 is not set +CONFIG_KEYPAD_A780=y # CONFIG_KEYPAD_E680 is not set -# CONFIG_KEYLIGHT_A780 is not set +CONFIG_KEYLIGHT_A780=y +CONFIG_VIBRATOR_A780=y # CONFIG_FMRADIO_E680 is not set # @@ -856,7 +859,6 @@ CONFIG_SPI_BITBANG=m CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_E680 is not set CONFIG_LEDS_A780=y CONFIG_LEDS_TRIGGER_TIMER=y @@ -914,9 +916,10 @@ CONFIG_LOGO_LINUX_CLUT224=y CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_DEVICE=y -CONFIG_BACKLIGHT_EZX=y CONFIG_LCD_CLASS_DEVICE=m CONFIG_LCD_DEVICE=y +# CONFIG_BACKLIGHT_HP680 is not set +CONFIG_BACKLIGHT_EZX=y # # Sound @@ -928,7 +931,7 @@ CONFIG_LCD_DEVICE=y # CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y -CONFIG_USB=m +CONFIG_USB=y # CONFIG_USB_DEBUG is not set # @@ -944,7 +947,7 @@ CONFIG_USB=m # USB Host Controller Drivers # # CONFIG_USB_ISP116X_HCD is not set -CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_HCD=y # CONFIG_USB_OHCI_BIG_ENDIAN is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y # CONFIG_USB_SL811_HCD is not set diff --git a/packages/linux/linux-ezx_2.6.16.13.bb b/packages/linux/linux-ezx_2.6.16.13.bb index 5d13af9f83..6e6f4628dc 100644 --- a/packages/linux/linux-ezx_2.6.16.13.bb +++ b/packages/linux/linux-ezx_2.6.16.13.bb @@ -4,7 +4,7 @@ AUTHOR = "Harald Welte and the OpenEZX Team <openezx-devel@lists.openezx.org>" HOMEPAGE = "http://www.openezx.org" LICENSE = "GPL" DEPENDS += "quilt-native" -EZX = "ezx7" +EZX = "ezx8" PR = "${EZX}-r1" inherit kernel @@ -16,7 +16,9 @@ RPSRC = "http://www.rpsys.net/openzaurus/patches/archive" # source and patches # SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-2.6.16.tar.bz2 \ - http://people.openezx.org/stefan/patches/patches-2.6.16-2.6.16.13-ezx7.tar.bz2 \ + http://www.openezx.org/download/patches-2.6.16-2.6.16.13-${EZX}.tar.bz2 \ + \ + ${RPSRC}/xscale_cache_workaround-r1.patch;patch=1;status=merged \ \ file://sa1100-rtc-gcc4.diff;patch=1 \ file://pxa-serial-gcc4.diff;patch=1 \ |