libressl: split shlibs into its own pkgs.
- libcrypto30: provides libcrypto.so.30. - libssl29: provides libssl.so.29. - libtls1: provides libtls.so.1. This in preparation to upgrade libressl to 2.1.3 that introduces a soname bump to libssl to 30.
This commit is contained in:
parent
94c66047f3
commit
1e5632c887
5 changed files with 34 additions and 7 deletions
|
@ -1656,9 +1656,9 @@ libid3.so id3lib-3.8.3_1
|
||||||
libid3-3.8.so.3 id3lib-3.8.3_1
|
libid3-3.8.so.3 id3lib-3.8.3_1
|
||||||
libgirara-gtk3.so.1 girara-0.2.2_1
|
libgirara-gtk3.so.1 girara-0.2.2_1
|
||||||
libjq.so.1 jq-devel-1.4_1
|
libjq.so.1 jq-devel-1.4_1
|
||||||
libcrypto.so.30 libressl-2.0.1_1
|
libcrypto.so.30 libcrypto30-2.1.2_3
|
||||||
libssl.so.29 libressl-2.1.2_1
|
libssl.so.29 libssl29-2.1.2_3
|
||||||
libtls.so.1 libressl-2.1.2_1
|
libtls.so.1 libtls1-2.1.2_3
|
||||||
libvamp-hostsdk.so.3 libvamp-plugin-sdk-2.2_6
|
libvamp-hostsdk.so.3 libvamp-plugin-sdk-2.2_6
|
||||||
libportmidi.so portmidi-217_1
|
libportmidi.so portmidi-217_1
|
||||||
libsox.so.2 sox-14.4.1_1
|
libsox.so.2 sox-14.4.1_1
|
||||||
|
|
1
srcpkgs/libcrypto30
Symbolic link
1
srcpkgs/libcrypto30
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
libressl
|
|
@ -1,17 +1,20 @@
|
||||||
# Template file for 'libressl'
|
# Template file for 'libressl'
|
||||||
pkgname=libressl
|
pkgname=libressl
|
||||||
version=2.1.2
|
version=2.1.2
|
||||||
revision=2
|
revision=3
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-libtls"
|
configure_args="--enable-libtls"
|
||||||
short_desc="FREE version of the SSL/TLS protocol forked from OpenSSL"
|
short_desc="Version of the TLS/crypto stack forked from OpenSSL"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
license="OpenSSL-License, SSLeay-License, ISC"
|
license="OpenSSL-License, SSLeay-License, ISC"
|
||||||
homepage="http://www.libressl.org/"
|
homepage="http://www.libressl.org/"
|
||||||
distfiles="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${pkgname}-${version}.tar.gz"
|
distfiles="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${pkgname}-${version}.tar.gz"
|
||||||
checksum=07c05f12e5d49dbfcf82dd23b6b4877b7cdb1c8e4c8dd27cb4d9e5758a6caf52
|
checksum=07c05f12e5d49dbfcf82dd23b6b4877b7cdb1c8e4c8dd27cb4d9e5758a6caf52
|
||||||
|
|
||||||
|
# Compat pkg that depends on the real pkgs.
|
||||||
|
depends="libcrypto30-${version}_${revision} libssl29-${version}_${revision} libtls1-${version}_${revision}"
|
||||||
|
|
||||||
post_build() {
|
post_build() {
|
||||||
$CC -Wall $CFLAGS -DHAVE_STRNDUP -Iinclude -Lcrypto/.libs \
|
$CC -Wall $CFLAGS -DHAVE_STRNDUP -Iinclude -Lcrypto/.libs \
|
||||||
$LDFLAGS ${FILESDIR}/c_rehash.c -o ${wrksrc}/c_rehash -lcrypto
|
$LDFLAGS ${FILESDIR}/c_rehash.c -o ${wrksrc}/c_rehash -lcrypto
|
||||||
|
@ -21,9 +24,30 @@ post_install() {
|
||||||
find ${DESTDIR}/usr/share/man/man1 -type f ! -name openssl.1 -delete
|
find ${DESTDIR}/usr/share/man/man1 -type f ! -name openssl.1 -delete
|
||||||
}
|
}
|
||||||
|
|
||||||
|
libcrypto30_package() {
|
||||||
|
short_desc+=" - crypto library"
|
||||||
|
replaces="libressl<2.1.2_3"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/lib/libcrypto.so.*
|
||||||
|
}
|
||||||
|
}
|
||||||
|
libssl29_package() {
|
||||||
|
short_desc+=" - SSL/TLS library"
|
||||||
|
replaces="libressl<2.1.2_3"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/lib/libssl.so.*
|
||||||
|
}
|
||||||
|
}
|
||||||
|
libtls1_package() {
|
||||||
|
short_desc+=" - new TLS library"
|
||||||
|
replaces="libressl<2.1.2_3"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/lib/libtls.so.*
|
||||||
|
}
|
||||||
|
}
|
||||||
libressl-devel_package() {
|
libressl-devel_package() {
|
||||||
short_desc+=" - development files"
|
short_desc+=" - development files"
|
||||||
depends="${sourcepkg}>=${version}_${revision}"
|
depends="libcrypto30-${version}_${revision} libssl29-${version}_${revision} libtls1-${version}_${revision}"
|
||||||
conflicts="openssl-devel>=0"
|
conflicts="openssl-devel>=0"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
|
@ -36,7 +60,7 @@ libressl-devel_package() {
|
||||||
libressl-openssl_package() {
|
libressl-openssl_package() {
|
||||||
short_desc+=" - utilities"
|
short_desc+=" - utilities"
|
||||||
provides="openssl-${version}_${revision}"
|
provides="openssl-${version}_${revision}"
|
||||||
replaces="libressl<2.0.1_2 openssl>=0"
|
replaces="openssl>=0"
|
||||||
conf_files="/etc/ssl/openssl.cnf"
|
conf_files="/etc/ssl/openssl.cnf"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vinstall ${FILESDIR}/openssl.cnf 644 etc/ssl
|
vinstall ${FILESDIR}/openssl.cnf 644 etc/ssl
|
||||||
|
|
1
srcpkgs/libssl29
Symbolic link
1
srcpkgs/libssl29
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
libressl
|
1
srcpkgs/libtls1
Symbolic link
1
srcpkgs/libtls1
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
libressl
|
Loading…
Reference in a new issue