void-packages/srcpkgs/openssl/template

64 lines
1.7 KiB
Plaintext
Raw Normal View History

# Template file for 'openssl'
pkgname=openssl
2012-06-07 08:33:56 +02:00
_openssl_version=1.0.1
2013-02-16 14:56:50 +01:00
version=${_openssl_version}e
revision=3
2012-06-07 08:33:56 +02:00
fulldepends="perl"
2013-02-05 09:54:32 +01:00
crossmakedepends="zlib-devel"
2012-06-07 08:33:56 +02:00
conf_files="/etc/ssl/openssl.cnf"
subpackages="libssl openssl-devel"
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-09-07 11:34:48 +02:00
license="BSD"
2012-06-07 08:33:56 +02:00
homepage="http://www.openssl.org/"
distfiles="https://www.openssl.org/source/$pkgname-$version.tar.gz"
2013-02-16 14:56:50 +01:00
checksum=f74f15e8c8ff11aa3d5bb5f276d202ec18d7246e95f961db76054199c69c1ae3
2012-01-04 21:48:53 +01:00
make_dirs="
/etc/ssl/certs 0755 root root
2012-01-04 21:48:53 +01:00
/etc/ssl/private 0750 root root"
2012-03-13 07:49:50 +01:00
do_configure() {
2012-06-07 08:33:56 +02:00
local _opts
if [ "${XBPS_MACHINE}" = "x86_64" ]; then
_target="linux-x86_64"
_opts="enable-ec_nistp_64_gcc_128"
elif [ "${XBPS_MACHINE}" = "i686" ]; then
_target="linux-elf"
2013-02-05 09:54:32 +01:00
elif [ "${XBPS_MACHINE}" = "armv6l" ]; then
_target="linux-armv4"
2012-06-07 08:33:56 +02:00
fi
./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
shared zlib enable-md2 threads ${_opts} \
2013-02-08 10:59:48 +01:00
${_target} -Wa,--noexecstack "${CFLAGS}"
2012-03-13 07:49:50 +01:00
}
2011-02-10 15:11:19 +01:00
2012-03-13 07:49:50 +01:00
do_build() {
2012-06-07 08:33:56 +02:00
make
2011-02-10 15:11:19 +01:00
}
2012-03-13 07:49:50 +01:00
do_install() {
2012-06-07 08:33:56 +02:00
local _sover="1.0.0"
2011-02-10 15:11:19 +01:00
make INSTALL_PREFIX=${DESTDIR} MANDIR=/usr/share/man install
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
2011-10-18 11:01:27 +02:00
for _solib_ in libssl.so libcrypto.so; do
2012-06-07 08:33:56 +02:00
chmod 755 ${DESTDIR}/usr/lib/${_solib_}.${_sover}
cd ${DESTDIR}/usr/lib && \
2012-06-07 08:33:56 +02:00
ln -sf ${_solib_}.${_sover} ${_solib_}.1 && \
ln -sf ${_solib_}.${_sover} ${_solib_}
done
# Rename passwd.1, conflicts with shadow.
mv ${DESTDIR}/usr/share/man/man1/passwd.1 \
${DESTDIR}/usr/share/man/man1/openssl-passwd.1
# Rename rand.3 and err.3, conflicts with man-pages.
for f in rand err; do
mv ${DESTDIR}/usr/share/man/man3/${f}.3 \
${DESTDIR}/usr/share/man/man3/openssl-${f}.3
}