diff options
author | Robert Clausecker <fuz@fuz.su> | 2023-01-12 19:47:16 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2023-01-12 19:48:59 +0000 |
commit | 8690517ab0871935aae7f95a305c9b8815993b14 (patch) | |
tree | d4854d00fdd138ddbbff9d17485d6e9ded4029ca | |
parent | 7f181b4098a9334a3cd745d869cbbcbf97d41cb0 (diff) | |
download | ports-8690517ab0871935aae7f95a305c9b8815993b14.tar.gz ports-8690517ab0871935aae7f95a305c9b8815993b14.zip |
devel/sope2: Fix build on armv7 arm64
- Bump PORTREVISION
PR: 267694
-rw-r--r-- | devel/sope2/Makefile | 4 | ||||
-rw-r--r-- | www/sogo2/Makefile | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/devel/sope2/Makefile b/devel/sope2/Makefile index 67c0f9b7d6ad..43c25ce4efa9 100644 --- a/devel/sope2/Makefile +++ b/devel/sope2/Makefile @@ -1,5 +1,6 @@ PORTNAME= sope2 PORTVERSION= 2.4.3 +PORTREVISION= 1 CATEGORIES= devel gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOPE-${PORTVERSION} @@ -44,6 +45,9 @@ MEMCACHED_RUN_DEPENDS= ${LOCALBASE}/bin/memcached:databases/memcached post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/sope-core/NGStreams/configure +.for f in config.guess config.sub + @${CP} ${TEMPLATES}/$f ${WRKSRC}/sope-core/NGStreams/ +.endfor post-patch-LDAP-off: @${REINPLACE_CMD} -e '/checkLinking "ldap"/d' ${WRKSRC}/configure diff --git a/www/sogo2/Makefile b/www/sogo2/Makefile index 63b02a71c6ba..abc21592267c 100644 --- a/www/sogo2/Makefile +++ b/www/sogo2/Makefile @@ -1,12 +1,13 @@ PORTNAME= sogo2 PORTVERSION= 2.4.3 +PORTREVISION= 1 CATEGORIES= www gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOGo-${PORTVERSION} MAINTAINER= acm@FreeBSD.org COMMENT= Groupware server with a focus on scalability and open standards -WWW?= https://sogo.nu/ +WWW?= https://sogo.nu/ LICENSE= GPLv2 |