From 04bf5c1d5a0ca740647dec2c5bc08efcb136f0dc Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 14 Jul 2014 10:58:22 +0200 Subject: [PATCH] libressl: split openssl utility into -openssl; libressl does not conflict with libssl now. --- srcpkgs/libressl-openssl | 1 + srcpkgs/libressl/template | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 120000 srcpkgs/libressl-openssl diff --git a/srcpkgs/libressl-openssl b/srcpkgs/libressl-openssl new file mode 120000 index 00000000000..cab5b6fcb51 --- /dev/null +++ b/srcpkgs/libressl-openssl @@ -0,0 +1 @@ +libressl \ No newline at end of file diff --git a/srcpkgs/libressl/template b/srcpkgs/libressl/template index 0d2aab1f824..b7a8233de9e 100644 --- a/srcpkgs/libressl/template +++ b/srcpkgs/libressl/template @@ -1,9 +1,8 @@ # Template file for 'libressl' pkgname=libressl version=2.0.1 -revision=1 +revision=2 build_style=gnu-configure -conflicts="openssl>=0 libssl>=0" short_desc="FREE version of the SSL/TLS protocol forked from OpenSSL" maintainer="Juan RP " license="OpenSSL-License, SSLeay-License" @@ -27,3 +26,13 @@ libressl-devel_package() { vmove usr/share/man/man3 } } + +libressl-openssl_package() { + short_desc+=" - openssl utility" + conflicts="openssl>=0" + replaces="libressl<2.0.1_2" + pkg_install() { + vmove usr/bin + vmove usr/share/man/man1 + } +}