From owner-svn-ports-head@freebsd.org Sun Jan 31 13:34:44 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 87122A7479B; Sun, 31 Jan 2016 13:34:44 +0000 (UTC) (envelope-from marino@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 400A61F32; Sun, 31 Jan 2016 13:34:44 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VDYhu1064841; Sun, 31 Jan 2016 13:34:43 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0VDYhKn064838; Sun, 31 Jan 2016 13:34:43 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201601311334.u0VDYhKn064838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 31 Jan 2016 13:34:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407632 - in head/editors/gate: . 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.20 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: Sun, 31 Jan 2016 13:34:44 -0000 Author: marino Date: Sun Jan 31 13:34:42 2016 New Revision: 407632 URL: https://svnweb.freebsd.org/changeset/ports/407632 Log: editors/gate: USES+= ncurses, respect LDFLAGS while here, link with ncurses, not termcap or curses Added: head/editors/gate/files/patch-Makefile.in (contents, props changed) head/editors/gate/files/patch-configure (contents, props changed) Modified: head/editors/gate/Makefile Modified: head/editors/gate/Makefile ============================================================================== --- head/editors/gate/Makefile Sun Jan 31 13:27:32 2016 (r407631) +++ head/editors/gate/Makefile Sun Jan 31 13:34:42 2016 (r407632) @@ -13,6 +13,7 @@ COMMENT= Simple and unobtrusive line-ori BUILD_DEPENDS= aspell:${PORTSDIR}/textproc/aspell RUN_DEPENDS= aspell:${PORTSDIR}/textproc/aspell +USES= ncurses GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-aspell=${LOCALBASE}/bin/aspell Added: head/editors/gate/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/gate/files/patch-Makefile.in Sun Jan 31 13:34:42 2016 (r407632) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2003-06-19 16:47:56 UTC ++++ Makefile.in +@@ -25,7 +25,7 @@ DIST= README $(SRCS) gate.h config.h.in + Makefile.in gate.1.C gate.help CHANGES + + gate: $(OBJS) +- $(CC) -o gate $(CFLAGS) $(OBJS) $(LIBS) ++ $(CC) -o gate $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) + + main.o: main.c gate.h config.h + util.o: util.c gate.h config.h Added: head/editors/gate/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/gate/files/patch-configure Sun Jan 31 13:34:42 2016 (r407632) @@ -0,0 +1,11 @@ +--- configure.orig 2005-01-24 06:35:15 UTC ++++ configure +@@ -1766,7 +1766,7 @@ else + cat conftest.$ac_ext >&5 + fi + rm -f conftest* +-test "$ac_cv_search_tgetent" = "no" && for i in termcap curses; do ++test "$ac_cv_search_tgetent" = "no" && for i in ncurses; do + LIBS="-l$i $ac_func_search_save_LIBS" + cat > conftest.$ac_ext <