2018-05-28 21:12:29 +02:00
#!/bin/bash
2009-08-26 17:00:38 +02:00
# Copyright 2000 BSDi, Inc. Concord, CA, USA
# Copyright 2001, 2002 Slackware Linux, Inc. Concord, CA, USA
2018-05-28 21:12:29 +02:00
# Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018 Patrick J. Volkerding, Sebeka, MN, USA
2009-08-26 17:00:38 +02:00
# 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.
# Set initial variables:
2018-05-28 21:12:29 +02:00
cd $(dirname $0) ; CWD=$(pwd)
2009-08-26 17:00:38 +02:00
TMP=${TMP:-/tmp}
2018-05-28 21:12:29 +02:00
PKGNAM=openssl
2012-09-26 03:10:42 +02:00
VERSION=${VERSION:-$(echo openssl-*.tar.gz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
2021-02-16 21:57:36 +01:00
BUILD=${BUILD:-1}
2010-05-19 10:58:23 +02:00
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
2016-06-30 22:26:57 +02:00
i?86) export ARCH=i586 ;;
2010-05-19 10:58:23 +02:00
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
2009-08-26 17:00:38 +02:00
PKG1=$TMP/package-openssl
PKG2=$TMP/package-ossllibs
NAME1=openssl-$VERSION-$ARCH-$BUILD
NAME2=openssl-solibs-$VERSION-$ARCH-$BUILD
2018-05-28 21:12:29 +02:00
# 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 "${NAME1}.txz"
echo "${NAME2}.txz"
exit 0
fi
2012-09-26 03:10:42 +02:00
# Parallel build doesn't link properly.
2018-09-21 20:51:07 +02:00
#NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
2009-08-26 17:00:38 +02:00
# So that ls has the right field counts for parsing...
export LC_ALL=C
cd $TMP
rm -rf $PKG1 $PKG2 openssl-$VERSION
2012-09-26 03:10:42 +02:00
tar xvf $CWD/openssl-$VERSION.tar.gz || exit 1
2009-08-26 17:00:38 +02:00
cd openssl-$VERSION
2016-06-30 22:26:57 +02:00
# Fix pod syntax errors which are fatal wih a newer perl:
find . -name "*.pod" -exec sed -i "s/^\=item \([0-9]\)\(\ \|$\)/\=item C<\1>/g" {} \;
2018-05-28 21:12:29 +02:00
## For openssl-1.1.x, don't try to change the soname.
## Use .so.1, not .so.1.0.0:
#sed -i "s/soname=\$\$SHLIB\$\$SHLIB_SOVER\$\$SHLIB_SUFFIX/soname=\$\$SHLIB.1/g" Makefile.shared
2016-06-30 22:26:57 +02:00
if [ "$ARCH" = "i586" ]; then
# Build with -march=i586 -mtune=i686:
sed -i "/linux-elf/s/fomit-frame-pointer/fomit-frame-pointer -march=i586 -mtune=i686/g" Configure
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
# Build with -march=i686 -mtune=i686:
sed -i "/linux-elf/s/fomit-frame-pointer/fomit-frame-pointer -march=i686 -mtune=i686/g" Configure
2009-08-26 17:00:38 +02:00
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
fi
2011-04-25 15:37:00 +02:00
# OpenSSL has a (nasty?) habit of bumping the internal version number with
# every release. This wouldn't be so bad, but some applications are so
# paranoid that they won't run against a different OpenSSL version than
# what they were compiled against, whether or not the ABI has changed.
#
2018-09-12 23:19:38 +02:00
# So, we will use the OPENSSL_VERSION_NUMBER from openssl-1.1.1 unless ABI
2011-04-25 15:37:00 +02:00
# breakage forces it to change. Yes, we're finally using this old trick. :)
2018-09-12 23:19:38 +02:00
sed -i "s/#define OPENSSL_VERSION_NUMBER.*/\/* Use 0x1010100fL (1.1.1) below to avoid pointlessly breaking the ABI *\/\n#define OPENSSL_VERSION_NUMBER 0x1010100fL/g" include/openssl/opensslv.h || exit 1
2011-04-25 15:37:00 +02:00
2009-08-26 17:00:38 +02:00
chown -R root:root .
mkdir -p $PKG1/usr/doc/openssl-$VERSION
2018-05-28 21:12:29 +02:00
cp -a ACKNOWLEDGEMENTS AUTHORS CHANGES* CONTRIBUTING FAQ INSTALL* \
LICENSE* NEWS NOTES* README* doc \
$PKG1/usr/doc/openssl-$VERSION
2019-09-30 23:08:32 +02:00
find $PKG1/usr/doc/openssl-$VERSION -type d -exec chmod 755 {} \+
find $PKG1/usr/doc/openssl-$VERSION -type f -exec chmod 644 {} \+
2009-08-26 17:00:38 +02:00
2010-05-19 10:58:23 +02:00
# If there's a CHANGES file, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES ]; then
DOCSDIR=$(echo $PKG1/usr/doc/*-$VERSION)
cat CHANGES | head -n 2000 > $DOCSDIR/CHANGES
touch -r CHANGES $DOCSDIR/CHANGES
fi
2009-08-26 17:00:38 +02:00
# These are the known patent issues with OpenSSL:
# name # expires
2016-06-30 22:26:57 +02:00
# MDC-2: 4,908,861 2007-03-13, not included.
2009-08-26 17:00:38 +02:00
# IDEA: 5,214,703 2010-05-25, not included.
2016-06-30 22:26:57 +02:00
#
# Although all of the above are expired, it's still probably
# not a good idea to include them as there are better
# algorithms to use.
2009-08-26 17:00:38 +02:00
./config \
--prefix=/usr \
--openssldir=/etc/ssl \
2018-05-28 21:12:29 +02:00
zlib \
enable-camellia \
enable-seed \
enable-rfc3779 \
enable-cms \
enable-md2 \
enable-rc5 \
enable-ssl3 \
enable-ssl3-method \
no-weak-ssl-ciphers \
2016-06-30 22:26:57 +02:00
no-mdc2 \
2018-05-28 21:12:29 +02:00
no-ec2m \
2009-08-26 17:00:38 +02:00
no-idea \
no-sse2 \
shared
2012-09-26 03:10:42 +02:00
make $NUMJOBS depend || make depend || exit 1
2009-08-26 17:00:38 +02:00
make $NUMJOBS || make || exit 1
2018-05-28 21:12:29 +02:00
make install DESTDIR=$PKG1 || exit 1
# No thanks on the static libraries:
rm -f $PKG1/usr/lib${LIBDIRSUFFIX}/*.a
# No thanks on manpages duplicated as html:
rm -rf $PKG1/usr/share/doc
2009-08-26 17:00:38 +02:00
Sat Jul 9 18:50:24 UTC 2022
a/aaa_libraries-15.1-x86_64-5.txz: Rebuilt.
Upgraded: libelf-0.187.so, libcurl.so.4.8.0, libidn.so.12.6.4,
libisl.so.23.2.0, libjson-c.so.5.2.0, libltdl.so.7.3.2, libpcre2-8.so.0.11.0,
libstdc++.so.6.0.30, libtdb.so.1.4.7, libtiff.so.5.8.0, libtiffxx.so.5.8.0.
a/kernel-firmware-20220708_be7798e-noarch-1.txz: Upgraded.
a/mkinitrd-1.4.11-x86_64-30.txz: Rebuilt.
Patched for kmod-30. Thanks to teoberi.
kde/attica-5.96.0-x86_64-1.txz: Upgraded.
kde/baloo-5.96.0-x86_64-1.txz: Upgraded.
kde/bluez-qt-5.96.0-x86_64-1.txz: Upgraded.
kde/breeze-icons-5.96.0-noarch-1.txz: Upgraded.
kde/extra-cmake-modules-5.96.0-x86_64-1.txz: Upgraded.
kde/frameworkintegration-5.96.0-x86_64-1.txz: Upgraded.
kde/kactivities-5.96.0-x86_64-1.txz: Upgraded.
kde/kactivities-stats-5.96.0-x86_64-1.txz: Upgraded.
kde/kapidox-5.96.0-x86_64-1.txz: Upgraded.
kde/karchive-5.96.0-x86_64-1.txz: Upgraded.
kde/kauth-5.96.0-x86_64-1.txz: Upgraded.
kde/kbookmarks-5.96.0-x86_64-1.txz: Upgraded.
kde/kcalendarcore-5.96.0-x86_64-1.txz: Upgraded.
kde/kcmutils-5.96.0-x86_64-1.txz: Upgraded.
kde/kcodecs-5.96.0-x86_64-1.txz: Upgraded.
kde/kcompletion-5.96.0-x86_64-1.txz: Upgraded.
kde/kconfig-5.96.0-x86_64-1.txz: Upgraded.
kde/kconfigwidgets-5.96.0-x86_64-1.txz: Upgraded.
kde/kcontacts-5.96.0-x86_64-1.txz: Upgraded.
kde/kcoreaddons-5.96.0-x86_64-1.txz: Upgraded.
kde/kcrash-5.96.0-x86_64-1.txz: Upgraded.
kde/kdav-5.96.0-x86_64-1.txz: Upgraded.
kde/kdbusaddons-5.96.0-x86_64-1.txz: Upgraded.
kde/kdeclarative-5.96.0-x86_64-1.txz: Upgraded.
kde/kded-5.96.0-x86_64-1.txz: Upgraded.
kde/kdelibs4support-5.96.0-x86_64-1.txz: Upgraded.
kde/kdesignerplugin-5.96.0-x86_64-1.txz: Upgraded.
kde/kdesu-5.96.0-x86_64-1.txz: Upgraded.
kde/kdewebkit-5.96.0-x86_64-1.txz: Upgraded.
kde/kdnssd-5.96.0-x86_64-1.txz: Upgraded.
kde/kdoctools-5.96.0-x86_64-1.txz: Upgraded.
kde/kemoticons-5.96.0-x86_64-1.txz: Upgraded.
kde/kfilemetadata-5.96.0-x86_64-1.txz: Upgraded.
kde/kglobalaccel-5.96.0-x86_64-1.txz: Upgraded.
kde/kguiaddons-5.96.0-x86_64-1.txz: Upgraded.
kde/kholidays-5.96.0-x86_64-1.txz: Upgraded.
kde/khtml-5.96.0-x86_64-1.txz: Upgraded.
kde/ki18n-5.96.0-x86_64-1.txz: Upgraded.
kde/kiconthemes-5.96.0-x86_64-1.txz: Upgraded.
kde/kidletime-5.96.0-x86_64-1.txz: Upgraded.
kde/kimageformats-5.96.0-x86_64-1.txz: Upgraded.
kde/kinit-5.96.0-x86_64-1.txz: Upgraded.
kde/kio-5.96.0-x86_64-1.txz: Upgraded.
kde/kirigami2-5.96.0-x86_64-1.txz: Upgraded.
kde/kitemmodels-5.96.0-x86_64-1.txz: Upgraded.
kde/kitemviews-5.96.0-x86_64-1.txz: Upgraded.
kde/kjobwidgets-5.96.0-x86_64-1.txz: Upgraded.
kde/kjs-5.96.0-x86_64-1.txz: Upgraded.
kde/kjsembed-5.96.0-x86_64-1.txz: Upgraded.
kde/kmediaplayer-5.96.0-x86_64-1.txz: Upgraded.
kde/knewstuff-5.96.0-x86_64-1.txz: Upgraded.
kde/knotifications-5.96.0-x86_64-1.txz: Upgraded.
kde/knotifyconfig-5.96.0-x86_64-1.txz: Upgraded.
kde/kpackage-5.96.0-x86_64-1.txz: Upgraded.
kde/kparts-5.96.0-x86_64-1.txz: Upgraded.
kde/kpeople-5.96.0-x86_64-1.txz: Upgraded.
kde/kplotting-5.96.0-x86_64-1.txz: Upgraded.
kde/kpty-5.96.0-x86_64-1.txz: Upgraded.
kde/kquickcharts-5.96.0-x86_64-1.txz: Upgraded.
kde/kross-5.96.0-x86_64-1.txz: Upgraded.
kde/krunner-5.96.0-x86_64-1.txz: Upgraded.
kde/kservice-5.96.0-x86_64-1.txz: Upgraded.
kde/ktexteditor-5.96.0-x86_64-1.txz: Upgraded.
kde/ktextwidgets-5.96.0-x86_64-1.txz: Upgraded.
kde/kunitconversion-5.96.0-x86_64-1.txz: Upgraded.
kde/kwallet-5.96.0-x86_64-1.txz: Upgraded.
kde/kwayland-5.96.0-x86_64-1.txz: Upgraded.
kde/kwidgetsaddons-5.96.0-x86_64-1.txz: Upgraded.
kde/kwindowsystem-5.96.0-x86_64-1.txz: Upgraded.
kde/kxmlgui-5.96.0-x86_64-1.txz: Upgraded.
kde/kxmlrpcclient-5.96.0-x86_64-1.txz: Upgraded.
kde/modemmanager-qt-5.96.0-x86_64-1.txz: Upgraded.
kde/networkmanager-qt-5.96.0-x86_64-1.txz: Upgraded.
kde/oxygen-icons5-5.96.0-noarch-1.txz: Upgraded.
kde/plasma-framework-5.96.0-x86_64-1.txz: Upgraded.
kde/prison-5.96.0-x86_64-1.txz: Upgraded.
kde/purpose-5.96.0-x86_64-1.txz: Upgraded.
kde/qqc2-desktop-style-5.96.0-x86_64-1.txz: Upgraded.
kde/solid-5.96.0-x86_64-1.txz: Upgraded.
kde/sonnet-5.96.0-x86_64-1.txz: Upgraded.
kde/syndication-5.96.0-x86_64-1.txz: Upgraded.
kde/syntax-highlighting-5.96.0-x86_64-1.txz: Upgraded.
kde/threadweaver-5.96.0-x86_64-1.txz: Upgraded.
l/SDL2_image-2.6.0-x86_64-1.txz: Upgraded.
l/SDL2_mixer-2.6.0-x86_64-1.txz: Upgraded.
l/alsa-lib-1.2.7.2-x86_64-1.txz: Upgraded.
l/imagemagick-7.1.0_41-x86_64-1.txz: Upgraded.
l/nodejs-16.16.0-x86_64-1.txz: Upgraded.
2022-07-09 20:50:24 +02:00
# Also no thanks on .pod versions of the already shipped manpages:
rm -rf $PKG1/usr/doc/openssl-*/doc/man*
2010-05-19 10:58:23 +02:00
# Make the .so.? library symlinks:
( cd $PKG1/usr/lib${LIBDIRSUFFIX} ; ldconfig -l lib*.so.* )
# Move libraries, as they might be needed by programs that bring a network
# mounted /usr online:
mkdir $PKG1/lib${LIBDIRSUFFIX}
( cd $PKG1/usr/lib${LIBDIRSUFFIX}
for file in lib*.so.?.* ; do
mv $file ../../lib${LIBDIRSUFFIX}
ln -sf ../../lib${LIBDIRSUFFIX}/$file .
done
cp -a lib*.so.? ../../lib${LIBDIRSUFFIX}
)
2009-08-26 17:00:38 +02:00
# Add a cron script to warn root if a certificate is going to expire soon:
mkdir -p $PKG1/etc/cron.daily
zcat $CWD/certwatch.gz > $PKG1/etc/cron.daily/certwatch.new
chmod 755 $PKG1/etc/cron.daily/certwatch.new
2018-05-28 21:12:29 +02:00
# Make config file non-clobber:
2009-08-26 17:00:38 +02:00
mv $PKG1/etc/ssl/openssl.cnf $PKG1/etc/ssl/openssl.cnf.new
2018-05-28 21:12:29 +02:00
# Remove duplicate config file:
rm -f $PKG1/etc/ssl/openssl.cnf.dist
2009-08-26 17:00:38 +02:00
( cd $PKG1
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
)
2018-05-28 21:12:29 +02:00
# Relocate the manpages:
mv $PKG1/usr/share/man $PKG1/usr
rmdir $PKG1/usr/share
# Fix manpage name collisions, and relink anything that linked to the old name:
( cd $PKG1/usr/man/man1
mv passwd.1 ssl_passwd.1
for file in *.1 ; do
if [ -L $file ]; then
if [ "$(readlink $file)" = "passwd.1" ]; then
rm -f $file
ln -sf ssl_passwd.1 $file
fi
fi
done )
2009-08-26 17:00:38 +02:00
# Compress and symlink the man pages:
if [ -d $PKG1/usr/man ]; then
( cd $PKG1/usr/man
for manpagedir in $(find . -type d -name "man*") ; do
( cd $manpagedir
for eachpage in $( find . -type l -maxdepth 1) ; do
ln -s $( readlink $eachpage ).gz $eachpage.gz
rm $eachpage
done
gzip -9 *.?
)
done
)
fi
2018-05-28 21:12:29 +02:00
# If there's an openssl1 directory, then build openssl-1.0 shared libraries for
2012-09-26 03:10:42 +02:00
# compatibility with programs linked to those:
2018-05-28 21:12:29 +02:00
if [ -d $CWD/openssl1 ]; then
( cd $CWD/openssl1
./openssl1.build || exit 1
2012-09-26 03:10:42 +02:00
) || exit 1
# Don't put these in the openssl package... openssl-solibs is enough.
#mkdir -p $PKG1/lib${LIBDIRSUFFIX}
2018-05-28 21:12:29 +02:00
#cp -a $TMP/package-openssl1/usr/lib/lib*.so.?.?.? $PKG1/lib${LIBDIRSUFFIX}
2012-09-26 03:10:42 +02:00
#( cd $PKG1/lib${LIBDIRSUFFIX} ; ldconfig -l lib*.so.?.?.? )
mkdir -p $PKG2/lib${LIBDIRSUFFIX}
2018-05-28 21:12:29 +02:00
cp -a $TMP/package-openssl1/usr/lib${LIBDIRSUFFIX}/lib*.so.?.?.? $PKG2/lib${LIBDIRSUFFIX}
2012-09-26 03:10:42 +02:00
( cd $PKG2/lib${LIBDIRSUFFIX} ; ldconfig -l lib*.so.?.?.? )
fi
2009-08-26 17:00:38 +02:00
cd $PKG1
chmod 755 usr/lib${LIBDIRSUFFIX}/pkgconfig
sed -i -e "s#lib\$#lib${LIBDIRSUFFIX}#" usr/lib${LIBDIRSUFFIX}/pkgconfig/*.pc
mkdir -p install
zcat $CWD/doinst.sh-openssl.gz > install/doinst.sh
cat $CWD/slack-desc.openssl > install/slack-desc
/sbin/makepkg -l y -c n $TMP/${NAME1}.txz
# Make runtime package:
2010-05-19 10:58:23 +02:00
mkdir -p $PKG2/lib${LIBDIRSUFFIX}
( cd lib${LIBDIRSUFFIX} ; cp -a lib*.so.* $PKG2/lib${LIBDIRSUFFIX} )
( cd $PKG2/lib${LIBDIRSUFFIX} ; ldconfig -l * )
2009-08-26 17:00:38 +02:00
mkdir -p $PKG2/etc
( cd $PKG2/etc ; cp -a $PKG1/etc/ssl . )
mkdir -p $PKG2/usr/doc/openssl-$VERSION
( cd $TMP/openssl-$VERSION
2018-08-15 00:56:09 +02:00
cp -a ACKNOWLEDGEMENTS AUTHORS CHANGES* CONTRIBUTING FAQ INSTALL* \
LICENSE* NEWS NOTES* README* $PKG2/usr/doc/openssl-$VERSION
2016-06-30 22:26:57 +02:00
# If there's a CHANGES file, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES ]; then
DOCSDIR=$(echo $PKG2/usr/doc/*-$VERSION)
cat CHANGES | head -n 2000 > $DOCSDIR/CHANGES
touch -r CHANGES $DOCSDIR/CHANGES
fi
2009-08-26 17:00:38 +02:00
)
2010-05-19 10:58:23 +02:00
2019-09-30 23:08:32 +02:00
find $PKG2/usr/doc/openssl-$VERSION -type d -exec chmod 755 {} \+
find $PKG2/usr/doc/openssl-$VERSION -type f -exec chmod 644 {} \+
2009-08-26 17:00:38 +02:00
cd $PKG2
mkdir -p install
zcat $CWD/doinst.sh-openssl-solibs.gz > install/doinst.sh
cat $CWD/slack-desc.openssl-solibs > install/slack-desc
/sbin/makepkg -l y -c n $TMP/${NAME2}.txz