2008-10-24 06:46:29 +02:00
|
|
|
# Template file for 'openssl'
|
|
|
|
pkgname=openssl
|
2010-04-09 18:26:37 +02:00
|
|
|
_openssl_version=1.0.0
|
2010-12-07 14:45:13 +01:00
|
|
|
version=${_openssl_version}c
|
2008-10-28 23:57:52 +01:00
|
|
|
distfiles="http://www.openssl.org/source/$pkgname-$version.tar.gz"
|
2008-10-24 06:46:29 +02:00
|
|
|
build_style=configure
|
2009-02-04 03:40:25 +01:00
|
|
|
configure_script="./config"
|
2010-04-09 18:26:37 +02:00
|
|
|
configure_args="--prefix=/usr --openssldir=/etc/ssl --libdir=lib
|
|
|
|
zlib shared threads -Wa,--noexecstack"
|
|
|
|
make_install_target="INSTALL_PREFIX=$XBPS_DESTDIR/$pkgname-$version
|
|
|
|
MANDIR=/usr/share/man install"
|
2010-11-02 08:30:51 +01:00
|
|
|
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
|
2008-10-24 06:46:29 +02:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-12-07 14:45:13 +01:00
|
|
|
checksum=f731b36de3edaa361179ae6f449668b248a360e34e31e92902d976e9b9d604eb
|
2008-10-24 06:46:29 +02:00
|
|
|
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."
|
|
|
|
|
2008-10-29 22:45:09 +01:00
|
|
|
# Does not build with -j.
|
|
|
|
disable_parallel_build=yes
|
2008-12-14 01:48:36 +01:00
|
|
|
conf_files="/etc/ssl/openssl.cnf"
|
2010-11-02 08:30:51 +01:00
|
|
|
subpackages="libssl openssl-devel"
|
2009-02-25 06:15:20 +01:00
|
|
|
|
2010-01-15 06:08:22 +01:00
|
|
|
Add_dependency run glibc
|
2010-11-17 21:45:51 +01:00
|
|
|
Add_dependency run zlib
|
2010-11-02 08:30:51 +01:00
|
|
|
Add_dependency run libssl
|
2010-11-01 10:36:11 +01:00
|
|
|
Add_dependency full perl ">=0"
|
2010-01-15 06:08:22 +01:00
|
|
|
Add_dependency build zlib-devel
|
2008-10-24 06:46:29 +02:00
|
|
|
|
2008-10-27 06:12:30 +01:00
|
|
|
post_install()
|
|
|
|
{
|
2010-06-02 16:04:08 +02:00
|
|
|
chmod 755 ${DESTDIR}/usr/lib/lib{ssl,crypto}.so.${_openssl_version}
|
2010-04-27 23:52:39 +02:00
|
|
|
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
|
|
|
|
|
2010-04-09 18:26:37 +02:00
|
|
|
for _solib_ in libssl.so libcrypto.so; do
|
|
|
|
cd ${DESTDIR}/usr/lib && \
|
2010-06-02 16:04:08 +02:00
|
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}.1 && \
|
|
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}
|
2009-02-04 03:40:25 +01:00
|
|
|
done
|
2008-10-27 06:12:30 +01:00
|
|
|
}
|