99 lines
2.3 KiB
Bash
Executable File
99 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# This is a buildpkg build.sh script
|
|
# build.sh helper functions
|
|
. ${BUILDPKG_SCRIPTS}/build.sh.functions
|
|
#
|
|
###########################################################
|
|
# Check the following 4 variables before running the script
|
|
topdir=openssl
|
|
version=3.0.0
|
|
pkgver=1
|
|
source[0]=https://openssl.org/source/$topdir-$version.tar.gz
|
|
# If there are no patches, simply comment this
|
|
patch[0]=0001-Fix-fallback-for-missing-getaddrinfo.patch
|
|
patch[1]=0002-Include-sys-atomic.h-directly-on-Solaris.patch
|
|
patch[2]=0003-Provide-socklen_t-on-Solaris-2.6.patch
|
|
patch[3]=0004-Fix-build-with-posix95-pthreads.patch
|
|
patch[4]=0005-Handle-missing-stdint.h-on-older-Solaris.patch
|
|
patch[5]=0006-Handle-missing-strtoumax.patch
|
|
|
|
# Source function library
|
|
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
|
|
|
|
# For cpu settings
|
|
. ${BUILDPKG_BASE}/gcc/build.sh.gcc.cpu
|
|
|
|
# Global settings
|
|
make_check_target="test"
|
|
__configure="./Configure"
|
|
configure_args=(--prefix=$prefix --openssldir=${prefix}/${_sharedir}/ssl --with-rand-seed=devrandom,egd zlib shared enable-egd)
|
|
if [ "$arch" = "sparc" ]; then
|
|
configure_args+=(solaris-sparc${gcc_arch}-gcc)
|
|
else
|
|
configure_args+=(solaris-x86-gcc 386)
|
|
configure_args+=(CFLAGS="-march=${gcc_arch}")
|
|
fi
|
|
configure_args+=(LDFLAGS="-L$prefix/lib -R$prefix/lib -lposix4")
|
|
cpus_online=$(psrinfo | nawk '/on-line/ {count++} END { print count }')
|
|
|
|
reg prep
|
|
prep()
|
|
{
|
|
generic_prep
|
|
}
|
|
|
|
reg build
|
|
build()
|
|
{
|
|
setdir source
|
|
|
|
echo $__configure "${configure_args[@]}"
|
|
$__configure "${configure_args[@]}"
|
|
|
|
${__make} -j${cpus_online} depend
|
|
${__make} -j${cpus_online}
|
|
}
|
|
|
|
reg check
|
|
check()
|
|
{
|
|
generic_check
|
|
}
|
|
|
|
reg install
|
|
install()
|
|
{
|
|
clean stage
|
|
setdir source
|
|
${__make} DESTDIR=$stagedir install
|
|
# Make .sos writable
|
|
chmod 755 ${stagedir}${prefix}/${_libdir}/*.so.*
|
|
chmod 755 ${stagedir}${prefix}/${_libdir}/engines-3/*.so
|
|
# Nuke static libraries - they just take up space
|
|
${__rm} -f ${stagedir}${prefix}/${_libdir}/*.a
|
|
|
|
doc README* CHANGES.md LICENSE.txt NEWS.md
|
|
|
|
custom_install=1
|
|
generic_install INSTALL_PREFIX
|
|
|
|
# Compatible with previous releases
|
|
}
|
|
|
|
reg pack
|
|
pack()
|
|
{
|
|
generic_pack
|
|
}
|
|
|
|
reg distclean
|
|
distclean()
|
|
{
|
|
clean distclean
|
|
}
|
|
|
|
###################################################
|
|
# No need to look below here
|
|
###################################################
|
|
build_sh $*
|