diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-03-31 18:51:16 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-04-01 08:59:43 +0200 |
commit | df86158dc598141c63689a86c2f247053e616719 (patch) | |
tree | 3c528a0cf288226259f3711dbd81043b94826322 /source/n | |
parent | 7aa0551f5b00938c12907fc6d975ba24ba1bedb1 (diff) | |
download | current-df86158dc598141c63689a86c2f247053e616719.tar.gz |
Sun Mar 31 18:51:16 UTC 201920190331185116
a/quota-4.05-x86_64-1.txz: Upgraded.
d/cmake-3.14.1-x86_64-1.txz: Upgraded.
d/patchelf-0.10-x86_64-1.txz: Upgraded.
l/harfbuzz-2.4.0-x86_64-1.txz: Upgraded.
l/utf8proc-2.3.0-x86_64-1.txz: Upgraded.
n/httpd-2.4.39-x86_64-1.txz: Upgraded.
n/iputils-20190324-x86_64-1.txz: Upgraded.
n/postfix-3.4.5-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/n')
-rw-r--r-- | source/n/httpd/httpd.url | 4 | ||||
-rwxr-xr-x | source/n/iputils/iputils.SlackBuild | 51 | ||||
-rwxr-xr-x | source/n/postfix/postfix.SlackBuild | 2 |
3 files changed, 32 insertions, 25 deletions
diff --git a/source/n/httpd/httpd.url b/source/n/httpd/httpd.url index e3b1f00d..ad6794fe 100644 --- a/source/n/httpd/httpd.url +++ b/source/n/httpd/httpd.url @@ -1,2 +1,2 @@ -http://www.apache.org/dist/httpd/httpd-2.4.38.tar.bz2 -http://www.apache.org/dist/httpd/httpd-2.4.38.tar.bz2.asc +http://www.apache.org/dist/httpd/httpd-2.4.39.tar.bz2 +http://www.apache.org/dist/httpd/httpd-2.4.39.tar.bz2.asc diff --git a/source/n/iputils/iputils.SlackBuild b/source/n/iputils/iputils.SlackBuild index e5af5d80..9984e160 100755 --- a/source/n/iputils/iputils.SlackBuild +++ b/source/n/iputils/iputils.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2011, 2013, 2015, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011, 2013, 2015, 2018, 2019 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,8 +23,8 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=iputils -VERSION=s20180629 -BUILD=${BUILD:-3} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -67,9 +67,6 @@ rm -rf iputils-$VERSION tar xvf $CWD/iputils-$VERSION.tar.?z || exit 1 cd iputils-$VERSION || exit 1 -# Don't use nettle libraary for ping6: -sed -i "s/USE_NETTLE=yes/USE_NETTLE=no/g" Makefile - chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -77,22 +74,30 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -make VPATH=/usr/lib${LIBDIRSUFFIX} || exit 1 -( cd doc ; make man || exit 1 ) || exit 1 - -( cd ninfod - CFLAGS="$SLKCFLAGS" \ - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --mandir=/usr/man \ - --infodir=/usr/info \ - --disable-static \ - --build=$ARCH-slackware-linux || exit 1 - make || exit 1 -) || exit 1 - +# Configure and build: +export CFLAGS="$SLKCFLAGS" +export CXXFLAGS="$SLKCFLAGS" +mkdir meson-build +cd meson-build +meson setup \ + --prefix=/usr \ + --libdir=lib${LIBDIRSUFFIX} \ + --libexecdir=/usr/libexec \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --includedir=/usr/include \ + --datadir=/usr/share \ + --mandir=/usr/man \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --buildtype=release \ + -DBUILD_TRACEROUTE6=true \ + -DBUILD_RARPD=true \ + .. || exit 1 + ninja || exit 1 +cd .. + +cd meson-build strip arping clockdiff ninfod/ninfod ping rarpd rdisc tracepath traceroute6 mkdir -p $PKG/sbin cat arping > $PKG/sbin/arping @@ -126,9 +131,11 @@ mkdir -p $PKG/usr/man/man8 ln -sf tracepath.8.gz tracepath6.8.gz ) +cd .. mkdir -p $PKG/usr/doc/iputils-$VERSION cp -a \ INSTALL* LICENSE* README* RELNOTES* \ + ninfod/COPYING* \ $PKG/usr/doc/iputils-$VERSION chmod 644 $PKG/usr/doc/iputils-$VERSION/* diff --git a/source/n/postfix/postfix.SlackBuild b/source/n/postfix/postfix.SlackBuild index e82b1d43..1227f291 100755 --- a/source/n/postfix/postfix.SlackBuild +++ b/source/n/postfix/postfix.SlackBuild @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=postfix VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in |