Date: Fri, 28 Aug 2020 18:42:07 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r546793 - head/mail/wmbiff Message-ID: <202008281842.07SIg7rM042027@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008281842.07SIg7rM042027>