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