summaryrefslogtreecommitdiffstats
path: root/system/partimage/partimage.SlackBuild
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2021-08-24 13:35:54 -0400
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2021-10-13 00:51:38 +0700
commit622077d3e77c0bc1f248f17bbb16b54fa6935afc (patch)
tree510de3200b180e2e30cb54742e40e910396bf154 /system/partimage/partimage.SlackBuild
parent9e5f047bccf89234d5b5d5fcfd20b435c2fbdab5 (diff)
downloadslackbuilds-622077d3e77c0bc1f248f17bbb16b54fa6935afc.tar.gz
slackbuilds-622077d3e77c0bc1f248f17bbb16b54fa6935afc.tar.xz
system/partimage: Fix -current build.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/partimage/partimage.SlackBuild')
-rw-r--r--system/partimage/partimage.SlackBuild17
1 files changed, 7 insertions, 10 deletions
diff --git a/system/partimage/partimage.SlackBuild b/system/partimage/partimage.SlackBuild
index 1b86a053ed..4c75682a26 100644
--- a/system/partimage/partimage.SlackBuild
+++ b/system/partimage/partimage.SlackBuild
@@ -6,6 +6,8 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20210824 bkw: fix build on -current
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=partimage
@@ -22,9 +24,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
@@ -57,17 +56,15 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
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 {} \;
+find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
+ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
# apply patches from Gentoo ebuild:
# https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-block/partimage/files
-# my patch is made from their zlib-1.2.5.2 and minor-typo, rolled up into
-# one patch that will apply with -p1.
+# my patch is made from their zlib, minor-typo, and openssl patches,
+# rolled up into one patch that will apply with -p1.
patch -p1 < $CWD/compilefix.diff
+autoreconf -if
# man pages and partimaged-passwd script came from Debian:
# http://http.debian.net/debian/pool/main/p/partimage/partimage_0.6.9-3.debian.tar.xz