From owner-svn-ports-head@freebsd.org Wed Mar 30 06:48:09 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA43EAE2F12; Wed, 30 Mar 2016 06:48:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C54F165D; Wed, 30 Mar 2016 06:48:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2U6m8od036430; Wed, 30 Mar 2016 06:48:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2U6m85u036428; Wed, 30 Mar 2016 06:48:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201603300648.u2U6m85u036428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 30 Mar 2016 06:48:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412157 - in head/x11/xstroke: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Mar 2016 06:48:09 -0000 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 \