diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-10-26 16:26:32 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-18 00:10:35 -0500 |
commit | f3653f73b89e9ad44ec48df7625670fa22dfa43a (patch) | |
tree | 5f34d0ed22493afcd94c3a50e899b6dc68ee47fe /desktop/yad | |
parent | f1d02bc5c9b9f92b4cb54b8b0ab8530075341f48 (diff) |
desktop/yad: Updated for version 7.3.
Added the optional deps gtksourceview3 and webkit2gtk
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'desktop/yad')
-rw-r--r-- | desktop/yad/README | 5 | ||||
-rw-r--r-- | desktop/yad/doinst.sh | 5 | ||||
-rw-r--r-- | desktop/yad/slack-desc | 2 | ||||
-rw-r--r-- | desktop/yad/yad.SlackBuild | 18 | ||||
-rw-r--r-- | desktop/yad/yad.info | 8 |
5 files changed, 23 insertions, 15 deletions
diff --git a/desktop/yad/README b/desktop/yad/README index d8cbddb7e65da..934b1583ddb9a 100644 --- a/desktop/yad/README +++ b/desktop/yad/README @@ -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. diff --git a/desktop/yad/doinst.sh b/desktop/yad/doinst.sh index 19400050fd705..d6d225b6df36d 100644 --- a/desktop/yad/doinst.sh +++ b/desktop/yad/doinst.sh @@ -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 diff --git a/desktop/yad/slack-desc b/desktop/yad/slack-desc index 07875fb003d57..edf960164ad4b 100644 --- a/desktop/yad/slack-desc +++ b/desktop/yad/slack-desc @@ -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/ diff --git a/desktop/yad/yad.SlackBuild b/desktop/yad/yad.SlackBuild index 0b08f08e7a760..2fbe6bd2a906c 100644 --- a/desktop/yad/yad.SlackBuild +++ b/desktop/yad/yad.SlackBuild @@ -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 diff --git a/desktop/yad/yad.info b/desktop/yad/yad.info index a5a5b9d17ef17..3724eb57499c7 100644 --- a/desktop/yad/yad.info +++ b/desktop/yad/yad.info @@ -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="" |