diff options
author | Edward W. Koenig <kingbeowulf@linuxgalaxy.org> | 2023-05-01 20:15:19 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-06 08:28:33 +0700 |
commit | 2586c88514da3d4efe535a904ddb89424a558376 (patch) | |
tree | a49afcf806612cce4ae955c8f2970bec2f058b74 /development/bluefish | |
parent | 638f67e3e62d565d41e724764cd9eadd1ae3807c (diff) |
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>
Diffstat (limited to 'development/bluefish')
-rw-r--r-- | development/bluefish/README | 6 | ||||
-rw-r--r-- | development/bluefish/bluefish.SlackBuild | 9 | ||||
-rw-r--r-- | development/bluefish/bluefish.info | 6 |
3 files changed, 17 insertions, 4 deletions
diff --git a/development/bluefish/README b/development/bluefish/README index c152074e9fb8d..e21ae101913eb 100644 --- a/development/bluefish/README +++ b/development/bluefish/README @@ -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, or download it right away. Bluefish is an open source development 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. diff --git a/development/bluefish/bluefish.SlackBuild b/development/bluefish/bluefish.SlackBuild index 02e6411c44f95..f6ce3123230fa 100644 --- a/development/bluefish/bluefish.SlackBuild +++ b/development/bluefish/bluefish.SlackBuild @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=bluefish -VERSION=${VERSION:-2.2.12} +VERSION=${VERSION:-2.2.13} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -49,6 +49,12 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then exit 0 fi +# Do we still want GTK2? +gtkversion="" +if [ "$GTK2" = "yes" ]; then + gtkversion="--with-gtk2" +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -93,6 +99,7 @@ CXXFLAGS="$SLKCFLAGS" \ --disable-update-databases \ --disable-xml-catalog-update \ --enable-static=no \ + $gtkversion \ --build=$ARCH-slackware-linux make diff --git a/development/bluefish/bluefish.info b/development/bluefish/bluefish.info index 2ae107b5bacd7..1825a5f94395b 100644 --- a/development/bluefish/bluefish.info +++ b/development/bluefish/bluefish.info @@ -1,8 +1,8 @@ PRGNAM="bluefish" -VERSION="2.2.12" +VERSION="2.2.13" HOMEPAGE="http://bluefish.openoffice.nl/index.html" -DOWNLOAD="https://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.12.tar.bz2" -MD5SUM="33dd8262c4d8a564a517f8c98c0cce19" +DOWNLOAD="https://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.13.tar.bz2" +MD5SUM="d6dffd73409b7676724626f8a0ba41be" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |