Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
Prevent Pango to build tests.
|
||||
|
||||
Updated to Pango 1.36.3 by Hadrien Boutteville.
|
||||
|
||||
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
|
||||
[Gustavo: update for 1.38.1]
|
||||
|
||||
diff -Nura pango-1.38.1.orig/Makefile.am pango-1.38.1/Makefile.am
|
||||
--- pango-1.38.1.orig/Makefile.am 2015-10-14 15:41:27.620016974 +0000
|
||||
+++ pango-1.38.1/Makefile.am 2015-10-14 15:41:54.431240793 +0000
|
||||
@@ -1,6 +1,6 @@
|
||||
## Process this file with automake to create Makefile.in.
|
||||
|
||||
-SUBDIRS= pango pango-view examples docs tools tests build
|
||||
+SUBDIRS= pango pango-view examples docs tools build
|
||||
|
||||
EXTRA_DIST = \
|
||||
autogen.sh \
|
||||
diff -Nura pango-1.38.1.orig/Makefile.in pango-1.38.1/Makefile.in
|
||||
--- pango-1.38.1.orig/Makefile.in 2015-10-14 15:41:27.630016685 +0000
|
||||
+++ pango-1.38.1/Makefile.in 2015-10-14 15:41:58.753115676 +0000
|
||||
@@ -417,7 +417,7 @@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
-SUBDIRS = pango pango-view examples docs tools tests build
|
||||
+SUBDIRS = pango pango-view examples docs tools build
|
||||
EXTRA_DIST = \
|
||||
autogen.sh \
|
||||
pango.pc.in \
|
||||
@@ -0,0 +1,25 @@
|
||||
Same patch as for systemd in commit
|
||||
7144f2f04b705538a893e538a6b851f536f433b6:
|
||||
|
||||
Fix deactivation of gtk-doc
|
||||
|
||||
The tarball contains the Makefile for building documentation with gtk-doc,
|
||||
Unfortunately the AM_CONDITIONAL variable is not the correct one, which
|
||||
results in an error when running autoreconf.
|
||||
|
||||
This patch fixes this issue.
|
||||
|
||||
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
||||
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
|
||||
|
||||
--- a/gtk-doc.make
|
||||
+++ b/gtk-doc.make
|
||||
@@ -267,7 +267,7 @@
|
||||
#
|
||||
# Require gtk-doc when making dist
|
||||
#
|
||||
-if HAVE_GTK_DOC
|
||||
+if ENABLE_GTK_DOC
|
||||
dist-check-gtkdoc: docs
|
||||
else
|
||||
dist-check-gtkdoc:
|
||||
29
deprecated/firmware/buildroot/package/pango/Config.in
Normal file
29
deprecated/firmware/buildroot/package/pango/Config.in
Normal file
@@ -0,0 +1,29 @@
|
||||
config BR2_PACKAGE_PANGO
|
||||
bool "pango"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_INSTALL_LIBSTDCPP # freetype support
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # harfbuzz
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_EXPAT
|
||||
select BR2_PACKAGE_CAIRO
|
||||
select BR2_PACKAGE_FONTCONFIG
|
||||
select BR2_PACKAGE_FREETYPE
|
||||
select BR2_PACKAGE_HARFBUZZ
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
|
||||
help
|
||||
Pango is a library for laying out and rendering of text, with an
|
||||
emphasis on internationalization. Pango can be used anywhere that
|
||||
text layout is needed, though most of the work on Pango so far has
|
||||
been done in the context of the GTK+ widget toolkit. Pango forms the
|
||||
core of text and font handling for GTK+-2.x.
|
||||
|
||||
http://www.pango.org/
|
||||
|
||||
comment "pango needs a toolchain w/ wchar, threads, C++"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_INSTALL_LIBSTDCPP
|
||||
2
deprecated/firmware/buildroot/package/pango/pango.hash
Normal file
2
deprecated/firmware/buildroot/package/pango/pango.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/GNOME/sources/pango/1.36/pango-1.38.1.sha256sum
|
||||
sha256 1320569f6c6d75d6b66172b2d28e59c56ee864ee9df202b76799c4506a214eb7 pango-1.38.1.tar.xz
|
||||
48
deprecated/firmware/buildroot/package/pango/pango.mk
Normal file
48
deprecated/firmware/buildroot/package/pango/pango.mk
Normal file
@@ -0,0 +1,48 @@
|
||||
################################################################################
|
||||
#
|
||||
# pango
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PANGO_VERSION_MAJOR = 1.38
|
||||
PANGO_VERSION = $(PANGO_VERSION_MAJOR).1
|
||||
PANGO_SOURCE = pango-$(PANGO_VERSION).tar.xz
|
||||
PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/$(PANGO_VERSION_MAJOR)
|
||||
PANGO_AUTORECONF = YES
|
||||
PANGO_INSTALL_STAGING = YES
|
||||
PANGO_LICENSE = LGPLv2+
|
||||
PANGO_LICENSE_FILES = COPYING
|
||||
|
||||
PANGO_CONF_OPTS = --enable-explicit-deps=no
|
||||
HOST_PANGO_CONF_OPTS = --enable-explicit-deps=no
|
||||
|
||||
PANGO_DEPENDENCIES = \
|
||||
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \
|
||||
host-pkgconf \
|
||||
libglib2 \
|
||||
cairo \
|
||||
harfbuzz \
|
||||
fontconfig \
|
||||
freetype
|
||||
HOST_PANGO_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-libglib2 \
|
||||
host-cairo \
|
||||
host-harfbuzz \
|
||||
host-fontconfig \
|
||||
host-freetype
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
PANGO_CONF_OPTS += \
|
||||
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
||||
--x-libraries=$(STAGING_DIR)/usr/lib
|
||||
PANGO_DEPENDENCIES += xlib_libX11
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXFT)$(BR2_PACKAGE_XLIB_LIBXRENDER),yy)
|
||||
PANGO_DEPENDENCIES += xlib_libXft xlib_libXrender
|
||||
PANGO_CONF_OPTS += --with-xft
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user