Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-10-20 13:57 laird at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: laird at uclibc.org @ 2008-10-20 13:57 UTC (permalink / raw)
  To: buildroot

Author: laird
Date: 2008-10-20 06:57:30 -0700 (Mon, 20 Oct 2008)
New Revision: 23745

Log:
package/pango/pango.mk: Remove redundant PKG_CONFIG_* 

Remove the unnecessary PKG_CONFIG_* settings and tidy up some
config options.

Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>



Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-10-20 11:53:16 UTC (rev 23744)
+++ trunk/buildroot/package/pango/pango.mk	2008-10-20 13:57:30 UTC (rev 23745)
@@ -39,7 +39,7 @@
 		am_getline_needs_run_time_check=no am_cv_func_working_getline=yes \
 		gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
 		ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
-		ac_use_included_regex=no gl_cv_c_restrict=no PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \
+		ac_use_included_regex=no gl_cv_c_restrict=no)" \
 		ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
 		
 ifneq ($(BR2_PACKAGE_XSERVER_none),y)
@@ -50,19 +50,10 @@
         PANGO_CONF_OPT_X = --without-x
 endif
 
-PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
-		--build=$(GNU_HOST_NAME) --prefix=/usr --exec-prefix=/usr \
-		--bindir=/usr/bin --sbindir=/usr/sbin \
-		--libdir=/usr/lib --libexecdir=/usr/lib \
-		--sysconfdir=/etc --datadir=/usr/share \
-		--localstatedir=/var --includedir=/usr/include \
-		--mandir=/usr/man --infodir=/usr/info \
-		--enable-shared --enable-static \
+PANGO_CONF_OPT = --enable-shared --enable-static \
 		$(PANGO_CONF_OPT_X) \
-		--enable-explicit-deps=no --disable-debug PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
+		--enable-explicit-deps=no --disable-debug
 
-
 PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
 
-
 $(eval $(call AUTOTARGETS,package,pango))

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-12-31  9:35 jacmet at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: jacmet at uclibc.org @ 2008-12-31  9:35 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-31 09:35:11 +0000 (Wed, 31 Dec 2008)
New Revision: 24624

Log:
pango: add init script to create /etc/pango/pango.modules

It would be nicer to do this at compile time, but then we would need to
compile pango for the host as well.

Added:
   trunk/buildroot/package/pango/S25pango

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Added: trunk/buildroot/package/pango/S25pango
===================================================================
--- trunk/buildroot/package/pango/S25pango	                        (rev 0)
+++ trunk/buildroot/package/pango/S25pango	2008-12-31 09:35:11 UTC (rev 24624)
@@ -0,0 +1,19 @@
+#! /bin/sh
+#
+# run pango-querymodules if needed
+
+FILE=/etc/pango/pango.modules
+
+case "$1" in
+    start|"")
+	if [ ! -f "$FILE" ] ; then
+	    /usr/bin/pango-querymodules > "$FILE"
+	fi
+	;;
+    stop)
+	;;
+    *)
+	echo "Usage: $0 {start|stop}" >&2
+	exit 1
+	;;
+esac

Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-12-31 09:35:06 UTC (rev 24623)
+++ trunk/buildroot/package/pango/pango.mk	2008-12-31 09:35:11 UTC (rev 24624)
@@ -55,3 +55,7 @@
 PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
 
 $(eval $(call AUTOTARGETS,package,pango))
+
+$(PANGO_HOOK_POST_INSTALL):
+	$(INSTALL) -m 755 package/pango/S25pango $(TARGET_DIR)/etc/init.d/
+	touch $@

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-12-29 11:05 jacmet at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: jacmet at uclibc.org @ 2008-12-29 11:05 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-29 11:05:04 +0000 (Mon, 29 Dec 2008)
New Revision: 24593

Log:
pango: fix download url

Reported by Berns.

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-12-29 11:05:00 UTC (rev 24592)
+++ trunk/buildroot/package/pango/pango.mk	2008-12-29 11:05:04 UTC (rev 24593)
@@ -5,7 +5,7 @@
 #############################################################
 PANGO_VERSION = 1.20.5
 PANGO_SOURCE = pango-$(PANGO_VERSION).tar.bz2
-PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.19
+PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.20
 PANGO_AUTORECONF = YES
 PANGO_INSTALL_STAGING = YES
 PANGO_INSTALL_TARGET = YES

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-12-27 14:36 jacmet at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: jacmet at uclibc.org @ 2008-12-27 14:36 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-27 14:36:22 +0000 (Sat, 27 Dec 2008)
New Revision: 24567

