summaryrefslogtreecommitdiffstats
path: root/source/d/perl/perl.SlackBuild
blob: bb35a6bc558f943ee10e5c5cc75ddfea7b14a2f0 (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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
#!/bin/bash

# Copyright 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2017, 2018  Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# originally by:  David Cantrell <david@slackware.com>
# maintained by:  <volkerdi@slackware.com>

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

PKGNAM=perl
VERSION=5.26.2
BUILD=${BUILD:-4}

# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
  case "$( uname -m )" in
    i?86) export ARCH=i586 ;;
    arm*) export ARCH=arm ;;
    # Unless $ARCH is already set, use uname -m for all other archs:
       *) export ARCH=$( uname -m ) ;;
  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 "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
  exit 0
fi

NUMJOBS=${NUMJOBS:-" -j7 "}

# Set to "yes" to run tests:
MAKETEST=${MAKETEST:-no}

TMP=${TMP:-/tmp}
PKG=$TMP/package-perl

# Additional required modules:
#
# https://metacpan.org/release/DBD-mysql
DBDMYSQL=4.046
# https://metacpan.org/release/DBI
DBI=1.641
# https://metacpan.org/release/gettext
GETTEXT=1.07
# https://metacpan.org/release/TermReadKey
TERMREADKEY=2.37
# https://metacpan.org/release/URI
URI=1.74
# https://metacpan.org/release/XML-Parser
XMLPARSER=2.44
# https://metacpan.org/release/XML-Simple
XMLSIMPLE=2.25
# https://metacpan.org/release/Authen-SASL
AUTHENSASL=2.16
# https://metacpan.org/release/MIME-Base64
MIMEBASE64=3.15
# https://metacpan.org/release/IO-Socket-SSL
IOSOCKETSSL=2.056
# https://metacpan.org/release/Net-SSLeay
NETSSLEAY=1.85
# https://metacpan.org/release/libnet
LIBNET=3.11

if [ "$ARCH" = "i486" ]; then
  SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "s390" ]; then
  SLKCFLAGS="-O2"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
  SLKCFLAGS="-O2 -fPIC"
  LIBDIRSUFFIX="64"
fi

if [ -x /usr/bin/perl ]; then
  echo "Perl detected."
  echo
  echo "The perl package needs to be removed before building to ensure that"
  echo "the perl modules are included in the new package."
  echo
  echo "Removing the perl package in 15 seconds, and then continuing with the build."
  sleep 15
  removepkg perl
fi

# Clear build location:
rm -rf $PKG
mkdir -p $PKG

# Extract the source code:
cd $TMP
rm -rf perl-$VERSION
tar xvf $CWD/perl-$VERSION.tar.?z || exit 1

# Change into the source directory:
cd perl-$VERSION

# Adjust owner/perms to standard values:
chown -R root:root .
find . \
  \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
  -exec chmod 755 {} \; -o \
  \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
  -exec chmod 644 {} \;

# If after all this time you still don't trust threads, comment
# out the variable below:
#
USE_THREADS="-Dusethreads -Duseithreads"

if [ "$ARCH" = "x86_64" ]; then # adopted from "Cross Linux From Scratch"
  # Configure must be told to also use lib64:
  zcat $CWD/perl.configure.multilib.patch.gz | patch -p1 --verbose || exit 1
  # "perl -V" should report that libc is in /lib64
  sed -i -e '/libc/s#/lib/#/lib64/#' hints/linux.sh
  # make perl use lib64:
  echo 'installstyle="lib64/perl5"' >>hints/linux.sh
fi

# We no longer include suidperl.  To quote the INSTALL file:
#
#   Because of the buggy history of suidperl, and the difficulty
#   of properly security auditing as large and complex piece of
#   software as Perl, we cannot recommend using suidperl and the feature
#   should be considered deprecated.
#   Instead use for example 'sudo': http://www.courtesan.com/sudo/

