summaryrefslogtreecommitdiffstats
path: root/misc/hxtools/hxtools.SlackBuild
blob: 3291e184760489562b552b9b9c79551c72e360c9 (about) (plain) (blame)
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
184
185
186
187
188
189
190
191
192
193
194
195
#!/bin/bash

# Slackware build script for hxtools

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

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

# This build includes both hxtools and the libHX library it depends
# on. In the unlikely event that someone finds another project that
# depends on libHX and wants to package it up for SBo, whatever it is
# can just list hxtools as a dependency.

# 20230109 bkw: update for v20221120, include new consoleet-utils.
# TODO: package up the consoleet fonts, too (in a separate build).

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

PRGNAM=hxtools
VERSION=${VERSION:-20221120}
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

LIBNAM=libHX
LIBVER=${LIBVER:-4.8}
LEETNAM=consoleet-utils
LEETVER=${LEETVER:-1.1}

PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
LIBDOC=$PKGDOC/$LIBNAM-$LIBVER
LEETDOC=$PKGDOC/$LEETNAM-$LEETVER


rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
mkdir -p $PRGNAM
cd $PRGNAM
TOPDIR="$( pwd )"
tar xvf $CWD/$PRGNAM-$VERSION.tar.zst
tar xvf $CWD/$LIBNAM-$LIBVER.tar.xz
tar xvf $CWD/$LEETNAM-$LEETVER.tar.zst
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 {} \+

### libHX:
cd $LIBNAM-$LIBVER

CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --docdir=/usr/doc/$PRGNAM-$VERSION \
  --disable-static \
  --build=$ARCH-slackware-linux

make # V=1
make install-strip DESTDIR=$PKG
rm -f $PKG/usr/lib*/*.la

# LICENSE.GPL3 and LICENSE.WTFPL are also in hxtools, don't install here.
mkdir -p $LIBDOC
cp -a COPYING LICENSE.LGPL* *.rst doc $LIBDOC

### hxtools itself, link with the libHX in $PKG:
cd $TOPDIR/$PRGNAM-$VERSION

# look for extract_dfqshared.pm in /usr/share/$PRGNAM, not /usr/bin.
patch -p1 < $CWD/shared_perl_lib.diff

libHX_CFLAGS="-I$PKG/usr/include" \
libHX_LIBS="-L$PKG/usr/lib$LIBDIRSUFFIX -lHX" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --docdir=/usr/doc/$PRGNAM-$VERSION \
  --disable-static \
  --build=$ARCH-slackware-linux

make # V=1
make install-strip DESTDIR=$PKG

# dunno why so much stuff is installed in libexec... easier to
# move it after the fact than patch the autotools stuff to fix it.
mv $PKG/usr/libexec/$PRGNAM/* $PKG/usr/bin
rm -rf $PKG/usr/libexec

# move this to where the patched extract_* tools expect to find it.
install -m0644 $PKG/usr/bin/extract_dfqshared.pm $PKG/usr/share/$PRGNAM
rm -f $PKG/usr/bin/extract_dfqshared.pm

# these don't get installed by 'make install'
install -m0755 sadmin/filenameconv $PKG/usr/bin
install -s -m0755 smath/graph-{fanout,lchain} $PKG/usr/bin

# nor these...
mkdir -p $PKG/usr/sbin
install -m0755 sadmin/raregetty $PKG/usr/sbin
# this isn't useful on Slackware, is it?
install -m0755 sadmin/rpmdep.pl $PKG/usr/sbin

cp -a doc/filenameconv.1 $PKG/usr/man/man1
cp -a doc/raregetty.8 $PKG/usr/man/man8

# these 2 conflict with bsd-games and man-db:
rm -f $PKG/usr/bin/{rot13,man2html} \
      $PKG/usr/man/man1/{rot13,man2html}.1

# there's also a bin2c in SBo's cudatoolkit, but it's installed to
# /usr/share/cuda/bin, so there's no conflict here.

# redundant copy (the other one's in etc/):
rm -f $PKG/usr/share/hxtools/hxloginpref.conf

cp -a LICENSE* doc/*.rst examples $PKGDOC

### consoleet-utils (used to be included in hxtools).
cd $TOPDIR/$LEETNAM-$LEETVER
libHX_CFLAGS="-I$PKG/usr/include" \
libHX_LIBS="-L$PKG/usr/lib$LIBDIRSUFFIX -lHX" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --docdir=/usr/doc/$PRGNAM-$VERSION \
  --disable-static \
  --build=$ARCH-slackware-linux

make # V=1
make install-strip DESTDIR=$PKG
mkdir -p $LEETDOC
cp -a doc/changelog.rst $LEETDOC

gzip -9 $PKG/usr/man/man*/*

# symlink redundant licenses
ln -s ../LICENSE.GPL3 $LIBDOC/LICENSE.GPL3
ln -s ../LICENSE.GPL3 $LEETDOC/LICENSE.GPL3
ln -s ../LICENSE.MIT $LEETDOC/LICENSE.MIT
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

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