Log:
pango: bump version

Added:
   trunk/buildroot/package/pango/pango-gtk-doc.patch
   trunk/buildroot/package/pango/pango-no-libthai.patch
   trunk/buildroot/package/pango/pango-no-tests.patch

Removed:
   trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-cairo-atsui.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Deleted: trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch
===================================================================
--- trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch	2008-12-27 11:01:33 UTC (rev 24566)
+++ trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -1,59 +0,0 @@
---- pango/acinclude.m4.old	2004-05-08 11:31:48.000000000 +0100
-+++ pango/acinclude.m4	2004-05-08 11:31:58.000000000 +0100
-@@ -55,3 +55,56 @@
- ])
- 
- 
-+dnl -*- mode: autoconf -*-
-+
-+# serial 1
-+
-+dnl Usage:
-+dnl   GTK_DOC_CHECK([minimum-gtk-doc-version])
-+AC_DEFUN([GTK_DOC_CHECK],
-+[
-+  AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
-+  AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
-+  dnl for overriding the documentation installation directory
-+  AC_ARG_WITH(html-dir,
-+    AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
-+    [with_html_dir='${datadir}/gtk-doc/html'])
-+  HTML_DIR="$with_html_dir"
-+  AC_SUBST(HTML_DIR)
-+
-+  dnl enable/disable documentation building
-+  AC_ARG_ENABLE(gtk-doc,
-+    AC_HELP_STRING([--enable-gtk-doc],
-+                   [use gtk-doc to build documentation [default=no]]),,
-+    enable_gtk_doc=no)
-+
-+  have_gtk_doc=no
-+  if test -z "$PKG_CONFIG"; then
-+    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
-+  fi
-+  if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
-+    have_gtk_doc=yes
-+  fi
-+
-+  dnl do we want to do a version check?
-+ifelse([$1],[],,
-+  [gtk_doc_min_version=$1
-+  if test "$have_gtk_doc" = yes; then
-+    AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
-+    if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
-+      AC_MSG_RESULT(yes)
-+    else
-+      AC_MSG_RESULT(no)
-+      have_gtk_doc=no
-+    fi
-+  fi
-+])
-+  if test x$enable_gtk_doc = xyes; then
-+    if test "$have_gtk_doc" != yes; then
-+      enable_gtk_doc=no
-+    fi
-+  fi
-+
-+  AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
-+  AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
-+])

Deleted: trunk/buildroot/package/pango/pango-1.19.3-no-cairo-atsui.patch
===================================================================
--- trunk/buildroot/package/pango/pango-1.19.3-no-cairo-atsui.patch	2008-12-27 11:01:33 UTC (rev 24566)
+++ trunk/buildroot/package/pango/pango-1.19.3-no-cairo-atsui.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -1,42 +0,0 @@
---- a/configure.in	2008-01-21 21:12:10.000000000 -0500
-+++ b/configure.in	2008-02-09 13:32:20.000000000 -0500
-@@ -318,11 +318,6 @@ if test "$pango_os_win32" = "yes"; then
- fi
- 
- #
--# Checks for ATSUI
--#
--AC_CHECK_HEADER(Carbon/Carbon.h, [have_atsui=true], [have_atsui=true])
--
--#
- # Checks for Cairo
- #
- have_cairo=false
-
---- a/configure.in	2008-02-09 13:37:25.000000000 -0500
-+++ b/configure.in	2008-02-09 13:39:42.000000000 -0500
-@@ -374,12 +374,6 @@ if $have_cairo ; then
-     have_cairo=true
-   fi
- 
--  PKG_CHECK_EXISTS(cairo-atsui >= $cairo_required, have_cairo_atsui=true, :)
--  if $have_cairo_atsui && $have_atsui ; then
--    AC_DEFINE(HAVE_CAIRO_ATSUI, 1, [Whether Cairo uses ATSUI for fonts])
--    have_cairo=true
--  fi
--
-   if $have_cairo ; then
-     AC_DEFINE(HAVE_CAIRO, 1, [Have usable Cairo library and font backend])
-   fi
-
---- a/configure	2008-02-09 13:25:54.000000000 -0500
-+++ b/configure	2008-02-09 13:27:56.000000000 -0500
-@@ -22516,7 +22516,7 @@ fi
-   if $have_cairo_atsui && $have_atsui ; then
- 
- cat >>confdefs.h <<\_ACEOF
--#define HAVE_CAIRO_ATSUI 1
-+/* #undef HAVE_CAIRO_ATSUI */
- _ACEOF
- 
-     have_cairo=true

