# Template file for 'openssl'
pkgname=openssl
_openssl_version=1.0.0
version=${_openssl_version}d
distfiles="http://www.openssl.org/source/$pkgname-$version.tar.gz"
build_style=custom-install
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=92511d1f0caaa298dba250426f8e7d5d00b271847886d1adc62422778d6320db
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."

# Does not build with -j.
disable_parallel_build=yes

conf_files="/etc/ssl/openssl.cnf"
subpackages="libssl openssl-devel"

Add_dependency run glibc
Add_dependency run zlib
Add_dependency run libssl
Add_dependency full perl	">=0"
Add_dependency build zlib-devel

do_build()
{
	./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
		zlib shared threads -Wa,--noexecstack

	make ${makejobs}
}

do_install()
{
	make INSTALL_PREFIX=${DESTDIR} MANDIR=/usr/share/man install

	chmod 755 ${DESTDIR}/usr/lib/lib{ssl,crypto}.so.${_openssl_version}
	chmod 755 ${DESTDIR}/usr/lib/engines/*.so

	for _solib_ in libssl.so libcrypto.so; do
		cd ${DESTDIR}/usr/lib && \
			ln -sf ${_solib_}.${_openssl_version} ${_solib_}.1 && \
			ln -sf ${_solib_}.${_openssl_version} ${_solib_}
	done
}