[oe-commits] org.oe.dev Directfb-1.1.0: Added Directfb Version 1.1.0

svolpe commit openembedded-commits at lists.openembedded.org
Sat Sep 22 22:27:46 UTC 2007


Directfb-1.1.0:  Added Directfb Version 1.1.0

Author: svolpe at openembedded.org
Branch: org.openembedded.dev
Revision: 21944f0f10c4b5fc5cbb2468a81955b02d5ad97e
ViewMTN: http://monotone.openembedded.org/revision/info/21944f0f10c4b5fc5cbb2468a81955b02d5ad97e
Files:
1
packages/directfb/directfb_1.1.0.bb
packages/directfb/files/fix-font-missing-char.patch
packages/directfb/files/fix-pkgconfig-cflags.patch
Diffs:

#
# mt diff -r8d22a151afb68b8a8e1125c87b94fca7fa02cb6b -r21944f0f10c4b5fc5cbb2468a81955b02d5ad97e
#
# 
# 
# add_file "packages/directfb/directfb_1.1.0.bb"
#  content [32e27f68890867b0d847d2ce82e8c21efeb704f9]
# 
# add_file "packages/directfb/files/fix-font-missing-char.patch"
#  content [59517e4dd852ff56f45f55ecffd95a9cd492c1bf]
# 
# add_file "packages/directfb/files/fix-pkgconfig-cflags.patch"
#  content [b1641134828f046419d1672f3e0bfc662b78da14]
# 
============================================================
--- packages/directfb/directfb_1.1.0.bb	32e27f68890867b0d847d2ce82e8c21efeb704f9
+++ packages/directfb/directfb_1.1.0.bb	32e27f68890867b0d847d2ce82e8c21efeb704f9
@@ -0,0 +1,57 @@
+DESCRIPTION = "DirectFB is a thin library that provides developers \
+with hardware graphics acceleration, input device handling and \
+abstraction, an integrated windowing system with support for \
+translucent windows and multiple display layers on top of the \
+Linux framebuffer device."
+SECTION = "libs"
+LICENSE = "LGPL"
+HOMEPAGE = "http://directfb.org"
+DEPENDS = "jpeg libpng freetype zlib tslib"
+PR = "r0"
+RV = "1.1-0"
+
+SRC_URI = "http://www.directfb.org/download/DirectFB/DirectFB-${PV}.tar.gz \
+           file://fix-pkgconfig-cflags.patch;patch=1 \
+	   file://fix-font-missing-char.patch;patch=1 \
+           file://getpagesize.patch;patch=1 \
+           file://fix-includes.patch;patch=1 \
+	   file://mkdfiff.patch;patch=1"
+
+S = "${WORKDIR}/DirectFB-${PV}"
+
+LDFLAGS_append =" -lts -lm"
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = "--with-gfxdrivers=none \
+		--enable-libmpeg3=no \
+		--enable-freetype=yes \
+		--enable-sdl=no \
+		--disable-x11 \
+		"
+
+do_stage() {
+        autotools_stage_all
+}
+
+do_install() {
+        oe_runmake 'DESTDIR=${D}' install
+}
+
+FILES_directfb-dbg_append = " ${libdir}/directfb-${RV}/*/*/.debug/*.so \
+			      ${libdir}/directfb-${RV}/*/.debug/*.so \
+			  "
+
+FILES_directfb-dev_append = " ${libdir}/directfb-${RV}/systems/*.la \
+                              ${libdir}/directfb-${RV}/inputdrivers/*.la \
+                              ${libdir}/directfb-${RV}/interfaces/*/*.la \
+                              ${libdir}/directfb-${RV}/wm/*.la \
+			"
+
+
+FILES_directfb_append = " ${libdir}/directfb-${RV}/systems/*.so \
+                          ${libdir}/directfb-${RV}/inputdrivers/*.so \
+                          ${libdir}/directfb-${RV}/interfaces/*/*.so \
+                          ${libdir}/directfb-${RV}/wm/*.so \
+                          ${datadir}/directfb-1.1.0 \
+			  "
============================================================
--- packages/directfb/files/fix-font-missing-char.patch	59517e4dd852ff56f45f55ecffd95a9cd492c1bf
+++ packages/directfb/files/fix-font-missing-char.patch	59517e4dd852ff56f45f55ecffd95a9cd492c1bf
@@ -0,0 +1,11 @@
+--- git/src/media/idirectfbfont.c~org	2007-07-10 10:35:46.000000000 -0400
++++ git/src/media/idirectfbfont.c	2007-07-10 10:36:09.000000000 -0400
+@@ -497,7 +497,7 @@
+ 
+      if (width<max_width && string >= end) {
+           *ret_next_line = NULL;
+-          *ret_str_length = length-1;
++          *ret_str_length = length;
+           *ret_width = width;
+ 
+           return DFB_OK;
============================================================
--- packages/directfb/files/fix-pkgconfig-cflags.patch	b1641134828f046419d1672f3e0bfc662b78da14
+++ packages/directfb/files/fix-pkgconfig-cflags.patch	b1641134828f046419d1672f3e0bfc662b78da14
@@ -0,0 +1,45 @@
+diff -ur DirectFB-1.0.0~org/directfb-internal.pc.in DirectFB-1.0.0/directfb-internal.pc.in
+--- DirectFB-1.0.0~org/directfb-internal.pc.in	2003-07-04 13:30:22.000000000 -0400
++++ DirectFB-1.0.0/directfb-internal.pc.in	2007-03-16 22:34:17.000000000 -0400
+@@ -8,4 +8,4 @@
+ Description: Third party module support package for DirectFB.
+ Version: @VERSION@
+ Requires: directfb = @VERSION@
+-Cflags: @DFB_INTERNAL_CFLAGS@ -I at INTERNALINCLUDEDIR@
++Cflags: @DFB_INTERNAL_CFLAGS@ -I${includedir}
+diff -ur DirectFB-1.0.0~org/directfb.pc.in DirectFB-1.0.0/directfb.pc.in
+--- DirectFB-1.0.0~org/directfb.pc.in	2004-08-04 12:28:20.000000000 -0400
++++ DirectFB-1.0.0/directfb.pc.in	2007-03-16 22:31:33.000000000 -0400
+@@ -8,4 +8,4 @@
+ Version: @VERSION@
+ Requires: fusion direct
+ Libs: -L${libdir} -ldirectfb @THREADLIB@ @DYNLIB@ @ZLIB_LIBS@ @OSX_LIBS@
+-Cflags: @THREADFLAGS@ -I at INCLUDEDIR@
++Cflags: @THREADFLAGS@ -I${includedir}
+diff -ur DirectFB-1.0.0~org/lib/direct/direct.pc.in DirectFB-1.0.0/lib/direct/direct.pc.in
+--- DirectFB-1.0.0~org/lib/direct/direct.pc.in	2005-11-23 09:18:59.000000000 -0500
++++ DirectFB-1.0.0/lib/direct/direct.pc.in	2007-03-16 22:32:13.000000000 -0400
+@@ -7,4 +7,4 @@
+ Description: DirectFB base development library
+ Version: @VERSION@
+ Libs: -L${libdir} -ldirect @THREADLIB@ @DYNLIB@
+-Cflags: @THREADFLAGS@ -I at INCLUDEDIR@
++Cflags: @THREADFLAGS@ -I${includedir}
+diff -ur DirectFB-1.0.0~org/lib/fusion/fusion.pc.in DirectFB-1.0.0/lib/fusion/fusion.pc.in
+--- DirectFB-1.0.0~org/lib/fusion/fusion.pc.in	2004-05-19 07:30:56.000000000 -0400
++++ DirectFB-1.0.0/lib/fusion/fusion.pc.in	2007-03-16 22:32:34.000000000 -0400
+@@ -8,4 +8,4 @@
+ Version: @VERSION@
+ Requires: direct
+ Libs: -L${libdir} -lfusion
+-Cflags: -I at INCLUDEDIR@
++Cflags: -I${includedir}
+diff -ur DirectFB-1.0.0~org/lib/voodoo/voodoo.pc.in DirectFB-1.0.0/lib/voodoo/voodoo.pc.in
+--- DirectFB-1.0.0~org/lib/voodoo/voodoo.pc.in	2004-05-19 07:31:28.000000000 -0400
++++ DirectFB-1.0.0/lib/voodoo/voodoo.pc.in	2007-03-16 22:32:55.000000000 -0400
+@@ -8,4 +8,4 @@
+ Version: @VERSION@
+ Requires: direct
+ Libs: -L${libdir} -lvoodoo
+-Cflags: -I at INCLUDEDIR@
++Cflags: -I${includedir}






More information about the Openembedded-commits mailing list