Date: Wed, 30 Mar 2016 06:48:08 +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: r412157 - in head/x11/xstroke: . files Message-ID: <201603300648.u2U6m85u036428@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Wed Mar 30 06:48:08 2016 New Revision: 412157 URL: https://svnweb.freebsd.org/changeset/ports/412157 Log: revert r412141 On FreeBSD 9 the dependency syntax used here will use the "old yacc" which is in in base and not byacc from ports which does not support %pure_parser. Dropping bison as a build dependency is not worth a more complex syntax Modified: head/x11/xstroke/Makefile head/x11/xstroke/files/patch-Imakefile Modified: head/x11/xstroke/Makefile ============================================================================== --- head/x11/xstroke/Makefile Wed Mar 30 06:41:55 2016 (r412156) +++ head/x11/xstroke/Makefile Wed Mar 30 06:48:08 2016 (r412157) @@ -13,8 +13,7 @@ COMMENT= Fullscreen gesture recognition LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= imake -BUILD_DEPENDS= byacc:devel/byacc +USES= bison imake 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 Wed Mar 30 06:41:55 2016 (r412156) +++ head/x11/xstroke/files/patch-Imakefile Wed Mar 30 06:48:08 2016 (r412157) @@ -9,7 +9,7 @@ -LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm -ldl -lpthread +LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm $(LDFLAGS) FLEX=flex -+YACC=byacc ++YACC=bison -y 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?201603300648.u2U6m85u036428>