Deleted: trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch
===================================================================
--- trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch	2008-12-27 11:01:33 UTC (rev 24566)
+++ trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -1,10 +0,0 @@
---- a/modules/Makefile.am	2007-07-05 17:30:28.000000000 -0400
-+++ b/modules/Makefile.am	2008-02-09 19:37:13.000000000 -0500
-@@ -8,7 +8,6 @@ SUBDIRS = 		\
- 	indic           \
- 	khmer		\
- 	syriac		\
--	thai		\
- 	tibetan
- 
- EXTRA_DIST =		\

Deleted: trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch
===================================================================
--- trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch	2008-12-27 11:01:33 UTC (rev 24566)
+++ trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -1,22 +0,0 @@
---- a/Makefile.in	2008-01-21 22:28:49.000000000 -0500
-+++ b/Makefile.in	2008-02-09 13:02:41.000000000 -0500
-@@ -260,7 +260,7 @@ sysconfdir = @sysconfdir@
- target_alias = @target_alias@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
--SUBDIRS = pango modules pango-view examples docs tools tests
-+SUBDIRS = pango modules pango-view examples docs tools 
- EXTRA_DIST = \
- 	autogen.sh		\
- 	pango.pc.in		\
-
---- a/Makefile.am	2008-01-17 16:37:49.000000000 -0500
-+++ b/Makefile.am	2008-02-09 13:35:13.000000000 -0500
-@@ -1,6 +1,6 @@
- ## Process this file with automake to create Makefile.in.
- 
--SUBDIRS= pango modules pango-view examples docs tools tests
-+SUBDIRS= pango modules pango-view examples docs tools 
- 
- EXTRA_DIST = 			\
- 	autogen.sh		\

Copied: trunk/buildroot/package/pango/pango-gtk-doc.patch (from rev 24561, trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch)
===================================================================
--- trunk/buildroot/package/pango/pango-gtk-doc.patch	                        (rev 0)
+++ trunk/buildroot/package/pango/pango-gtk-doc.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -0,0 +1,59 @@
+--- pango/acinclude.m4.old	2004-05-08 11:31:48.000000000 +0100
++++ pango/acinclude.m4	2004-05-08 11:31:58.000000000 +0100
+@@ -55,3 +55,56 @@
+ ])
+ 
+ 
++dnl -*- mode: autoconf -*-
++
++# serial 1
++
++dnl Usage:
++dnl   GTK_DOC_CHECK([minimum-gtk-doc-version])
++AC_DEFUN([GTK_DOC_CHECK],
++[
++  AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
++  AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
++  dnl for overriding the documentation installation directory
++  AC_ARG_WITH(html-dir,
++    AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
++    [with_html_dir='${datadir}/gtk-doc/html'])
++  HTML_DIR="$with_html_dir"
++  AC_SUBST(HTML_DIR)
++
++  dnl enable/disable documentation building
++  AC_ARG_ENABLE(gtk-doc,
++    AC_HELP_STRING([--enable-gtk-doc],
++                   [use gtk-doc to build documentation [default=no]]),,
++    enable_gtk_doc=no)
++
++  have_gtk_doc=no
++  if test -z "$PKG_CONFIG"; then
++    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
++  fi
++  if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
++    have_gtk_doc=yes
++  fi
++
++  dnl do we want to do a version check?
++ifelse([$1],[],,
++  [gtk_doc_min_version=$1
++  if test "$have_gtk_doc" = yes; then
++    AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
++    if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
++      AC_MSG_RESULT(yes)
++    else
++      AC_MSG_RESULT(no)
++      have_gtk_doc=no
++    fi
++  fi
++])
++  if test x$enable_gtk_doc = xyes; then
++    if test "$have_gtk_doc" != yes; then
++      enable_gtk_doc=no
++    fi
++  fi
++
++  AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
++  AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
++])

Copied: trunk/buildroot/package/pango/pango-no-libthai.patch (from rev 24561, trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch)
===================================================================
--- trunk/buildroot/package/pango/pango-no-libthai.patch	                        (rev 0)
+++ trunk/buildroot/package/pango/pango-no-libthai.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -0,0 +1,10 @@
+--- a/modules/Makefile.am	2007-07-05 17:30:28.000000000 -0400
++++ b/modules/Makefile.am	2008-02-09 19:37:13.000000000 -0500
+@@ -8,7 +8,6 @@ SUBDIRS = 		\
+ 	indic           \
+ 	khmer		\
+ 	syriac		\
+-	thai		\
+ 	tibetan
+ 
+ EXTRA_DIST =		\