# Configure perl:
./Configure -de \
  -Dprefix=/usr \
  -Dsiteprefix=/usr/local \
  -Dsitelib="/usr/local/share/perl5" \
  -Dsitearch="/usr/local/lib${LIBDIRSUFFIX}/perl5" \
  -Darchlib="/usr/lib${LIBDIRSUFFIX}/perl5" \
  -Dvendorprefix=/usr \
  -Dprivlib="/usr/share/perl5" \
  -Dvendorlib="/usr/share/perl5/vendor_perl" \
  -Dvendorarch="/usr/lib${LIBDIRSUFFIX}/perl5/vendor_perl" \
  -Dscriptdir='/usr/bin' \
  -Dcccdlflags='-fPIC' \
  -Dinstallprefix=/usr \
  -Dlibpth="/usr/local/lib${LIBDIRSUFFIX} /usr/lib${LIBDIRSUFFIX} /lib${LIBDIRSUFFIX}" \
  -Doptimize="$SLKCFLAGS" \
  $USE_THREADS \
  -Duseshrplib \
  -Ubincompat5005 \
  -Uversiononly \
  -Dpager='/usr/bin/less -isr' \
  -Darchname=$ARCH-linux || exit 1

# -Duseshrplib creates libperl.so
# -Ubincompat5005 helps create DSO -> libperl.so

# Build perl
make $NUMJOBS || exit 1
if [ "$MAKETEST" = "yes" ]; then
  make test || exit 1
fi

# Install perl (needed to build modules):
make install || exit 1
( cd /usr/bin
  ln -sf perl$VERSION perl
)

# Install perl package:
make install DESTDIR=$PKG || exit 1

