diff options
author | B. Watson <yalhcru@gmail.com> | 2020-11-02 14:12:47 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-11-07 14:02:31 +0700 |
commit | 453c030f3e407f1516c67ab4c3d2d3d762dc8ec1 (patch) | |
tree | b45377bedacb7e8b616e9bcaf82a31c4e811332b /system/cpmtools | |
parent | ae6327d72dd4b379d91f63cabc05c0eed6f5171b (diff) |
system/cpmtools: Updated for version 2.21.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/cpmtools')
-rw-r--r-- | system/cpmtools/README | 2 | ||||
-rw-r--r-- | system/cpmtools/cpmtools.SlackBuild | 30 | ||||
-rw-r--r-- | system/cpmtools/cpmtools.info | 6 |
3 files changed, 16 insertions, 22 deletions
diff --git a/system/cpmtools/README b/system/cpmtools/README index b431569eb371..114bf0853b69 100644 --- a/system/cpmtools/README +++ b/system/cpmtools/README @@ -1,4 +1,4 @@ cpmtools (access CP/M filesystem images or floppies) cpmtools accesses CP/M file systems. It's similar to the well-known -mtools package (which accesses MSDOS file systems). +mtools package (which accesses MS-DOS file systems). diff --git a/system/cpmtools/cpmtools.SlackBuild b/system/cpmtools/cpmtools.SlackBuild index 81265004e5cb..0a34b57dd324 100644 --- a/system/cpmtools/cpmtools.SlackBuild +++ b/system/cpmtools/cpmtools.SlackBuild @@ -6,8 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20201102 bkw: +# - Updated for v2.21. Can't build older versions, sorry. +# - Switch to freebsd distfile source, as upstream vanishes the old +# source immediately upon a new release. + PRGNAM=cpmtools -VERSION=${VERSION:-2.20} +VERSION=${VERSION:-2.21} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -47,11 +52,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.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 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -64,19 +66,11 @@ CXXFLAGS="$SLKCFLAGS" \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --build=$ARCH-slackware-linux -make -# make install fails to create these. Grr. -mkdir -p $PKG/usr/bin $PKG/usr/man/man1 $PKG/usr/man/man5 $PKG/usr/share - -# really old configure script, no DESTDIR support. "autoreconf -fi" fails -# to build a new configure script, too. -make install prefix=$PKG/usr exec_prefix=$PKG/usr MANDIR=$PKG/usr/man - -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' fails to create this: +mkdir -p $PKG/usr/share/diskdefs -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 +make install DESTDIR=$PKG # binaries already stripped, yay! +gzip $PKG/usr/man/man?/*.? mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a README NEWS COPYING $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/system/cpmtools/cpmtools.info b/system/cpmtools/cpmtools.info index 57187fab7054..8777c5480bb8 100644 --- a/system/cpmtools/cpmtools.info +++ b/system/cpmtools/cpmtools.info @@ -1,8 +1,8 @@ PRGNAM="cpmtools" -VERSION="2.20" +VERSION="2.21" HOMEPAGE="http://www.moria.de/~michael/cpmtools/" -DOWNLOAD="http://www.moria.de/~michael/cpmtools/files/cpmtools-2.20.tar.gz" -MD5SUM="675dd715c93469330833c8b67abadcda" +DOWNLOAD="http://distcache.freebsd.org/ports-distfiles/cpmtools-2.21.tar.gz" +MD5SUM="b250cbcc09a0ca6fbdf850653f5f3e1f" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |