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
|
2012-01-04 21:48:53 +01:00
|
|
|
version=${_openssl_version}f
|
2011-09-07 11:34:48 +02:00
|
|
|
homepage="http://www.openssl.org/"
|
|
|
|
distfiles="${homepage}/source/$pkgname-$version.tar.gz"
|
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>"
|
2011-09-07 11:34:48 +02:00
|
|
|
license="BSD"
|
2012-01-04 21:48:53 +01:00
|
|
|
checksum=faf1eab0ef85fd6c3beca271c356b31b5cc831e2c6b7f23cf672e7ab4680fde1
|
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
|
|
|
disable_parallel_build=yes
|
2011-02-10 15:11:19 +01:00
|
|
|
|
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"
|
2012-01-04 21:48:53 +01:00
|
|
|
make_dirs="
|
|
|
|
/etc/ssl/certs 0750 root root
|
|
|
|
/etc/ssl/private 0750 root root"
|
2009-02-25 06:15:20 +01:00
|
|
|
|
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
|
|
|
|
2011-02-10 15:11:19 +01:00
|
|
|
do_build()
|
|
|
|
{
|
|
|
|
./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
|
|
|
|
zlib shared threads -Wa,--noexecstack
|
|
|
|
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
2008-10-27 06:12:30 +01:00
|
|
|
{
|
2011-02-10 15:11:19 +01:00
|
|
|
make INSTALL_PREFIX=${DESTDIR} MANDIR=/usr/share/man install
|
|
|
|
|
2010-04-27 23:52:39 +02:00
|
|
|
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
|
2011-10-18 11:01:27 +02:00
|
|
|
for _solib_ in libssl.so libcrypto.so; do
|
2011-10-18 10:41:48 +02:00
|
|
|
chmod 755 ${DESTDIR}/usr/lib/${_solib_}.${_openssl_version}
|
2010-04-09 18:26:37 +02:00
|
|
|
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
|
|
|
}
|