svn commit: r502678 - head/games/xbill

Tobias Kortkamp tobik at FreeBSD.org
Sun May 26 04:22:15 UTC 2019


Author: tobik
Date: Sun May 26 04:22:14 2019
New Revision: 502678
URL: https://svnweb.freebsd.org/changeset/ports/502678

Log:
  games/xbill: Unbreak options
  
  There is no opt_CONFIGURE_ARGS_ON helper.  If both Motif and Athena
  are available in the build environment it would always be built
  with support for both toolkits.  Broken in r498490.

Modified:
  head/games/xbill/Makefile

Modified: head/games/xbill/Makefile
==============================================================================
--- head/games/xbill/Makefile	Sun May 26 04:14:52 2019	(r502677)
+++ head/games/xbill/Makefile	Sun May 26 04:22:14 2019	(r502678)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xbill
 PORTVERSION=	2.1
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	games
 MASTER_SITES=	http://www.xbill.org/download/
 
@@ -36,10 +36,10 @@ OPTIONS_DEFAULT=	ATHENA
 ATHENA_DESC=	Athena widget set
 MOTIF_DESC=	Motif widget set
 
-ATHENA_CONFIGURE_ARGS_ON=	--disable-motif
+ATHENA_CONFIGURE_ON=	--disable-motif
 ATHENA_USE=	xorg=xaw,xmu
 
-MOTIF_CONFIGURE_ARGS_ON=	--disable-athena
+MOTIF_CONFIGURE_ON=	--disable-athena
 MOTIF_USES=	motif
 
 post-patch:


More information about the svn-ports-all mailing list