desktop/yad: Updated for version 7.3.

Added the optional deps gtksourceview3 and webkit2gtk

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Matteo Bernardini 2020-10-26 16:26:32 +01:00 committed by Robby Workman
parent f1d02bc5c9
commit f3653f73b8
5 changed files with 23 additions and 15 deletions

View file

@ -4,7 +4,4 @@ Yad is a fork of Zenity with many improvements, including custom
buttons, additional dialogs and a pop-up menu in the notification
area.
The optional dependency webkitgtk enables the html widget.
By default this is built against gtk+2: if you want to use it
with gtk+3 pass the script the parameter GTK=3
Optional dependencies: gtksourceview3 and webkit2gtk.

View file

@ -4,3 +4,8 @@ if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
fi
fi
if [ -e usr/share/glib-2.0/schemas ]; then
if [ -x /usr/bin/glib-compile-schemas ]; then
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
fi
fi

View file

@ -11,9 +11,9 @@ yad:
yad: Yad (yet another dialog) is a fork of Zenity with many improvements,
yad: including custom buttons, additional dialogs and a pop-up menu in
yad: the notification area.
yad:
yad: There were two main reasons for this fork. The first was to remove
yad: dependencies on deprecated libraries like libglade and gnome-canvas.
yad: The second was the slow pace of Zenity development including many
yad: unimplemented enhancement suggestions in the GNOME Bugzilla.
yad:
yad: homepage: https://github.com/v1cont/yad/

View file

@ -3,7 +3,7 @@
# Slackware build script for yad
# Copyright 2010-2014 Charles <SlackBuilds@catcons.co.uk>
# Copyright 2015-2018 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
# Copyright 2015-2020 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=yad
VERSION=${VERSION:-0.40.0}
VERSION=${VERSION:-7.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -55,8 +55,8 @@ else
LIBDIRSUFFIX=""
fi
GTK=${GTK:-2}
if pkg-config --exists webkit-1.0 ; then HTML="--enable-html" ; else HTML="" ; fi
if pkg-config --exists webkit2gtk-4.0 ; then HTML="--enable-html" ; else HTML="" ; fi
if pkg-config --exists gtksourceview-3.0 ; then SOURCEVIEW="--enable-sourceview" ; else SOURCEVIEW="" ; fi
set -e
@ -73,6 +73,9 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
autoreconf -vif
intltoolize
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
@ -84,8 +87,11 @@ CXXFLAGS="$SLKCFLAGS" \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--with-rgb=/usr/share/X11/rgb.txt \
--enable-icon-browser \
--with-gtk=gtk$GTK \
--enable-pfd \
--enable-tray \
--enable-spell \
$HTML \
$SOURCEVIEW \
--build=$ARCH-slackware-linux
make
@ -95,7 +101,7 @@ 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 NEWS README* $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING NEWS README* THANKS TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,8 +1,8 @@
PRGNAM="yad"
VERSION="0.40.0"
HOMEPAGE="https://sourceforge.net/projects/yad-dialog/"
DOWNLOAD="https://downloads.sf.net/yad-dialog/yad-0.40.0.tar.xz"
MD5SUM="82d458a2e1695dd0709f71ad26109812"
VERSION="7.3"
HOMEPAGE="https://github.com/v1cont/yad/"
DOWNLOAD="https://github.com/v1cont/yad/releases/download/v7.3/yad-7.3.tar.xz"
MD5SUM="75883db190160e613709239049fe777a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""