mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
f13afae57e
The install routine is so broken that most of the stuff is manually copied in place Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
169 lines
5.9 KiB
Bash
169 lines
5.9 KiB
Bash
#!/bin/bash
|
|
|
|
# Slackware build script for htmldoc
|
|
|
|
# Copyright 2009-2014 LukenShiro, Italy
|
|
# Copyright 2023 Matteo Bernardini, Italy
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# 20230630 bkw: Modified by SlackBuilds.org, BUILD=2:
|
|
# - use BUILDROOT instead of --prefix=$PKG/usr, avoids compiling the
|
|
# $PKG path into the binary.
|
|
# - fix 32x32 icon (it was 31x31).
|
|
# - don't include empty icon dirs in the package.
|
|
# - make .desktop file validate.
|
|
|
|
# Thanks to Gentoo htmldoc's .ebuild maintainer for hints about configure's
|
|
# workaround, and for a patch to fix CVE-2009-3050.
|
|
#
|
|
#
|
|
# Feb 01 2017: Alfredo
|
|
# Update script for html-1.8.29, fix the problem with /usr/share/htmldoc/data
|
|
# not being copied into the package
|
|
#
|
|
#
|
|
# May 01 2020: organixpear
|
|
# Update script for htmldoc-1.9.8
|
|
# This was a needed update as htmldoc-1.8.29 was 3 years out of date
|
|
# and the build would fail on recent versions (current) of Slackware.
|
|
# gnutls support was also found to be working in htmldoc-1.9.8 so
|
|
# support was added. Misc updates and cleanups to install commands.
|
|
#
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
PRGNAM=htmldoc
|
|
VERSION=${VERSION:-1.9.16}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i586 ;;
|
|
arm*) ARCH=arm ;;
|
|
*) ARCH=$( uname -m ) ;;
|
|
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
|
|
fi
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
DOCFILES="CHANGES.md README.md COPYING"
|
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
LIBDIRSUFFIX="64"
|
|
else
|
|
SLKCFLAGS="-O2"
|
|
LIBDIRSUFFIX=""
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM-$VERSION
|
|
tar xvf $CWD/$PRGNAM-$VERSION-source.tar.gz
|
|
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 \
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
|
|
|
# workaround to avoid /usr/share/doc/htmldoc's use for help function
|
|
sed -i -e "s|\$datadir/doc/htmldoc|/usr/doc/htmldoc-$VERSION/html|" \
|
|
-e "s|^docdir=.*|docdir=/usr/doc/$PRGNAM-$VERSION|" ./configure || exit 1
|
|
|
|
# to avoid an invalid implicit declaration of function (for 'CUPS_SRAND' and 'CUPS_RAND')
|
|
sed -r -i 's|CUPS_SRAND|srand|g' htmldoc/http.c || exit 1
|
|
sed -r -i 's|CUPS_RAND|rand|g' htmldoc/http.c || exit 1
|
|
|
|
# --mandir seems to be ignored; --docdir doesn't exist
|
|
# internal jpeg/png/zlib libs disabled (using system ones)
|
|
# it does not build correctly with gnutls (disabled)
|
|
CFLAGS="$SLKCFLAGS" \
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
--enable-ssl \
|
|
--with-gui \
|
|
--enable-gnutls \
|
|
--build=$ARCH-slackware-linux
|
|
|
|
# 'make all' also does install (DESTDIR not supported)
|
|
# 20230630 bkw: DESTDIR is spelled BUILDROOT, here.
|
|
make all BUILDROOT=$PKG
|
|
|
|
# Copy some files who are not automatically installed (main binary, .desktop, icons, etc..)
|
|
mkdir -p $PKG/usr/bin
|
|
install -m 755 htmldoc/$PRGNAM $PKG/usr/bin
|
|
mkdir -p $PKG/usr/share/applications
|
|
cp -a desktop/$PRGNAM.desktop $PKG/usr/share/applications
|
|
mkdir -p $PKG/usr/share/mime/packages
|
|
cp -a desktop/htmldoc.xml $PKG/usr/share/mime/packages
|
|
mkdir -p $PKG/usr/share/icons/hicolor/{32x32,128x128,256x256}/apps/
|
|
convert desktop/htmldoc-32.png -geometry 32x32 $PKG/usr/share/icons/hicolor/32x32/apps/$PRGNAM.png
|
|
cp -a desktop/htmldoc-128.png $PKG/usr/share/icons/hicolor/128x128/apps/$PRGNAM.png
|
|
cp -a desktop/htmldoc-256.png $PKG/usr/share/icons/hicolor/256x256/apps/$PRGNAM.png
|
|
mkdir -p $PKG/usr/share/htmldoc/
|
|
cp -a fonts $PKG/usr/share/htmldoc/
|
|
cp -a data $PKG/usr/share/htmldoc/
|
|
mkdir -p $PKG/usr/man/man1
|
|
gzip -c9 doc/htmldoc.man > $PKG/usr/man/man1/htmldoc.1.gz
|
|
|
|
sed -i '/^Categories/s,Application;,,' $PKG/usr/share/applications/*.desktop
|
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
|
|
|
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
|
|
|
# Just in case ..
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
|
cp -a $DOCFILES doc/$PRGNAM.{epub,html,pdf,ps} $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a doc/*.{html,png} $PKG/usr/doc/$PRGNAM-$VERSION/html
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|