aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Gąsior2018-03-18 20:38:56 +0100
committerTomasz Gąsior2018-03-18 20:38:56 +0100
commit37ca324e00372ebf9995e38bc363a06338ec974b (patch)
treece5f250fdbccdac4c989ebc1e5c99d8125366173
parent695ca98cf8e85b778f3ab1e0f39c16cb8d67f7e5 (diff)
downloadaur-37ca324e00372ebf9995e38bc363a06338ec974b.tar.gz
Compile Broadway backend.
Compiling gtk3 without Broadway backend breaks compatibility with some packages from Arch Linux's official repositories, spice-gtk for example.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
-rw-r--r--README.md2
3 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 845b36cce5de..2b5905347682 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gtk3-mushrooms
pkgdesc = GTK3 library with my modifications (see README).
pkgver = 3.22.29
- pkgrel = 1
+ pkgrel = 2
url = http://www.gtk.org/
arch = x86_64
license = LGPL
diff --git a/PKGBUILD b/PKGBUILD
index 4a65580461fd..1dd6d1bb97e7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ __arch_pkg_commit="4ac05111e37186cebac1c4fa22610abddb1c2d52"
pkgname=gtk3-mushrooms
pkgver=3.22.29
-pkgrel=1
+pkgrel=2
pkgdesc="GTK3 library with my modifications (see README)."
url="http://www.gtk.org/"
conflicts=(gtk3 gtk3-print-backends)
@@ -151,7 +151,8 @@ build()
cd "$srcdir/gtk+-$pkgver"
CXX=/bin/false ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --enable-x11-backend --enable-wayland-backend --disable-schemas-compile --disable-gtk-doc-html
+ --enable-x11-backend --enable-wayland-backend --enable-broadway-backend \
+ --disable-schemas-compile --disable-gtk-doc-html
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
diff --git a/README.md b/README.md
index 8cc8e881f80c..3b78681b5e31 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
This is a set of patches for GTK3 library that makes it better for me and maybe for you too. ;-) I haven't wide knowledge about programming in C, so quality of this patches can be not good. But it works! See list of patches below.
-This package is based on official GTK3 package from Arch Linux. In my version library is compiled without Broadway backend, documentation and example applications. Using this package with GNOME desktop is not recommended. It's for classic GTK-based environments like MATE or XFCE.
+This package is based on official GTK3 package from Arch Linux. In my version library is compiled without documentation and example applications. Using this package with GNOME desktop is not recommended. It's for classic GTK-based environments like MATE or XFCE.
Client Side Decorations
---