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