Copied: trunk/buildroot/package/pango/pango-no-tests.patch (from rev 24561, trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch)
===================================================================
--- trunk/buildroot/package/pango/pango-no-tests.patch	                        (rev 0)
+++ trunk/buildroot/package/pango/pango-no-tests.patch	2008-12-27 14:36:22 UTC (rev 24567)
@@ -0,0 +1,22 @@
+--- a/Makefile.in	2008-01-21 22:28:49.000000000 -0500
++++ b/Makefile.in	2008-02-09 13:02:41.000000000 -0500
+@@ -260,7 +260,7 @@ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-SUBDIRS = pango modules pango-view examples docs tools tests
++SUBDIRS = pango modules pango-view examples docs tools 
+ EXTRA_DIST = \
+ 	autogen.sh		\
+ 	pango.pc.in		\
+
+--- a/Makefile.am	2008-01-17 16:37:49.000000000 -0500
++++ b/Makefile.am	2008-02-09 13:35:13.000000000 -0500
+@@ -1,6 +1,6 @@
+ ## Process this file with automake to create Makefile.in.
+ 
+-SUBDIRS= pango modules pango-view examples docs tools tests
++SUBDIRS= pango modules pango-view examples docs tools 
+ 
+ EXTRA_DIST = 			\
+ 	autogen.sh		\

Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-12-27 11:01:33 UTC (rev 24566)
+++ trunk/buildroot/package/pango/pango.mk	2008-12-27 14:36:22 UTC (rev 24567)
@@ -3,7 +3,7 @@
 # pango
 #
 #############################################################
-PANGO_VERSION = 1.19.3
+PANGO_VERSION = 1.20.5
 PANGO_SOURCE = pango-$(PANGO_VERSION).tar.bz2
 PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.19
 PANGO_AUTORECONF = YES

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-10-27  9:45 jacmet at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: jacmet at uclibc.org @ 2008-10-27  9:45 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-10-27 02:45:38 -0700 (Mon, 27 Oct 2008)
New Revision: 23810

Log:
Strip pango libraries on the target

Use the predefined INSTALL_STAGING_OPT and INSTALL_TARGET_OPT
behaviour of Makefile.autotools.in, so that installation on the target
is done using install-strip.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-10-27 09:45:34 UTC (rev 23809)
+++ trunk/buildroot/package/pango/pango.mk	2008-10-27 09:45:38 UTC (rev 23810)
@@ -9,8 +9,6 @@
 PANGO_AUTORECONF = YES
 PANGO_INSTALL_STAGING = YES
 PANGO_INSTALL_TARGET = YES
-PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
-PANGO_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
 		glib_cv_uscore=no ac_cv_func_strtod=yes \

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-10-27  9:45 jacmet at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: jacmet at uclibc.org @ 2008-10-27  9:45 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-10-27 02:45:34 -0700 (Mon, 27 Oct 2008)
New Revision: 23809

Log:
Fix strange problems in pango configure target

The configure target of pango had strange characters in it, preventing
compilation to work. Remove them, they just seem to be mistakes.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2008-10-27 08:27:43 UTC (rev 23808)
+++ trunk/buildroot/package/pango/pango.mk	2008-10-27 09:45:34 UTC (rev 23809)
@@ -39,9 +39,9 @@
 		am_getline_needs_run_time_check=no am_cv_func_working_getline=yes \
 		gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
 		ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
-		ac_use_included_regex=no gl_cv_c_restrict=no)" \
+		ac_use_included_regex=no gl_cv_c_restrict=no \
 		ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
-		
+
 ifneq ($(BR2_PACKAGE_XSERVER_none),y)
         PANGO_CONF_OPT_X = --with-x \
 		--x-includes=$(STAGING_DIR)/usr/include/X11 \

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2008-03-06 18:20 ninevoltz at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-06 18:20 UTC (permalink / raw)
  To: buildroot

Author: ninevoltz
Date: 2008-03-06 10:20:38 -0800 (Thu, 06 Mar 2008)
New Revision: 21218

Log:
updated pango

Added:
   trunk/buildroot/package/pango/pango-1.19.3-gtk-doc.patch
   trunk/buildroot/package/pango/pango-1.19.3-libdir-la.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-cairo-atsui.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-libthai.patch
   trunk/buildroot/package/pango/pango-1.19.3-no-tests.patch

Removed:
   trunk/buildroot/package/pango/gtk-doc.patch
   trunk/buildroot/package/pango/libdir-la.patch
   trunk/buildroot/package/pango/no-tests.patch
   trunk/buildroot/package/pango/pango.modules
   trunk/buildroot/package/pango/pangox.aliases

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:

