zenity: Added

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
Willy Sudiarto Raharjo 2014-03-18 01:34:53 +07:00
parent a6d43ac3af
commit f13e776ae7
6 changed files with 132 additions and 1 deletions

8
MATE-1.10-CHANGES.TXT Normal file
View file

@ -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

18
MATE-1.10-DEPS.txt Normal file
View file

@ -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

View file

@ -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

19
deps/zenity/slack-desc vendored Normal file
View file

@ -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:

85
deps/zenity/zenity.SlackBuild vendored Normal file
View file

@ -0,0 +1,85 @@
#!/bin/sh
# Slackware build script for zenity
# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
# Maintained by Erik Hanson <erik@slackbuilds.org>
# 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}

View file

@ -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 \