1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#!/bin/bash
# Slackware build script for wput
# Originally written by Chris Abela <email removed>.
# Formerly maintained by Ryan P.C. McQuen.
# Now maintained by B. Watson <yalhcru@gmail.com>.
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20210926 bkw:
# - update for v0.6.2+git20130413_11, for parity with Debian.
# - install /etc/wputrc.new (also add doinst.sh).
# - relicense as WTFPL with permission from Ryan P.C. McQuen (he's the one
# who added the license; the original author didn't include one).
# - add mention of ~/.netrc to the man page and our README.
# 20180103 bkw: update for v0.6.2. Which is from 9+ years ago...
# 20170309 bkw:
# - take over maintenance
# - i486 => i586
# - minor tweaks
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=wput
VERSION=${VERSION:-0.6.2+git20130413_11}
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 [ ! -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}
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
TARVER=${VERSION%_*}
DEBVER=${VERSION#*_}
rm -rf $PKG
mkdir -p $TMP $OUTPUT $PKG
cd $TMP
rm -rf $PRGNAM-$TARVER
tar xvf $CWD/${PRGNAM}_${TARVER}.orig.tar.bz2
cd $PRGNAM-$TARVER
tar xvf $CWD/${PRGNAM}_${TARVER}-${DEBVER}.debian.tar.xz
chown -R root:root .
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
# Apply all of Debian's patches. These include security fixes, compile
# fixes, typo/spelling fixes, etc.
for i in $( cat debian/patches/series ); do
patch -p1 < debian/patches/$i
done
# Further typo/grammar/spelling fixes for man pages. Also mention
# netrc(5) in wput.1, since it's not obvious.
patch -p1 < $CWD/manpages.diff
sed -i "s,@VERSION@,$VERSION," doc/*.1
# Note to self: on 64-bit, we can ignore this warning from configure:
# checking Large File System support: no
# What it really means is that, on 64-bit, we don't need any extra
# CFLAGS to enable large file (64-bit off_t) support. On 32-bit,
# we get "yes", and the appropriate flags are used automatically.
# If this were to fail on 32-bit, wput wouldn't be able to handle
# files >= 2GB. Quite possibly, nobody would ever notice...
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--mandir=/usr/man \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--build=$ARCH-slackware-linux \
--host=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
strip $PKG/usr/bin/$PRGNAM
# The shipped wputrc has everything commented out, so there's no reason
# not to install it in /etc (used to be in the doc dir).
mkdir -p $PKG/etc
cp -a doc/wputrc $PKG/etc/wputrc.new
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a ABOUT-NLS C* TODO doc/USAGE.* doc/passwordfile \
$PKG/usr/doc/$PRGNAM-$VERSION
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
|