Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Mar 2016 23:20:33 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r412141 - in head/x11/xstroke: . files
Message-ID:  <201603292320.u2TNKXfQ098699@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Tue Mar 29 23:20:33 2016
New Revision: 412141
URL: https://svnweb.freebsd.org/changeset/ports/412141

Log:
  Replace the bison dependency by byacc
  
  It reduces the number of build dependencies required (bison requires gettext)
  Also note that byacc is in base since FreeBSD 10.0

Modified:
  head/x11/xstroke/Makefile
  head/x11/xstroke/files/patch-Imakefile

Modified: head/x11/xstroke/Makefile
==============================================================================
--- head/x11/xstroke/Makefile	Tue Mar 29 22:21:00 2016	(r412140)
+++ head/x11/xstroke/Makefile	Tue Mar 29 23:20:33 2016	(r412141)
@@ -13,7 +13,8 @@ COMMENT=	Fullscreen gesture recognition
 LICENSE=	GPLv2 GPLv3
 LICENSE_COMB=	dual
 
-USES=		bison imake
+USES=		imake
+BUILD_DEPENDS=	byacc:devel/byacc
 USE_XORG=	xft x11 xext xi xtst
 
 PLIST_FILES=	bin/xstroke %%ETCDIR%%/alphabet man/man1/xstroke.1.gz

Modified: head/x11/xstroke/files/patch-Imakefile
==============================================================================
--- head/x11/xstroke/files/patch-Imakefile	Tue Mar 29 22:21:00 2016	(r412140)
+++ head/x11/xstroke/files/patch-Imakefile	Tue Mar 29 23:20:33 2016	(r412141)
@@ -9,7 +9,7 @@
 -LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm -ldl -lpthread
 +LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm $(LDFLAGS)
  FLEX=flex
-+YACC=bison -y
++YACC=byacc
  OBJS=xstroke.o args.o backing.o bresenham.o brush.o control_win.o stroke.o matrix.o \
       action.o action_item.o feature.o gesture.o log.o option.o sprintf_alloc.o \
       rec.o rec_callback.o rec_history.o rec_lex.o rec_mode.o rec_parse.o \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603292320.u2TNKXfQ098699>