From owner-svn-ports-all@freebsd.org Sat Mar 18 09:01:59 2017 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 3194FD115C7; Sat, 18 Mar 2017 09:01:59 +0000 (UTC) (envelope-from amdmi3@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 0C3247B3; Sat, 18 Mar 2017 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2I91wIk035277; Sat, 18 Mar 2017 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2I91vYf035272; Sat, 18 Mar 2017 09:01:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201703180901.v2I91vYf035272@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 18 Mar 2017 09:01:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436387 - in head/editors/fte: . 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.23 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: Sat, 18 Mar 2017 09:01:59 -0000 Author: amdmi3 Date: Sat Mar 18 09:01:57 2017 New Revision: 436387 URL: https://svnweb.freebsd.org/changeset/ports/436387 Log: - Switch to options helpers - Regenerate patches - Cleanup pkg-descr Modified: head/editors/fte/Makefile head/editors/fte/files/patch-src__fte-unix.mak head/editors/fte/files/patch-src__stl_string.cpp head/editors/fte/files/patch-src__sysdep.h head/editors/fte/pkg-descr Modified: head/editors/fte/Makefile ============================================================================== --- head/editors/fte/Makefile Sat Mar 18 06:57:10 2017 (r436386) +++ head/editors/fte/Makefile Sat Mar 18 09:01:57 2017 (r436387) @@ -37,10 +37,12 @@ post-patch: /fterc/s|^|#|' ${WRKSRC}/install post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .for i in cfte xfte @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i} .endfor +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + .include Modified: head/editors/fte/files/patch-src__fte-unix.mak ============================================================================== --- head/editors/fte/files/patch-src__fte-unix.mak Sat Mar 18 06:57:10 2017 (r436386) +++ head/editors/fte/files/patch-src__fte-unix.mak Sat Mar 18 09:01:57 2017 (r436387) @@ -1,5 +1,5 @@ ---- src/fte-unix.mak Sun Nov 13 12:47:25 2005 -+++ src/fte-unix.mak Tue Feb 28 12:29:41 2006 +--- src/fte-unix.mak.orig 2010-03-16 18:03:51 UTC ++++ src/fte-unix.mak @@ -5,10 +5,10 @@ # vfte - for Linux console directly (with limitations, see con_linux.cpp) @@ -14,7 +14,7 @@ TGT_XFTE = xfte TARGETS = $(TGT_XFTE) $(TGT_VFTE) $(TGT_NFTE) $(TGT_SFTE) $(TGT_QFTE) -@@ -27,15 +27,16 @@ +@@ -27,15 +27,16 @@ LD = $(CXX) CPPOPTIONS = -Wall -Wpointer-arith -Wconversion -Wwrite-strings -Winline # try this for smaller/faster code and less dependencies @@ -34,7 +34,7 @@ ####################################################################### # HP/UX -@@ -55,7 +56,7 @@ +@@ -55,7 +56,7 @@ UOS = -DLINUX #MINCDIR = -I/usr/include/Motif1.2 #MLIBDIR = -L/usr/lib/Motif1.2 @@ -43,7 +43,7 @@ ####################################################################### # AIX -@@ -111,18 +112,18 @@ +@@ -111,18 +112,18 @@ SINCDIR = -I/usr/include/slang ####################################################################### @@ -67,7 +67,7 @@ #OPTIMIZE = -O2 #OPTIMIZE = -Os #OPTIMIZE = -O2 -s -@@ -148,7 +149,7 @@ +@@ -148,7 +149,7 @@ SRCS = $(OBJS:.o=.cpp)\ $(XOBJS:.o=.cpp) XLIBS = $(XLIBDIR) -lX11 $(SOCKETLIB) $(XPMLIB) $(XTLIB) @@ -76,7 +76,7 @@ NLIBS = $(NLIBDIR) -lncurses SLIBS = $(SLIBDIR) -lslang #QLIBS = $(QLIBDIR) -lqt -@@ -223,6 +224,6 @@ +@@ -223,6 +224,6 @@ clean: # # include dependency files if they exist # Modified: head/editors/fte/files/patch-src__stl_string.cpp ============================================================================== --- head/editors/fte/files/patch-src__stl_string.cpp Sat Mar 18 06:57:10 2017 (r436386) +++ head/editors/fte/files/patch-src__stl_string.cpp Sat Mar 18 09:01:57 2017 (r436387) @@ -1,4 +1,4 @@ ---- src/stl_string.cpp.orig +--- src/stl_string.cpp.orig 2010-03-05 20:40:08 UTC +++ src/stl_string.cpp @@ -10,6 +10,13 @@ #include Modified: head/editors/fte/files/patch-src__sysdep.h ============================================================================== --- head/editors/fte/files/patch-src__sysdep.h Sat Mar 18 06:57:10 2017 (r436386) +++ head/editors/fte/files/patch-src__sysdep.h Sat Mar 18 09:01:57 2017 (r436387) @@ -1,6 +1,6 @@ ---- src/sysdep.h.orig Sun Apr 13 14:43:59 2003 -+++ src/sysdep.h Sun Apr 13 13:54:17 2003 -@@ -38,6 +38,7 @@ +--- src/sysdep.h.orig 2011-06-29 22:32:34 UTC ++++ src/sysdep.h +@@ -21,6 +21,7 @@ !defined(IRIX) && \ !defined(SCO) && \ !defined(SUNOS) && \ Modified: head/editors/fte/pkg-descr ============================================================================== --- head/editors/fte/pkg-descr Sat Mar 18 06:57:10 2017 (r436386) +++ head/editors/fte/pkg-descr Sat Mar 18 09:01:57 2017 (r436387) @@ -6,6 +6,3 @@ Among other features it supports syntax compiler invocation and error parsing and folds. WWW: http://fte.sourceforge.net/ - -Alexander Gelfenbain -mail@gelf.com