From f13e776ae7fa75725b4b56fec8aed89b65cc321a Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Tue, 18 Mar 2014 01:34:53 +0700 Subject: [PATCH] zenity: Added Signed-off-by: Willy Sudiarto Raharjo --- MATE-1.10-CHANGES.TXT | 8 ++++ MATE-1.10-DEPS.txt | 18 ++++++++ README.TXT | 2 +- deps/zenity/slack-desc | 19 ++++++++ deps/zenity/zenity.SlackBuild | 85 +++++++++++++++++++++++++++++++++++ mate-build-deps.sh | 1 + 6 files changed, 132 insertions(+), 1 deletion(-) create mode 100644 MATE-1.10-CHANGES.TXT create mode 100644 MATE-1.10-DEPS.txt create mode 100644 deps/zenity/slack-desc create mode 100644 deps/zenity/zenity.SlackBuild diff --git a/MATE-1.10-CHANGES.TXT b/MATE-1.10-CHANGES.TXT new file mode 100644 index 0000000..bff946b --- /dev/null +++ b/MATE-1.10-CHANGES.TXT @@ -0,0 +1,8 @@ +New Packages in MATE 1.10: +libgnomecanvas +zenity + +Renamed Packages in MATE 1.10: + +Packages removed in MATE 1.10: +mate-dialogs diff --git a/MATE-1.10-DEPS.txt b/MATE-1.10-DEPS.txt new file mode 100644 index 0000000..e653573 --- /dev/null +++ b/MATE-1.10-DEPS.txt @@ -0,0 +1,18 @@ +This is a list of dependencies for the packages in the /extra directory. + +1. extra/mate-applets require deps/pygobject3, deps/libgtop, and + deps/gtksourceview + +2. extra/caja-extensions requires deps/gssdp and deps/gupnp + +3. extra/mate-netspeed and extra/mate-utils both require extra/libgtop. + +4. extra/mate-text-editor requires extra/gtksourceview. + +5. extra/mate-system-monitor requires deps/libsigc++, deps/glibmm, + deps/cairomm, deps/pangomm, deps/atkmm, deps/mm-common, and deps/gtkmm. + +6. extra/mate-system-tools requires deps/perl-xml-twig, + deps/perl-net-dbus, deps/system-tools-backends, and deps/liboobs. + +7. extra/pluma requires both deps/gtksourceview and deps/pygtksourceview diff --git a/README.TXT b/README.TXT index ad057ff..882664b 100644 --- a/README.TXT +++ b/README.TXT @@ -27,7 +27,7 @@ How to build and install the MATE packages using these scripts: 2. Run the 'mate-build-deps.sh' in the msb root directory which will build and install all the necessary dependencies in the /deps directory. There are -a total of 27 packages. +a total of 28 packages. 3. Run the 'mate-build-base.sh' in the msb root directory which will build and install all the base (required) packages. There are a total of 17 packages diff --git a/deps/zenity/slack-desc b/deps/zenity/slack-desc new file mode 100644 index 0000000..750495c --- /dev/null +++ b/deps/zenity/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +zenity: zenity (display gtk dialog boxes from cli) +zenity: +zenity: Zenity is a tool that allows you to display Gtk+ dialog boxes from +zenity: the command line and through shell scripts. It is similar to +zenity: gdialog, but is intended to be saner. +zenity: +zenity: Homepage: http://live.gnome.org/Zenity +zenity: +zenity: +zenity: +zenity: diff --git a/deps/zenity/zenity.SlackBuild b/deps/zenity/zenity.SlackBuild new file mode 100644 index 0000000..86a2f2a --- /dev/null +++ b/deps/zenity/zenity.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh +# Slackware build script for zenity +# Written by Larry Hajali +# Maintained by Erik Hanson +# Modified by Willy Sudiarto Raharjo for MSB Project + +PRGNAM=zenity +VERSION=${VERSION:-3.8.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_msb} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +wget -c http://ftp.acc.umu.se/pub/gnome/sources/zenity/3.8/$PRGNAM-$VERSION.tar.xz + +NUMJOBS=${NUMJOBS:-" -j8 "} + +CWD=$(pwd) +TMP=${TMP:-/tmp/msb} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --enable-debug=no \ + --enable-libnotify \ + --without-help-dir \ + --build=$ARCH-slackware-linux + +make $NUMJOBS || make +make install-strip DESTDIR=$PKG + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS ChangeLog COPYING HACKING NEWS README THANKS TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz} diff --git a/mate-build-deps.sh b/mate-build-deps.sh index 09d1418..33bdeeb 100755 --- a/mate-build-deps.sh +++ b/mate-build-deps.sh @@ -38,6 +38,7 @@ MSBROOT=$(pwd) # Loop for all dependency packages for dir in \ deps/libgnomecanvas \ + deps/zenity \ deps/rarian \ deps/yelp-xsl \ deps/yelp-tools \