diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-14 18:05:51 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-16 12:11:29 +0700 |
commit | 498bdca5893f5d5ab72f2f1f0cb113029eff5831 (patch) | |
tree | 13fd5e1e4ace20e0692862a5855b7fc68ec91197 /libraries | |
parent | 1d17dbaa8144f854ee53a3a4162a0f71bd02cb1f (diff) | |
download | slackbuilds-498bdca5893f5d5ab72f2f1f0cb113029eff5831.tar.gz |
libraries/wxGTK3: Install generated HTML docs, not source.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/wxGTK3/wxGTK3.SlackBuild | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/libraries/wxGTK3/wxGTK3.SlackBuild b/libraries/wxGTK3/wxGTK3.SlackBuild index 058ad6a74b..3555927dcc 100644 --- a/libraries/wxGTK3/wxGTK3.SlackBuild +++ b/libraries/wxGTK3/wxGTK3.SlackBuild @@ -22,11 +22,15 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220414 bkw: Modified by SlackBuilds.org, BUILD=3: +# - actually generate and install HTML documentation. +# - use relative symlink in /usr/bin. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=wxGTK3 VERSION=${VERSION:-3.0.5} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -40,9 +44,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 @@ -99,9 +100,9 @@ cd $SRCNAM-$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 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -129,15 +130,23 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Now let's fix the broken symlink created by the package -if [ "${STATIC:-no}" = "yes" ]; then -ln -fs /usr/lib${LIBDIRSUFFIX}/wx/config/gtk3-unicode-static-3.0 \ - $PKG/usr/bin/wx-config -else - ln -fs /usr/lib${LIBDIRSUFFIX}/wx/config/gtk3-unicode-3.0 \ - $PKG/usr/bin/wx-config -fi +linksrc=gtk3-unicode-3.0 +[ "${STATIC:-no}" = "yes" ] && linksrc=gtk3-unicode-static-3.0 + +ln -sf ../lib${LIBDIRSUFFIX}/wx/config/$linksrc $PKG/usr/bin/wx-config mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION + +# 20220414 bkw: instead of installing the *source* to the doxygen docs, +# actually run doxygen and install the generated HTML docs. +# The "|| true" stuff is meant to keep errors in the documentation from +# killing the build. +cd docs/doxygen + GENERATE_LATEX=NO doxygen || true + mv out/html $PKG/usr/doc/$PRGNAM-$VERSION || true +cd - +rm -rf docs/doxygen + cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |