diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-08 03:11:45 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-09 17:20:42 +0700 |
commit | 07c6e6c46b99198d7108c3cfd5d0aa4b31427b90 (patch) | |
tree | c4e40b0cccca34c54a6b4129079cc9db68d208ff /development | |
parent | 9febc269ee0ace0ce504505e0dd9723ca5b5bd03 (diff) | |
download | slackbuilds-07c6e6c46b99198d7108c3cfd5d0aa4b31427b90.tar.gz |
development/rapidsvn: Fix URL, wx conflict, disable doxygen.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/rapidsvn/rapidsvn.SlackBuild | 16 | ||||
-rw-r--r-- | development/rapidsvn/rapidsvn.info | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/development/rapidsvn/rapidsvn.SlackBuild b/development/rapidsvn/rapidsvn.SlackBuild index 77eaaf87f0..c6f33e0f59 100644 --- a/development/rapidsvn/rapidsvn.SlackBuild +++ b/development/rapidsvn/rapidsvn.SlackBuild @@ -5,11 +5,16 @@ # Written by <youngmug@animeneko.net> # Currently maintained by David Delansay +# 20220308 bkw: Modified by SlackBuilds.org, BUILD=4: +# - fix wxPython/wxGTK3 conflict. +# - don't try to build API docs with doxygen (it fails). +# - fix download URL (original went away). + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=rapidsvn VERSION=${VERSION:-0.12.1} -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -21,9 +26,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -58,9 +60,9 @@ 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 \ + -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 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # Thanx Archlinux! patch -p1 < $CWD/rapidsvn-wx3.0.patch @@ -78,6 +80,8 @@ CXXFLAGS="$SLKCFLAGS -std=c++14" \ --localstatedir=/var \ --with-apr-config=apr-1-config \ --with-apu-config=apu-1-config \ + --with-wx-config=/usr/lib$LIBDIRSUFFIX/wx/config/gtk3-unicode-3.0 \ + --without-doxygen \ --disable-static \ --build=$ARCH-slackware-linux diff --git a/development/rapidsvn/rapidsvn.info b/development/rapidsvn/rapidsvn.info index 199d054a3c..53cf447e35 100644 --- a/development/rapidsvn/rapidsvn.info +++ b/development/rapidsvn/rapidsvn.info @@ -1,7 +1,7 @@ PRGNAM="rapidsvn" VERSION="0.12.1" HOMEPAGE="http://www.rapidsvn.org/" -DOWNLOAD="http://www.rapidsvn.org/download/release/0.12.1/rapidsvn-0.12.1.tar.gz" +DOWNLOAD="http://distcache.freebsd.org/ports-distfiles/rapidsvn-0.12.1.tar.gz" MD5SUM="8de3ca6da3ef6a27d59f959d1bbcd96b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" |