From owner-svn-ports-all@freebsd.org Tue Mar 29 23:20:34 2016 Return-Path: Delivered-To: svn-ports-all@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 8D3C9AE105B; Tue, 29 Mar 2016 23:20:34 +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 4D730168F; Tue, 29 Mar 2016 23:20:34 +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 u2TNKXut098701; Tue, 29 Mar 2016 23:20:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2TNKXfQ098699; Tue, 29 Mar 2016 23:20:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201603292320.u2TNKXfQ098699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 29 Mar 2016 23:20:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412141 - 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-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Mar 2016 23:20:34 -0000 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 \