aboutsummaryrefslogtreecommitdiff
path: root/network/ircII/ircII.SlackBuild
blob: eed5c0e9aacca7c6c9f42e46a06d9c2f9fcc2f9a (plain)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/bin/bash

# Slackware build script for ircII

# Written by B. Watson (urchlay@slackware.uk)

# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.

# I don't know why nobody's already done a SlackBuild for this.
# Normally I prefer all-lowercase package names, but this just looks
# *wrong* as "ircii".

# 20250115 bkw: note to self: the reason we're using a slackware.uk
# URL is that the download site's URLs aren't stable. Current version
# gets moved to old/ or just deleted, when a new one is released.

# 20241126 bkw: update for v20240918. Depart from the Debian packaging;
# their patches no longer apply.

# 20210913 bkw:
# - update for v20210616. The datestamp comes from the output of
#   "ircII -v" (not the ChangeLog).
# - change DEFSRV to irc.libera.chat, now that freenode is a wasteland.
# - use a private libexec/ircII dir instead of binaries in /usr/libexec.
#   done because some other ircII-based client might conflict someday.
# - generate and include HTML docs.
# - add NOTES_TO_SELF to avoid cluttering up the script with comments.
# - correct and expand Debian's man pages.
# - add support for 'paranoid mode'.
# - have slack-desc show default server and paranoid mode.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=ircII
VERSION=${VERSION:-20240918}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

SRCNAM=${PRGNAM,,}

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

PARANOID="${PARANOID:-no}"
case "$PARANOID" in
  y*|Y*|t*|T*|1) para_opt="--with-paranoid" ;;
  *)             para_opt="--without-paranoid" ;;
esac
echo "=== PARANOID='$PARANOID', para_opt='$para_opt'"

DEFSRV="${DEFSRV:-SSLIRC/irc.libera.chat:6697}"
case "$DEFSRV" in
  none|NONE) ;;
  *:*) srvopt="--with-default-server=$DEFSRV" ;;
  *) echo "$0: invalid DEFSRV, use host:port, SSLIRC/host:port, or 'none'" 1>&2
     exit 1 ;;
esac

echo "=== DEFSRV='$DEFSRV', srvopt='$srvopt'"

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$VERSION
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
cd $SRCNAM-$VERSION
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 {} +

# 20241126 bkw: Debian's patches no longer apply, except the reverse
# color one. spelling.diff is based on their old spelling patch.
# manpage.diff is my own typo/grammar/etc fixes. minor nitpicks, maybe.
for i in $CWD/patches/*; do
  echo "===> $i"
  patch -p1 < $i
done

# fix warnings caused by missing includes.
sed -i -e '1i#include <curses.h>' \
       -e '1i#include <term.h>' \
       source/term.c

# do not compile with termcap. there's no --disable-termcap or similar,
# have to do surgery.
# 20241126 bkw: also, upstream thinks it needs a newer autoconf than
# we have, but actually it's fine with 2.69.
sed -i -e '/AC_CHECK_LIB(termcap/s,termcap,ncurses,g' \
       -e 's,termcap\.h ,,' \
       -e '/AC_PREREQ/s,71,69,' \
       configure.in

autoreconf -ifv

# is there a disadvantage to enabling emacs meta keys?
# 20210913 bkw: force --with-openssl, rather than letting it
# autodetect. this is so we can find out right away if Slackware's
# openssl gets upgraded to something ircII doesn't yet support.
CFLAGS="$SLKCFLAGS -Wall -Wl,-s" \
./configure \
  $srvopt \
  $para_opt \
  --with-emacs-meta-keys \
  --with-openssl \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --libexecdir=/usr/libexec/$PRGNAM \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --docdir=/usr/doc/$PRGNAM-$VERSION \
  --build=$ARCH-slackware-linux

make

# make install doesn't create this dir, and doesn't respect DESTDIR
# for the man dir.
mkdir -p $PKG/usr/man/man1
make install DESTDIR=$PKG mandir=$PKG/usr/man/man1

# package called ircII, so let's have an ircII executable.
ln -s $(basename $(realpath $PKG/usr/bin/irc)) $PKG/usr/bin/$PRGNAM

rm -f $PKG/usr/man/man1/irc.1
gzip -9 $PKG/usr/man/man1/*.1
ln -s ircII.1.gz $PKG/usr/man/man1/irc.1.gz

# Debian includes some extra man pages. I've expanded them a bit and
# fixed some typos.
for i in $CWD/man/*.1; do
  sed "s,@VERSION@,$VERSION,g" < $i | \
    gzip -9c > $PKG/usr/man/man1/$( basename $i ).gz
done

# HTML docs (generated from /help text). Sure, why not?
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
perl doc/help2html.pl $PKG/usr/share/irc/help $PKG/usr/doc/$PRGNAM-$VERSION/html

PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
rm -f doc/*.1 doc/*.spec* doc/*.orig doc/*.pl
mkdir -p $PKGDOC
cp -a ChangeLog NEWS README doc/* contrib $PKGDOC
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild

mkdir -p $PKG/install
sed -e "s,@para_opt@,$para_opt," \
    -e "s,@srvopt@,$srvopt," \
    < $CWD/slack-desc \
    > $PKG/install/slack-desc

cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE