diff options
author | Holger Freyther <zecke@selfish.org> | 2006-11-15 00:08:01 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-11-15 00:08:01 +0000 |
commit | 99a536b0501b9e5dc4883c3ca8861ef852566218 (patch) | |
tree | d4fe811d385d4903efaa02258c54d70b8aff684b | |
parent | 8eeeea5198e888833deafbfaa99724e72f519452 (diff) | |
parent | 11cc6e36d1b600e2cdfe786c352f2e178b1b9d97 (diff) |
merge of '7cf3b400cf166b89986056289fa50151e6511f08'
and 'cbaa08b3cff2b520cf8b1843f19eea0d9539c2f4'
-rw-r--r-- | packages/gtk+/gtk+-2.10.6/pangoxft2.10.6.diff | 13 | ||||
-rw-r--r-- | packages/gtk+/gtk+_2.10.6.bb | 2 | ||||
-rw-r--r-- | packages/linux/mx31ads-kernel_2.6.19rc5.bb | 2 | ||||
-rw-r--r-- | packages/python/python-sword_1.5.9.bb | 31 | ||||
-rw-r--r-- | packages/sword/sword_1.5.9.bb | 27 |
5 files changed, 73 insertions, 2 deletions
diff --git a/packages/gtk+/gtk+-2.10.6/pangoxft2.10.6.diff b/packages/gtk+/gtk+-2.10.6/pangoxft2.10.6.diff index 142a9a8e88..63828cec63 100644 --- a/packages/gtk+/gtk+-2.10.6/pangoxft2.10.6.diff +++ b/packages/gtk+/gtk+-2.10.6/pangoxft2.10.6.diff @@ -2441,3 +2441,16 @@ Index: gtk+-2.10.6/gdk/x11/gdkpixmap-x11.c _gdk_x11_drawable_finish (GDK_DRAWABLE (draw_impl)); } +--- gtk+-2.10.6.orig/gtk/gtkcalendar.c.orig 2006-11-14 14:39:34.000000000 -0800 ++++ gtk+-2.10.6/gtk/gtkcalendar.c 2006-11-14 14:37:34.000000000 -0800 +@@ -1495,6 +1495,10 @@ gtk_calendar_realize (GtkWidget *widget) + BACKGROUND_COLOR ( GTK_WIDGET ( calendar))); + gdk_window_show (priv->main_win); + gdk_window_set_user_data (priv->main_win, widget); ++ ++ /* Set widgets gc */ ++ calendar->gc = gdk_gc_new (widget->window); ++ + gdk_window_set_background (widget->window, BACKGROUND_COLOR (widget)); + gdk_window_show (widget->window); + gdk_window_set_user_data (widget->window, widget); diff --git a/packages/gtk+/gtk+_2.10.6.bb b/packages/gtk+/gtk+_2.10.6.bb index 2ea55b33c5..82549b028b 100644 --- a/packages/gtk+/gtk+_2.10.6.bb +++ b/packages/gtk+/gtk+_2.10.6.bb @@ -5,7 +5,7 @@ HOMEPAGE = "http://www.gtk.org" SECTION = "libs" PRIORITY = "optional" DEPENDS = "glib-2.0 pango atk jpeg libpng libxext libxcursor gtk-doc libgcrypt cairo cups" -PR = "r6" +PR = "r7" # disable per default - untested and not all patches included. DEFAULT_PREFERENCE = "-1" diff --git a/packages/linux/mx31ads-kernel_2.6.19rc5.bb b/packages/linux/mx31ads-kernel_2.6.19rc5.bb index 1c3179bcfb..0957fe71fe 100644 --- a/packages/linux/mx31ads-kernel_2.6.19rc5.bb +++ b/packages/linux/mx31ads-kernel_2.6.19rc5.bb @@ -39,7 +39,7 @@ do_configure_prepend() { sed -e '/CONFIG_AEABI/d' \ -e '/CONFIG_OABI_COMPAT=/d' \ - '${WORKDIR}/defconfig' >>'${S}/.config' + '${S}/defconfig' >>'${S}/.config' # echo "CONFIG_CMDLINE=\"${CMDLINE}\"" >> ${S}/.config diff --git a/packages/python/python-sword_1.5.9.bb b/packages/python/python-sword_1.5.9.bb new file mode 100644 index 0000000000..6c777bb54d --- /dev/null +++ b/packages/python/python-sword_1.5.9.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Python bindings for the sword library" +SECTION = "devel/python" +PRIORITY = "optional" +LICENSE = "GPL" +RDEPENDS = "python-core sword" +DEPENDS = "sword-${PV} swig-native" +SRCNAME = "sword" +PR = "r0" + +SRC_URI = "http://crosswire.org/ftpmirror/pub/sword/source/v1.5/sword-${PV}.tar.gz" + +S = "${WORKDIR}/${SRCNAME}-${PV}/bindings/swig/package" + +EXTRA_OECONF = "--with-sword-dir=${STAGING_DIR}/${HOST_SYS}" + +inherit distutils autotools + +PARALLEL_MAKE = "" + +#do_configure_prepend() { +# ./autogen.sh +#} + +do_compile() { + oe_runmake BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} pythonswig python_make +} + +do_install() { + cd ${S}/python + distutils_do_install +} diff --git a/packages/sword/sword_1.5.9.bb b/packages/sword/sword_1.5.9.bb new file mode 100644 index 0000000000..362b75e57c --- /dev/null +++ b/packages/sword/sword_1.5.9.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "The SWORD Project is an open source, cross-platform \ +(Linux, Windows, Solaris, MacOSX etc.) API and library for \ +Bible software with a constantly growing list of front-ends \ +(GUI, textmode, web-based, etc.) and a library of over 200 text modules" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://www.crosswire.org/ftpmirror/pub/sword/source/v1.5/sword-${PV}.tar.gz" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--without-clucene --without-curl" + +do_stage() { + oe_libinstall -so -C lib libsword ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/sword/ + for f in include/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/sword/ + done + +} + +FILES_${PN} = "${libdir}/libsword*so ${sysconfdir} ${bindir} ${datadir}" |