void-packages/srcpkgs/openssl/template

58 lines
1.6 KiB
Text
Raw Normal View History

# Template file for 'openssl'
pkgname=openssl
2012-06-07 06:33:56 +00:00
_openssl_version=1.0.1
version=${_openssl_version}c
revision=1
fulldepends="perl"
conf_files="/etc/ssl/openssl.cnf"
subpackages="libssl openssl-devel"
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-09-07 09:34:48 +00:00
license="BSD"
2012-06-07 06:33:56 +00:00
homepage="http://www.openssl.org/"
distfiles="https://www.openssl.org/source/$pkgname-$version.tar.gz"
checksum=2a9eb3cd4e8b114eb9179c0d3884d61658e7d8e8bf4984798a5f5bd48e325ebe
long_desc="
The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, full-featured, and Open Source toolkit implementing the
Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1)
protocols as well as a full-strength general purpose cryptography library."
2012-01-04 20:48:53 +00:00
make_dirs="
/etc/ssl/certs 0755 root root
2012-01-04 20:48:53 +00:00
/etc/ssl/private 0750 root root"
2012-03-13 06:49:50 +00:00
do_configure() {
2012-06-07 06:33:56 +00:00
local _opts
if [ "${XBPS_MACHINE}" = "x86_64" ]; then
_target="linux-x86_64"
_opts="enable-ec_nistp_64_gcc_128"
elif [ "${XBPS_MACHINE}" = "i686" ]; then
_target="linux-elf"
fi
./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
shared zlib enable-md2 threads ${_opts} \
${_target} -Wa,--noexecstack \
"${CFLAGS}" "${LDFLAGS}" -DOPENSSL_NO_TLS1_2_CLIENT
2012-03-13 06:49:50 +00:00
}
2011-02-10 14:11:19 +00:00
2012-03-13 06:49:50 +00:00
do_build() {
2012-06-07 06:33:56 +00:00
make
2011-02-10 14:11:19 +00:00
}
2012-03-13 06:49:50 +00:00
do_install() {
2012-06-07 06:33:56 +00:00
local _sover="1.0.0"
2011-02-10 14:11:19 +00:00
make INSTALL_PREFIX=${DESTDIR} MANDIR=/usr/share/man install
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
2011-10-18 09:01:27 +00:00
for _solib_ in libssl.so libcrypto.so; do
2012-06-07 06:33:56 +00:00
chmod 755 ${DESTDIR}/usr/lib/${_solib_}.${_sover}
cd ${DESTDIR}/usr/lib && \
2012-06-07 06:33:56 +00:00
ln -sf ${_solib_}.${_sover} ${_solib_}.1 && \
ln -sf ${_solib_}.${_sover} ${_solib_}
done
}