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
|
2011-09-07 11:34:48 +02:00
|
|
|
version=${_openssl_version}e
|
|
|
|
homepage="http://www.openssl.org/"
|
|
|
|
distfiles="${homepage}/source/$pkgname-$version.tar.gz"
|
2011-02-10 15:11:19 +01:00
|
|
|
build_style=custom-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>"
|
2011-09-07 11:34:48 +02:00
|
|
|
license="BSD"
|
|
|
|
checksum=e361dc2775733fb84de7b5bf7b504778b772869e8f7bfac0b28b935cbf7380f7
|
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"
|
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
|
|
|
|
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 10:56:58 +02:00
|
|
|
for f in _solib_ 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
|
|
|
}
|