Date: Fri, 29 May 2015 20:34:47 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387887 - in head/shells: . wcd Message-ID: <201505292034.t4TKYlG6080340@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Fri May 29 20:34:46 2015 New Revision: 387887 URL: https://svnweb.freebsd.org/changeset/ports/387887 Log: Wcd is a command-line program to change directory fast. It saves time typing at the keyboard. One needs to type only a part of a directory name and wcd will jump to it. Wcd has a fast selection method in case of multiple matches and allows aliasing and banning of directories. Wcd also includes a full screen interactive directory tree browser with speed search. WWW: http://wcd.sourceforge.net/ Added: head/shells/wcd/ head/shells/wcd/Makefile (contents, props changed) head/shells/wcd/distinfo (contents, props changed) head/shells/wcd/pkg-descr (contents, props changed) head/shells/wcd/pkg-plist (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Fri May 29 20:01:47 2015 (r387886) +++ head/shells/Makefile Fri May 29 20:34:46 2015 (r387887) @@ -41,6 +41,7 @@ SUBDIR += v7sh SUBDIR += viewglob SUBDIR += vshnu + SUBDIR += wcd SUBDIR += zsh .include <bsd.port.subdir.mk> Added: head/shells/wcd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/wcd/Makefile Fri May 29 20:34:46 2015 (r387887) @@ -0,0 +1,38 @@ +# Created by: Pawel Pekala <pawel@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= wcd +PORTVERSION= 5.2.7 +CATEGORIES= shells +MASTER_SITES= SF + +MAINTAINER= pawel@FreeBSD.org +COMMENT= Command-line program to change directory fast + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/doc/copying.txt + +USES= gmake +MAKE_ARGS= EXT= PREFIX=${PREFIX} docsubdir=${PORTNAME} \ + mandir=${PREFIX}/man + +OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes + +NLS_USES= gettext + +.include <bsd.port.options.mk> + +.if ! ${PORT_OPTIONS:MNLS} +MAKE_ARGS+= ENABLE_NLS= +.endif + +post-patch: + @${REINPLACE_CMD} -e '/manfile/ s|datarootdir|prefix|' \ + -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/src/Makefile + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/wcd + +.include <bsd.port.mk> Added: head/shells/wcd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/wcd/distinfo Fri May 29 20:34:46 2015 (r387887) @@ -0,0 +1,2 @@ +SHA256 (wcd-5.2.7.tar.gz) = e5f56824e054c6726186271b20a5de3c5b167116b97785a925907981cf3e3b39 +SIZE (wcd-5.2.7.tar.gz) = 622613 Added: head/shells/wcd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/wcd/pkg-descr Fri May 29 20:34:46 2015 (r387887) @@ -0,0 +1,7 @@ +Wcd is a command-line program to change directory fast. It saves time typing +at the keyboard. One needs to type only a part of a directory name and wcd +will jump to it. Wcd has a fast selection method in case of multiple matches +and allows aliasing and banning of directories. Wcd also includes a full +screen interactive directory tree browser with speed search. + +WWW: http://wcd.sourceforge.net/ Added: head/shells/wcd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/wcd/pkg-plist Fri May 29 20:34:46 2015 (r387887) @@ -0,0 +1,29 @@ +bin/wcd +man/de/man1/wcd.1.gz +man/man1/wcd.1.gz +man/nl/man1/wcd.1.gz +man/uk/man1/wcd.1.gz +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt +%%PORTDOCS%%%%DOCSDIR%%/README.txt +%%PORTDOCS%%%%DOCSDIR%%/RPM.txt +%%PORTDOCS%%%%DOCSDIR%%/UNIX.txt +%%PORTDOCS%%%%DOCSDIR%%/copying.txt +%%PORTDOCS%%%%DOCSDIR%%/de/wcd.htm +%%PORTDOCS%%%%DOCSDIR%%/de/wcd.txt +%%PORTDOCS%%%%DOCSDIR%%/faq.txt +%%PORTDOCS%%%%DOCSDIR%%/nl/wcd.htm +%%PORTDOCS%%%%DOCSDIR%%/nl/wcd.txt +%%PORTDOCS%%%%DOCSDIR%%/problems.txt +%%PORTDOCS%%%%DOCSDIR%%/todo.txt +%%PORTDOCS%%%%DOCSDIR%%/uk/wcd.htm +%%PORTDOCS%%%%DOCSDIR%%/uk/wcd.txt +%%PORTDOCS%%%%DOCSDIR%%/wcd.htm +%%PORTDOCS%%%%DOCSDIR%%/wcd.txt +%%PORTDOCS%%%%DOCSDIR%%/whatsnew.txt +%%NLS%%share/locale/de/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/es/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wcd.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wcd.mo
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505292034.t4TKYlG6080340>