summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/librsvg
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-gnome/librsvg
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-gnome/librsvg')
-rw-r--r--meta/recipes-gnome/librsvg/librsvg/gtk-option.patch62
-rw-r--r--meta/recipes-gnome/librsvg/librsvg/vapigen.m496
-rw-r--r--meta/recipes-gnome/librsvg/librsvg_2.40.2.bb59
3 files changed, 217 insertions, 0 deletions
diff --git a/meta/recipes-gnome/librsvg/librsvg/gtk-option.patch b/meta/recipes-gnome/librsvg/librsvg/gtk-option.patch
new file mode 100644
index 0000000000..d44bdd3209
--- /dev/null
+++ b/meta/recipes-gnome/librsvg/librsvg/gtk-option.patch
@@ -0,0 +1,62 @@
1Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=712693]
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4From 18917f7fd3160afe06019f4b6234aeb78a3fdb4e Mon Sep 17 00:00:00 2001
5From: Ross Burton <ross.burton@intel.com>
6Date: Tue, 19 Nov 2013 16:00:29 +0000
7Subject: [PATCH] configure: add option to enable/disable use of GTK+
8
9Distro packagers like predictability and automatically detected optional
10dependencies are not predicable. Add a --with-gtk3 option (default to "auto")
11for forcibly controlling whether GTK+ will be used or not.
12
13Signed-off-by: Ross Burton <ross.burton@intel.com>
14
15https://bugzilla.gnome.org/show_bug.cgi?id=712693
16---
17 configure.in | 17 +++++++++++------
18 1 file changed, 11 insertions(+), 6 deletions(-)
19
20diff --git a/configure.in b/configure.in
21index f7a89dc..1498f72 100644
22--- a/configure.in
23+++ b/configure.in
24@@ -119,17 +119,22 @@ AC_CHECK_FUNCS(strtok_r)
25 # GTK
26 # ===========================================================================
27
28-PKG_CHECK_MODULES([GTK3],[gtk+-3.0 >= $GTK3_REQUIRED],[have_gtk_3=yes],[have_gtk_3=no])
29-
30 GTK3_BINARY_VERSION=
31
32-if test "$have_gtk_3" = "yes"; then
33- GTK3_BINARY_VERSION="`$PKG_CONFIG --variable=gtk_binary_version gtk+-3.0`"
34+AC_MSG_CHECKING([whether to use GTK+ 3])
35+AC_ARG_WITH([gtk3],
36+ [AS_HELP_STRING([--without-gtk3],[Don't build GTK+3 tools (default=auto)])],
37+ [],[PKG_CHECK_EXISTS([gtk+-3.0 >= $GTK3_REQUIRED],[with_gtk3=yes],[with_gtk3=no])])
38+AC_MSG_RESULT([$with_gtk3])
39+
40+if test "$with_gtk3" = "yes"; then
41+ PKG_CHECK_MODULES(GTK3, [gtk+-3.0 >= $GTK3_REQUIRED])
42+ GTK3_BINARY_VERSION="`$PKG_CONFIG --variable=gtk_binary_version gtk+-3.0`"
43 fi
44
45 AC_SUBST([GTK3_BINARY_VERSION])
46
47-AM_CONDITIONAL([HAVE_GTK_3],[test "$have_gtk_3" = "yes"])
48+AM_CONDITIONAL([HAVE_GTK_3],[test "$with_gtk3" = "yes"])
49
50 dnl ===========================================================================
51 dnl GDK-Pixbuf SVG loader
52@@ -305,6 +310,6 @@ librsvg-$VERSION
53 Build introspectable bindings: ${found_introspection}
54 Build Vala bindings: ${enable_vala}
55 Build GdkPixbuf loader: ${enable_pixbuf_loader}
56- GTK 3.0: ${have_gtk_3}
57+ GTK 3.0: ${with_gtk3}
58 Build miscellaenous tools: ${build_misc_tools}
59 "
60--
611.7.10.4
62
diff --git a/meta/recipes-gnome/librsvg/librsvg/vapigen.m4 b/meta/recipes-gnome/librsvg/librsvg/vapigen.m4
new file mode 100644
index 0000000000..f2df12f23f
--- /dev/null
+++ b/meta/recipes-gnome/librsvg/librsvg/vapigen.m4
@@ -0,0 +1,96 @@
1dnl vapigen.m4
2dnl
3dnl Copyright 2012 Evan Nemerson
4dnl
5dnl This library is free software; you can redistribute it and/or
6dnl modify it under the terms of the GNU Lesser General Public
7dnl License as published by the Free Software Foundation; either
8dnl version 2.1 of the License, or (at your option) any later version.
9dnl
10dnl This library is distributed in the hope that it will be useful,
11dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13dnl Lesser General Public License for more details.
14dnl
15dnl You should have received a copy of the GNU Lesser General Public
16dnl License along with this library; if not, write to the Free Software
17dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19# VAPIGEN_CHECK([VERSION], [API_VERSION], [FOUND-INTROSPECTION], [DEFAULT])
20# --------------------------------------
21# Check vapigen existence and version
22#
23# See http://live.gnome.org/Vala/UpstreamGuide for detailed documentation
24AC_DEFUN([VAPIGEN_CHECK],
25[
26 AC_BEFORE([GOBJECT_INTROSPECTION_CHECK],[$0])
27 AC_BEFORE([GOBJECT_INTROSPECTION_REQUIRE],[$0])
28
29 AC_ARG_ENABLE([vala],
30 [AS_HELP_STRING([--enable-vala[=@<:@no/auto/yes@:>@]],[build Vala bindings @<:@default=]ifelse($4,,auto,$4)[@:>@])],,[
31 AS_IF([test "x$4" = "x"], [
32 enable_vala=auto
33 ], [
34 enable_vala=$4
35 ])
36 ])
37
38 AS_CASE([$enable_vala], [no], [enable_vala=no],
39 [yes], [
40 AS_IF([test "x$3" != "xyes" -a "x$found_introspection" != "xyes"], [
41 AC_MSG_ERROR([Vala bindings require GObject Introspection])
42 ])
43 ], [auto], [
44 AS_IF([test "x$3" != "xyes" -a "x$found_introspection" != "xyes"], [
45 enable_vala=no
46 ])
47 ], [
48 AC_MSG_ERROR([Invalid argument passed to --enable-vala, should be one of @<:@no/auto/yes@:>@])
49 ])
50
51 AS_IF([test "x$2" = "x"], [
52 vapigen_pkg_name=vapigen
53 ], [
54 vapigen_pkg_name=vapigen-$2
55 ])
56 AS_IF([test "x$1" = "x"], [
57 vapigen_pkg="$vapigen_pkg_name"
58 ], [
59 vapigen_pkg="$vapigen_pkg_name >= $1"
60 ])
61
62 PKG_PROG_PKG_CONFIG
63
64 PKG_CHECK_EXISTS([$vapigen_pkg], [
65 AS_IF([test "$enable_vala" = "auto"], [
66 enable_vala=yes
67 ])
68 ], [
69 AS_CASE([$enable_vala], [yes], [
70 AC_MSG_ERROR([$vapigen_pkg not found])
71 ], [auto], [
72 enable_vala=no
73 ])
74 ])
75
76 AC_MSG_CHECKING([for vala])
77
78 AS_CASE([$enable_vala],
79 [yes], [
80 VAPIGEN=`$PKG_CONFIG --variable=vapigen vapigen`
81 VAPIGEN_MAKEFILE=`$PKG_CONFIG --variable=datadir vapigen`/vala/Makefile.vapigen
82 AS_IF([test "x$2" = "x"], [
83 VAPIGEN_VAPIDIR=`$PKG_CONFIG --variable=vapidir vapigen`
84 ], [
85 VAPIGEN_VAPIDIR=`$PKG_CONFIG --variable=vapidir_versioned vapigen`
86 ])
87 ])
88
89 AC_MSG_RESULT([$enable_vala])
90
91 AC_SUBST([VAPIGEN])
92 AC_SUBST([VAPIGEN_VAPIDIR])
93 AC_SUBST([VAPIGEN_MAKEFILE])
94
95 AM_CONDITIONAL(ENABLE_VAPIGEN, test "x$enable_vala" = "xyes")
96])
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.40.2.bb b/meta/recipes-gnome/librsvg/librsvg_2.40.2.bb
new file mode 100644
index 0000000000..e2b26f5ae7
--- /dev/null
+++ b/meta/recipes-gnome/librsvg/librsvg_2.40.2.bb
@@ -0,0 +1,59 @@
1SUMMARY = "Library for rendering SVG files"
2HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/sources/librsvg/"
3BUGTRACKER = "https://bugzilla.gnome.org/"
4
5LICENSE = "LGPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
7 file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6"
8
9SECTION = "x11/utils"
10DEPENDS = "cairo gdk-pixbuf glib-2.0 libcroco libxml2 pango"
11BBCLASSEXTEND = "native"
12
13inherit autotools pkgconfig gnomebase gtk-doc pixbufcache
14
15GNOME_COMPRESS_TYPE = "xz"
16
17SRC_URI += "file://gtk-option.patch \
18 file://vapigen.m4"
19
20SRC_URI[archive.md5sum] = "acdecdb9f08f3bf662a68bf7dafb8b82"
21SRC_URI[archive.sha256sum] = "48049b643294636df7de1a4b997414d699666f5dc44776945c218a257d2a291c"
22
23EXTRA_OECONF = "--disable-introspection --disable-vala"
24
25# The older ld (2.22) on the host (Centos 6.5) doesn't have the
26# -Bsymbolic-functions option, we can disable it for native.
27EXTRA_OECONF_append_class-native = " --enable-Bsymbolic=auto"
28
29PACKAGECONFIG ??= "gdkpixbuf"
30# The gdk-pixbuf loader
31PACKAGECONFIG[gdkpixbuf] = "--enable-pixbuf-loader,--disable-pixbuf-loader,gdk-pixbuf-native"
32# GTK+ test application (rsvg-view)
33PACKAGECONFIG[gtk] = "--with-gtk3,--without-gtk3,gtk+3"
34
35# The tarball doesn't ship with macros, so drop a vapigen in there so we don't
36# need to build vala to configure.
37do_configure_prepend() {
38 if test ! -e ${S}/m4/vapigen.m4; then
39 mkdir --parents ${S}/m4
40 mv ${WORKDIR}/vapigen.m4 ${S}/m4/
41 fi
42}
43
44do_install_append() {
45 # Loadable modules don't need .a or .la on Linux
46 rm -f ${D}${libdir}/gdk-pixbuf-2.0/*/loaders/*.a ${D}${libdir}/gdk-pixbuf-2.0/*/loaders/*.la
47}
48
49PACKAGES =+ "librsvg-gtk rsvg"
50FILES_${PN} = "${libdir}/*.so.*"
51FILES_${PN}-dbg += "${libdir}/gdk-pixbuf-2.0/*/loaders/.debug"
52FILES_rsvg = "${bindir}/rsvg* \
53 ${datadir}/pixmaps/svg-viewer.svg \
54 ${datadir}/themes"
55FILES_librsvg-gtk = "${libdir}/gdk-pixbuf-2.0/*/*/*.so"
56
57PIXBUF_PACKAGES = "librsvg-gtk"
58
59PIXBUFCACHE_SYSROOT_DEPS_append_class-native = " harfbuzz-native:do_populate_sysroot_setscene pango-native:do_populate_sysroot_setscene icu-native:do_populate_sysroot_setscene"