svn commit: r412147 - head/editors/teco

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Mar 30 00:53:11 UTC 2016


Author: amdmi3
Date: Wed Mar 30 00:53:10 2016
New Revision: 412147
URL: https://svnweb.freebsd.org/changeset/ports/412147

Log:
  - Switch to options helpers
  - Cosmetic fixes

Modified:
  head/editors/teco/Makefile
  head/editors/teco/pkg-descr

Modified: head/editors/teco/Makefile
==============================================================================
--- head/editors/teco/Makefile	Wed Mar 30 00:52:40 2016	(r412146)
+++ head/editors/teco/Makefile	Wed Mar 30 00:53:10 2016	(r412147)
@@ -13,7 +13,7 @@ COMMENT=	Powerful and compact editor wit
 MAKEFILE=	makefile
 WRKSRC=		${WRKDIR}/tecoc${PORTVERSION}
 BUILD_WRKSRC=	${WRKSRC}/src
-ALL_TARGET=	#
+ALL_TARGET=	# empty
 
 DOCSFILES=	src/readme.1st src/readme.lnx src/changes.txt src/aaout.txt \
 		src/problems.txt src/video.txt doc/teco.doc doc/wchart.txt
@@ -22,11 +22,11 @@ OPTIONS_DEFINE=	DOCS
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/tecoc ${STAGEDIR}${PREFIX}/bin
-	${MKDIR} ${STAGEDIR}${DATADIR}
+	@${MKDIR} ${STAGEDIR}${DATADIR}
 	${INSTALL_DATA} ${WRKSRC}/lib/* ${STAGEDIR}${DATADIR}
 
-post-install:
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
+do-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for FILE in ${DOCSFILES}
 	${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
 .endfor

Modified: head/editors/teco/pkg-descr
==============================================================================
--- head/editors/teco/pkg-descr	Wed Mar 30 00:52:40 2016	(r412146)
+++ head/editors/teco/pkg-descr	Wed Mar 30 00:53:10 2016	(r412147)
@@ -1,9 +1,8 @@
-	TECO is the grand old text editor. It is powerful and compact
-precursor to EMACS and has a completely nongraphical user interface.
-It is very fast (probably the fastes editor in the world) and have a
-macro language. TECO was written by Dan Murphy (http://www.opost.com/dlm)
-at Digital Equipment Corporation in 1962. This is based on Pete Siemsen's
-TECOC implementation, and comes with a copy of the originals DECUS TECO
-documentation.
+TECO is the grand old text editor.  It is powerful and compact precursor
+to EMACS and has a completely nongraphical user interface.  It is very fast
+(probably the fastes editor in the world) and have a macro language.  TECO
+was written by Dan Murphy (http://www.opost.com/dlm) at Digital Equipment
+Corporation in 1962.  This is based on Pete Siemsen's TECOC implementation,
+and comes with a copy of the originals DECUS TECO documentation.
 
 WWW: http://almy.us/teco.html


More information about the svn-ports-all mailing list