diff options
author | pav <pav@FreeBSD.org> | 2006-01-24 03:17:33 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-24 03:17:33 +0800 |
commit | 5b4077d45fceb955cee1fae75fd4dfe65f065a2b (patch) | |
tree | cb1d8364b3934fa77f3b40d73725626e18a0e687 /sysutils | |
parent | 9a7526708814b65aefa08ae6c77988c1e2929bac (diff) | |
download | freebsd-ports-gnome-5b4077d45fceb955cee1fae75fd4dfe65f065a2b.tar.gz freebsd-ports-gnome-5b4077d45fceb955cee1fae75fd4dfe65f065a2b.tar.zst freebsd-ports-gnome-5b4077d45fceb955cee1fae75fd4dfe65f065a2b.zip |
This little script enables you to ``edit an ls'', i.e. it will load a list of
filenames into your favourite editor (presumably vi). Any changes to the
filenames will result in renaming the respective files. Read the comments in
the script for details.
PR: ports/92167
Submitted by: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/vils/Makefile | 32 | ||||
-rw-r--r-- | sysutils/vils/distinfo | 3 | ||||
-rw-r--r-- | sysutils/vils/pkg-descr | 8 |
4 files changed, 44 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 43fcf0481852..589ec5db8bea 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -559,6 +559,7 @@ SUBDIR += vcp SUBDIR += videogen SUBDIR += vii + SUBDIR += vils SUBDIR += virtualmin SUBDIR += vobcopy SUBDIR += vstrip diff --git a/sysutils/vils/Makefile b/sysutils/vils/Makefile new file mode 100644 index 000000000000..40d193d35cab --- /dev/null +++ b/sysutils/vils/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: vils +# Date created: 22 January 2006 +# Whom: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net> +# +# $FreeBSD$ +# + +PORTNAME= vils +PORTVERSION= 20020228 +CATEGORIES= sysutils +MASTER_SITES= http://www.secnetix.de/~olli/scripts/ +DISTFILES= vils + +MAINTAINER= CPE1704TKS@bellsouth.net +COMMENT= Use your favorite editor to rename files + +BUILD_DEPENDS= zsh:${PORTSDIR}/shells/zsh +RUN_DEPENDS= ${BUILD_DEPENDS} + +PLIST_FILES= bin/vils + +do-extract: + ${MKDIR} ${WRKDIR} + ${CP} ${DISTDIR}/vils ${WRKDIR}/vils + +do-build: + @${REINPLACE_CMD} -e 's/\/bin\/zsh/\/usr\/local\/bin\/zsh/' ${WRKDIR}/vils + +do-install: + ${INSTALL_SCRIPT} -m 755 ${WRKDIR}/vils ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/vils/distinfo b/sysutils/vils/distinfo new file mode 100644 index 000000000000..f78b0b7af6f2 --- /dev/null +++ b/sysutils/vils/distinfo @@ -0,0 +1,3 @@ +MD5 (vils) = cad9cd336a31154765bba8a55aecebf1 +SHA256 (vils) = b8f7e73a29e3a53b38d22d0be0cc3752a98da853bd4d9bb85538b62491b87dbe +SIZE (vils) = 2076 diff --git a/sysutils/vils/pkg-descr b/sysutils/vils/pkg-descr new file mode 100644 index 000000000000..92ad6027cba0 --- /dev/null +++ b/sysutils/vils/pkg-descr @@ -0,0 +1,8 @@ +This little script enables you to ``edit an ls'', i.e. it will load a list of +filenames into your favourite editor (presumably vi). Any changes to the +filenames will result in renaming the respective files. Read the comments in +the script for details. + +AUTHOR: Oliver Fromme <olli@fromme.com> + +BSD-style copyright and standard disclaimer applies. |