summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTodd Naugle <toddn@glw.com>2012-06-13 12:50:55 +0000
committerTodd Naugle <toddn@glw.com>2012-06-13 12:50:55 +0000
commit737db3a504b94c5b34faff6d83f37cc3034b6946 (patch)
treec840720f4caa34ce6e8c76f0e6666fd9f86a49c3 /tools
parent038e70cd4b633f9681ac1589cbd6a3d6e58f8c29 (diff)
build clearlooks (gtk-engines) from source repo.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12698 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build-gtk-stack11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/build-gtk-stack b/tools/build-gtk-stack
index 14b4d89d28..6dde98be40 100755
--- a/tools/build-gtk-stack
+++ b/tools/build-gtk-stack
@@ -281,6 +281,12 @@ if [ ! -f gobject-introspection-1.31.10.tar.xz ] ; then
fetch_as_is http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/1.31/gobject-introspection-1.31.10.tar.xz
fi
+if [ ! -d gtk-engines ] ; then
+ echo "gtk-engines (2.22 branch)"
+ git clone git://git.gnome.org/gtk-engines
+ (cd gtk-engines && git checkout --track -b gtk-engines-2-22 origin/gtk-engines-2-22)
+fi
+
if [ ! -d gtk+ ] ; then
echo "GTK+ (2.24 branch)"
git clone git://git.gnome.org/gtk+
@@ -438,3 +444,8 @@ fi
#
(cd gtk+ && CFLAGS="$GLOBAL_CFLAGS" LDFLAGS="$GLOBAL_LDFLAGS" sh autogen.sh --enable-maintainer-mode --prefix=$PREFIX --libdir=$PREFIX/lib --disable-cups --disable-papi --disable-introspection --with-gdktarget=$GTK_BACKEND && make && make install) || die "GTK build failed"
+#
+# now gtk-engines
+#
+#
+(cd gtk-engines && CFLAGS="$GLOBAL_CFLAGS" LDFLAGS="$GLOBAL_LDFLAGS" sh autogen.sh --enable-maintainer-mode --prefix=$PREFIX --libdir=$PREFIX/lib && make && make install) || die "GTK-engines build failed"