Sorry, the patch is too large to include (1902 lines).
Please use ViewCVS to see it!

http://uclibc.org/cgi-bin/viewcvs.cgi?view=rev&root=svn&rev=21218

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2007-01-14  4:10 andersen at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: andersen at uclibc.org @ 2007-01-14  4:10 UTC (permalink / raw)
  To: buildroot

Author: andersen
Date: 2007-01-13 20:10:14 -0800 (Sat, 13 Jan 2007)
New Revision: 17288

Log:
install the junk needed to (in theory) make pango actually work


Added:
   trunk/buildroot/package/pango/pango.modules
   trunk/buildroot/package/pango/pangox.aliases

Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:

Sorry, the patch is too large to include (1302 lines).
Please use ViewCVS to see it!

http://uclibc.org/cgi-bin/viewcvs.cgi?view=rev&root=svn&rev=17288

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pango
@ 2007-01-11  7:36 andersen at uclibc.org
  0 siblings, 0 replies; 9+ messages in thread
From: andersen at uclibc.org @ 2007-01-11  7:36 UTC (permalink / raw)
  To: buildroot

Author: andersen
Date: 2007-01-10 23:36:46 -0800 (Wed, 10 Jan 2007)
New Revision: 17245

Log:
use a slightly more sensible dep, strip the correct library names


Modified:
   trunk/buildroot/package/pango/pango.mk


Changeset:
Modified: trunk/buildroot/package/pango/pango.mk
===================================================================
--- trunk/buildroot/package/pango/pango.mk	2007-01-11 07:35:59 UTC (rev 17244)
+++ trunk/buildroot/package/pango/pango.mk	2007-01-11 07:36:46 UTC (rev 17245)
@@ -141,7 +141,7 @@
 	    mandir=$(STAGING_DIR)/man \
 	    -C $(PANGO_DIR) install;
 
-$(TARGET_DIR)/lib/libpango-1.0.so.0.1300.5: $(STAGING_DIR)/lib/$(PANGO_BINARY)
+$(TARGET_DIR)/lib/libpango-1.0.so.0: $(STAGING_DIR)/lib/$(PANGO_BINARY)
 	cp -a $(STAGING_DIR)/lib/libpango-1.0.so $(TARGET_DIR)/lib/
 	cp -a $(STAGING_DIR)/lib/libpango-1.0.so.0* $(TARGET_DIR)/lib/
 	cp -a $(STAGING_DIR)/lib/libpangox-1.0.so $(TARGET_DIR)/lib/
@@ -152,15 +152,15 @@
 	cp -a $(STAGING_DIR)/lib/libpangoxft-1.0.so.0* $(TARGET_DIR)/lib/
 	cp -a $(STAGING_DIR)/lib/libpangocairo-1.0.so $(TARGET_DIR)/lib/
 	cp -a $(STAGING_DIR)/lib/libpangocairo-1.0.so.0* $(TARGET_DIR)/lib/
-	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libpango-2.0.so.0.*
-	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgpangox-2.0.so.0.*
-	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgoft2-2.0.so.0.*
-	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgoxft-2.0.so.0.*
-	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgocairo-2.0.so.0.*
-	touch -c $(TARGET_DIR)/lib/libpango-1.0.so.0.1300.5
+	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libpango-1.0.so.0.*
+	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgpangox-1.0.so.0.*
+	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgoft2-1.0.so.0.*
+	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgoxft-1.0.so.0.*
+	$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libgocairo-1.0.so.0.*
+	touch -c $(TARGET_DIR)/lib/libpango-1.0.so.0
 
 pango: uclibc gettext libintl pkgconfig libglib2 xorg cairo \
-	$(TARGET_DIR)/lib/libpango-1.0.so.0.1300.5
+	$(TARGET_DIR)/lib/libpango-1.0.so.0
 
 pango-clean:
 	rm -f $(TARGET_DIR)/lib/$(PANGO_BINARY)

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-12-31  9:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-20 13:57 [Buildroot] svn commit: trunk/buildroot/package/pango laird at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2008-12-31  9:35 jacmet at uclibc.org
2008-12-29 11:05 jacmet at uclibc.org
2008-12-27 14:36 jacmet at uclibc.org
2008-10-27  9:45 jacmet at uclibc.org
2008-10-27  9:45 jacmet at uclibc.org
2008-03-06 18:20 ninevoltz at uclibc.org
2007-01-14  4:10 andersen at uclibc.org
2007-01-11  7:36 andersen at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox