diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-09 01:16:25 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-09 17:02:01 +0700 |
commit | eef9b4c6e965109b8e5dd4ae15bfbe5f9b797515 (patch) | |
tree | 123e2dc0f4f96caa382e3b9d4a261f3f0b6cf88c /system/mandoc/mandoc.SlackBuild | |
parent | 83d6753bcb5574026c1caa0d4e9db96f24f269d3 (diff) |
system/mandoc: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/mandoc/mandoc.SlackBuild')
-rw-r--r-- | system/mandoc/mandoc.SlackBuild | 47 |
1 files changed, 32 insertions, 15 deletions
diff --git a/system/mandoc/mandoc.SlackBuild b/system/mandoc/mandoc.SlackBuild index 7286953fd37d7..2f1dc3bbe1826 100644 --- a/system/mandoc/mandoc.SlackBuild +++ b/system/mandoc/mandoc.SlackBuild @@ -23,11 +23,16 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220209 bkw: Modified by SlackBuilds.org, BUILD=2: +# - fix build for 15.0. +# - actually use SLKCFLAGS. +# - remove conflicting files when REPLACE_MAN isn't set. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mandoc VERSION=${VERSION:-1.14.4} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,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 @@ -80,22 +82,37 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -if [ -z "${REPLACE_MAN}" ];then - gzip -dc "${CWD}"/configure-noconflict.local.gz >./configure.local +if [ -z "${REPLACE_MAN}" ]; then + gzip -dc "${CWD}"/configure-noconflict.local.gz >./configure.local else - gzip -dc "${CWD}"/configure-replace.local.gz >./configure.local + gzip -dc "${CWD}"/configure-replace.local.gz >./configure.local fi + +# 20220209 bkw: the *extremely* stupid way it tries to extract +# the default value of CC from make, does not work... and is +# hardcoded (can't override with environment). +sed -i '/^CC/s,=.*,=gcc,' configure + ./configure -CFLAGS=$SLKCFLAGS \ - make -make install \ - DESTDIR=$PKG \ - PREFIX=/usr \ - LIBDIR=/usr/lib${LIBDIRSUFFIX} +make CFLAGS="-Wl,-s -fcommon $SLKCFLAGS" -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 +make install \ + DESTDIR=$PKG \ + PREFIX=/usr \ + LIBDIR=/usr/lib${LIBDIRSUFFIX} + +# 20220209 bkw: these would conflict with Slackware's man-db +# and groff packages. +if [ -z "${REPLACE_MAN}" ]; then + rm -f \ + $PKG/usr/bin/soelim \ + $PKG/usr/man/man1/soelim.1 \ + $PKG/usr/man/man7/tbl.7 \ + $PKG/usr/man/man7/eqn.7 \ + $PKG/usr/man/man7/man.7 \ + $PKG/usr/man/man7/roff.7 +fi find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |