svn commit: r546793 - head/mail/wmbiff

Renato Botelho garga at FreeBSD.org
Fri Aug 28 18:42:07 UTC 2020


Author: garga
Date: Fri Aug 28 18:42:06 2020
New Revision: 546793
URL: https://svnweb.freebsd.org/changeset/ports/546793

Log:
  Fix build with clang11 and other tweaks
  
  - Add -fcommon for now to fix build with clang11
  - Pet portlint
  - Add missing dependencies to USE_XORG
  - Bump PORTREVISION

Modified:
  head/mail/wmbiff/Makefile

Modified: head/mail/wmbiff/Makefile
==============================================================================
--- head/mail/wmbiff/Makefile	Fri Aug 28 18:32:27 2020	(r546792)
+++ head/mail/wmbiff/Makefile	Fri Aug 28 18:42:06 2020	(r546793)
@@ -3,7 +3,7 @@
 
 PORTNAME=	wmbiff
 PORTVERSION=	0.4.27
-PORTREVISION=	18
+PORTREVISION=	19
 CATEGORIES=	mail windowmaker afterstep
 MASTER_SITES=	SF
 
@@ -12,20 +12,23 @@ COMMENT=	xbiff-like Window Maker dock app
 
 LICENSE=	GPLv2
 
-OPTIONS_DEFINE=	GNUTLS
-
 USES=		shebangfix xorg
+
+OPTIONS_DEFINE=	GNUTLS
 SHEBANG_FILES=	scripts/security.debian.rb
-USE_XORG=	xpm
+USE_XORG=	x11 xext xpm
 GNU_CONFIGURE=	yes
 
+# Temporary fix to build with clang11
+CFLAGS+=	-fcommon
+
 PLIST_FILES=	bin/wmbiff \
 		lib/wmbiff/security.debian.rb \
 		man/man1/wmbiff.1.gz \
 		man/man5/wmbiffrc.5.gz \
-		%%DATADIR%%/sample.wmbiffrc \
-		%%DATADIR%%/skins/wmbiff-master-contrast.xpm \
-		%%DATADIR%%/skins/wmbiff-master-led.xpm
+		${DATADIR}/sample.wmbiffrc \
+		${DATADIR}/skins/wmbiff-master-contrast.xpm \
+		${DATADIR}/skins/wmbiff-master-led.xpm
 
 GNUTLS_LIB_DEPENDS=	libgcrypt.so:security/libgcrypt \
 			libgnutls.so:security/gnutls


More information about the svn-ports-head mailing list