development/bluefish: Added GTK2 option, updated for version 2.2.13

Signed-off-by: Edward W. Koenig <kingbeowulf@linuxgalaxy.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Edward W. Koenig 2023-05-01 20:15:19 -07:00 committed by Willy Sudiarto Raharjo
parent 638f67e3e6
commit 2586c88514
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 17 additions and 4 deletions

View File

@ -4,3 +4,9 @@ but it focuses on editing dynamic and interactive websites. See
features for an extensive overview, take a look at the screenshots, features for an extensive overview, take a look at the screenshots,
or download it right away. Bluefish is an open source development or download it right away. Bluefish is an open source development
project released under the GPL license. project released under the GPL license.
If you want to build Bluefish with GTK2=yes,
GTK2=yes ./bluefish.SlackBuild
otherwise GTK3 will be used by default.

View File

@ -28,7 +28,7 @@
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=bluefish PRGNAM=bluefish
VERSION=${VERSION:-2.2.12} VERSION=${VERSION:-2.2.13}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
@ -49,6 +49,12 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
exit 0 exit 0
fi fi
# Do we still want GTK2?
gtkversion=""
if [ "$GTK2" = "yes" ]; then
gtkversion="--with-gtk2"
fi
TMP=${TMP:-/tmp/SBo} TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
@ -93,6 +99,7 @@ CXXFLAGS="$SLKCFLAGS" \
--disable-update-databases \ --disable-update-databases \
--disable-xml-catalog-update \ --disable-xml-catalog-update \
--enable-static=no \ --enable-static=no \
$gtkversion \
--build=$ARCH-slackware-linux --build=$ARCH-slackware-linux
make make

View File

@ -1,8 +1,8 @@
PRGNAM="bluefish" PRGNAM="bluefish"
VERSION="2.2.12" VERSION="2.2.13"
HOMEPAGE="http://bluefish.openoffice.nl/index.html" HOMEPAGE="http://bluefish.openoffice.nl/index.html"
DOWNLOAD="https://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.12.tar.bz2" DOWNLOAD="https://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.13.tar.bz2"
MD5SUM="33dd8262c4d8a564a517f8c98c0cce19" MD5SUM="d6dffd73409b7676724626f8a0ba41be"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="" REQUIRES=""