aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorfeld <feld@FreeBSD.org>2017-04-10 03:53:33 +0800
committerfeld <feld@FreeBSD.org>2017-04-10 03:53:33 +0800
commit04368111ac3ffb28fb6e4b8ad6e0cb9579ad8a2c (patch)
treebdc54db50a56dd00e5db4b64e20660fb99eacd92 /security
parentc02ca1b083b8a583de2bfa79c511fd0fe66e90d6 (diff)
downloadfreebsd-ports-gnome-04368111ac3ffb28fb6e4b8ad6e0cb9579ad8a2c.tar.gz
freebsd-ports-gnome-04368111ac3ffb28fb6e4b8ad6e0cb9579ad8a2c.tar.zst
freebsd-ports-gnome-04368111ac3ffb28fb6e4b8ad6e0cb9579ad8a2c.zip
security/bearssl: Fix shared library installation
While here remove useless USES=compiler Reported by: bapt
Diffstat (limited to 'security')
-rw-r--r--security/bearssl/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/security/bearssl/Makefile b/security/bearssl/Makefile
index e74c1a959318..7a6849278ba4 100644
--- a/security/bearssl/Makefile
+++ b/security/bearssl/Makefile
@@ -3,7 +3,7 @@
PORTNAME= bearssl
PORTVERSION= 0.4
-PORTREVISION= 0
+PORTREVISION= 1
CATEGORIES= security devel
MASTER_SITES= https://bearssl.org/
@@ -12,12 +12,11 @@ COMMENT= Implementation of TLS/SSL in C
LICENSE= MIT
-USES= compiler
USE_GCC= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/build/brssl ${STAGEDIR}${LOCALBASE}/bin/
- ${INSTALL_DATA} ${WRKSRC}/build/libbearssl.so ${STAGEDIR}${LOCALBASE}/lib/
+ ${INSTALL_LIB} ${WRKSRC}/build/libbearssl.so ${STAGEDIR}${LOCALBASE}/lib/
(cd ${WRKSRC}/inc && ${COPYTREE_SHARE} \* ${STAGEDIR}${LOCALBASE}/include)
.include <bsd.port.mk>