git: ca179c4d74f2 - main - pkgbase: Put openssl in its own package
Emmanuel Vadot
manu at FreeBSD.org
Thu May 13 15:46:44 UTC 2021
The branch main has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=ca179c4d74f2ce1e458bae1826bd77d17f28aab2
commit ca179c4d74f2ce1e458bae1826bd77d17f28aab2
Author: Emmanuel Vadot <manu at FreeBSD.org>
AuthorDate: 2021-05-02 15:46:17 +0000
Commit: Emmanuel Vadot <manu at FreeBSD.org>
CommitDate: 2021-05-13 15:42:29 +0000
pkgbase: Put openssl in its own package
This is useful for upgrade and also to make tiny jail so they won't
depend on FreeBSD-utilities (where openssl was packaged before).
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D30081
---
release/packages/Makefile.package | 2 ++
secure/lib/libcrypto/Makefile | 2 +-
secure/lib/libssl/Makefile | 1 +
secure/usr.bin/openssl/Makefile | 1 +
4 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/release/packages/Makefile.package b/release/packages/Makefile.package
index 125732267008..dd7ce63d78a1 100644
--- a/release/packages/Makefile.package
+++ b/release/packages/Makefile.package
@@ -57,6 +57,8 @@ kernel_COMMENT= FreeBSD Kernel
kernel_DESC= FreeBSD Kernel
manuals_COMMENT= Manual Pages
manuals_DESC= Manual Pages
+openssl_COMMENT= OpenSSL Library and Utility
+openssl_DESC= OpenSSL Library and Utility
rc_COMMENT= RC Scripts
rc_DESC= RC Scripts
rcmds_COMMENT= Remote Command Utilities
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index b82b5c8d84b1..ff9303c9edae 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -6,7 +6,7 @@ SUBDIR= engines
.include <bsd.own.mk>
.include <src.opts.mk>
-PACKAGE= runtime
+PACKAGE= openssl
LIB= crypto
SHLIB_MAJOR= 111
VERSION_MAP= ${.CURDIR}/Version.map
diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile
index 74856aaa3b1f..893ea6ebed79 100644
--- a/secure/lib/libssl/Makefile
+++ b/secure/lib/libssl/Makefile
@@ -5,6 +5,7 @@
LIB= ssl
SHLIB_MAJOR= 111
VERSION_MAP= ${.CURDIR}/Version.map
+PACKAGE= openssl
NO_LINT=
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile
index e71be39bae56..5f3bf395a149 100644
--- a/secure/usr.bin/openssl/Makefile
+++ b/secure/usr.bin/openssl/Makefile
@@ -3,6 +3,7 @@
CONFS= openssl.cnf
CONFSDIR= /etc/ssl
PROG= openssl
+PACKAGE= openssl
LIBADD= ssl crypto
More information about the dev-commits-src-main
mailing list