# Add additional modules:
( cd ext
  ( tar xzvf $CWD/DBI-${DBI}.tar.gz
    cd DBI-${DBI}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/DBI-${DBI}
    cp -a README* $PKG/usr/doc/perl-$VERSION/DBI-${DBI}
    chmod 644 $PKG/usr/doc/perl-$VERSION/DBI-${DBI}/README*
  ) || exit 1
  ( tar xzvf $CWD/DBD-mysql-${DBDMYSQL}.tar.gz
    cd DBD-mysql-${DBDMYSQL}
    zcat $CWD/DBD-mysql.net_buffer_length.diff.gz | patch -p1 --verbose || exit 1
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/DBD-mysql-${DBDMYSQL}
    cp -a INSTALL.html README* TODO $PKG/usr/doc/perl-$VERSION/DBD-mysql-${DBDMYSQL}
    chmod 644 $PKG/usr/doc/perl-$VERSION/DBD-mysql-${DBDMYSQL}/*
  ) || exit 1
  ( tar xzvf $CWD/XML-Parser-${XMLPARSER}.tar.gz
    cd XML-Parser-${XMLPARSER}
    chown -R root:root .
    perl -I . Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/XML-Parser-${XMLPARSER}
    cp -a README* $PKG/usr/doc/perl-$VERSION/XML-Parser-${XMLPARSER}
    chmod 644 $PKG/usr/doc/perl-$VERSION/XML-Parser-${XMLPARSER}/*
  ) || exit 1
  ( tar xzvf $CWD/XML-Simple-${XMLSIMPLE}.tar.gz
    cd XML-Simple-${XMLSIMPLE}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/XML-Simple${XMLSIMPLE}
    cp -a README* $PKG/usr/doc/perl-$VERSION/XML-Simple${XMLSIMPLE}
    chmod 644 $PKG/usr/doc/perl-$VERSION/XML-Simple${XMLSIMPLE}/*
  ) || exit 1
  ( tar xzvf $CWD/URI-${URI}.tar.gz
    cd URI-${URI}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/URI-${URI}
    cp -a README* $PKG/usr/doc/perl-$VERSION/URI-${URI}
    chmod 644 $PKG/usr/doc/perl-$VERSION/URI-${URI}/*
  )
  ( tar xzvf $CWD/gettext-${GETTEXT}.tar.gz
    cd Locale-gettext-${GETTEXT}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/gettext-${GETTEXT}
    cp -a README* $PKG/usr/doc/perl-$VERSION/gettext-${GETTEXT}
    chmod 644 $PKG/usr/doc/perl-$VERSION/gettext-${GETTEXT}/*
  ) || exit 1
  ( tar xzvf $CWD/TermReadKey-${TERMREADKEY}.tar.gz
    cd TermReadKey-${TERMREADKEY}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/TermReadKey-${TERMREADKEY}
    cp -a README* $PKG/usr/doc/perl-$VERSION/TermReadKey-${TERMREADKEY}
    chmod 644 $PKG/usr/doc/perl-$VERSION/TermReadKey-${TERMREADKEY}/*
  ) || exit 1
  ( tar xzvf $CWD/Authen-SASL-${AUTHENSASL}.tar.gz
    cd Authen-SASL-${AUTHENSASL}
    chown -R root:root .
    perl -I . Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/Authen-SASL-${AUTHENSASL}
    cp -a README* META.yml $PKG/usr/doc/perl-$VERSION/Authen-SASL-${AUTHENSASL}
    chmod 644 $PKG/usr/doc/perl-$VERSION/Authen-SASL-${AUTHENSASL}/*
  ) || exit 1
  ( tar xzvf $CWD/MIME-Base64-${MIMEBASE64}.tar.gz
    cd MIME-Base64-${MIMEBASE64}
    chown -R root:root .
    perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/MIME-Base64-${MIMEBASE64}
    cp -a README* $PKG/usr/doc/perl-$VERSION/MIME-Base64-${MIMEBASE64}
    chmod 644 $PKG/usr/doc/perl-$VERSION/MIME-Base64-${MIMEBASE64}/*
  ) || exit 1
  ( tar xzvf $CWD/IO-Socket-SSL-${IOSOCKETSSL}.tar.gz
    cd IO-Socket-SSL-${IOSOCKETSSL}
    chown -R root:root .
    echo Y | perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/IO-Socket-SSL-${IOSOCKETSSL}
    cp -a README* $PKG/usr/doc/perl-$VERSION/IO-Socket-SSL-${IOSOCKETSSL}
    chmod 644 $PKG/usr/doc/perl-$VERSION/IO-Socket-SSL-${IOSOCKETSSL}/*
  ) || exit 1
  ( tar xzvf $CWD/Net-SSLeay-${NETSSLEAY}.tar.gz
    cd Net-SSLeay-${NETSSLEAY}
    chown -R root:root .
    echo y | perl Makefile.PL INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/Net-SSLeay-${NETSSLEAY}
    cp -a README* $PKG/usr/doc/perl-$VERSION/Net-SSLeay-${NETSSLEAY}
    chmod 644 $PKG/usr/doc/perl-$VERSION/Net-SSLeay-${NETSSLEAY}/*
  ) || exit 1
  ( tar xzvf $CWD/libnet-${LIBNET}.tar.gz
    cd libnet-${LIBNET}
    zcat $CWD/libnet-3.08-Do-not-create-Net-libnet.cfg.patch.gz | patch -p1 --verbose || exit 1
    chown -R root:root .
    echo | perl Makefile.PL \
      PREFIX=/usr \
      INSTALLDIRS=vendor
    make || exit 1
    if [ "$MAKETEST" = "yes" ]; then
      make test || exit 1
    fi
    make install || exit 1
    make install DESTDIR=$PKG || exit 1
    mkdir -p $PKG/usr/doc/perl-$VERSION/libnet-${LIBNET}
    cp -a Artistic Changes Copying INSTALL LICENCE README $PKG/usr/doc/perl-$VERSION/libnet-${LIBNET}
    chmod 644 $PKG/usr/doc/perl-$VERSION/libnet-${LIBNET}/*
  ) || exit 1
) || exit 1

# Strip everything:
( cd $PKG
  find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
  find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)

# There are also miniperl and microperl.
# I haven't had any requests for them, but would be willing
# to consider adding one or both to the package if anyone
# actually needs them for some reason.
#make microperl || exit 1

# Symlinks that replace hard links
( cd $PKG/usr/bin
  ln -sf perl$VERSION perl
)

# Install documentation
mkdir -p $PKG/usr/doc/perl-$VERSION
cp -a \
  AUTHORS Artistic Changes Copying INSTALL \
  README* \
  README.{cn,jp,ko,tw} README.linux \
  $PKG/usr/doc/perl-$VERSION

# We follow LSB with symlinks in /usr/share:
( cd $PKG/usr/share
  mv man ..
)
( cd $PKG/usr/man/man1
  mkdir foo
  cp *.1 foo
  rm *.1
  mv foo/* .
  rmdir foo
  gzip -9 *
)
( cd $PKG/usr/man/man3
  gzip -9 *
)

chmod 755 $PKG/usr/bin/*
chmod 644 $PKG/usr/man/man?/*

# Don't ship a perllocal.pod populated with vendor_perl additions. The file is
# meant for locally added perl modules:
if [ -r $PKG/usr/lib${LIBDIRSUFFIX}/perl5/perllocal.pod ]; then
  mv $PKG/usr/lib${LIBDIRSUFFIX}/perl5/perllocal.pod $PKG/usr/lib${LIBDIRSUFFIX}/perl5/vendor_perl.pod
fi

# Insert the slack-desc:
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

# Build the package:
cd $PKG
/sbin/makepkg -l y -c n $TMP/perl-$VERSION-$ARCH-$BUILD.txz