diff options
author | steve <steve@FreeBSD.org> | 1999-12-29 09:29:06 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-29 09:29:06 +0000 |
commit | 8c3ebc1b23a0a0795a0a7e8b2a03f0ed47f96474 (patch) | |
tree | 4cf8f24c4531535a74e30325d8370352cfaefa22 | |
parent | 912c657fcea91164bff2508c00e37ecf007168d6 (diff) | |
download | FreeBSD-ports-8c3ebc1b23a0a0795a0a7e8b2a03f0ed47f96474.zip FreeBSD-ports-8c3ebc1b23a0a0795a0a7e8b2a03f0ed47f96474.tar.gz |
Adding kcd version 4.11.1.
A pogram that allows one to change direcotries in full-screen visual mode.
PR: 12666
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/kcd-devel/Makefile | 40 | ||||
-rw-r--r-- | misc/kcd-devel/distinfo | 1 | ||||
-rw-r--r-- | misc/kcd-devel/pkg-comment | 1 | ||||
-rw-r--r-- | misc/kcd-devel/pkg-descr | 21 | ||||
-rw-r--r-- | misc/kcd-devel/pkg-plist | 10 | ||||
-rw-r--r-- | misc/kcd/Makefile | 40 | ||||
-rw-r--r-- | misc/kcd/distinfo | 1 | ||||
-rw-r--r-- | misc/kcd/pkg-comment | 1 | ||||
-rw-r--r-- | misc/kcd/pkg-descr | 21 | ||||
-rw-r--r-- | misc/kcd/pkg-plist | 10 |
11 files changed, 147 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 7dfca2a..f4e42a1 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -58,6 +58,7 @@ SUBDIR += iselect SUBDIR += jargon SUBDIR += jive + SUBDIR += kcd SUBDIR += kdeutils11 SUBDIR += kdeutils11-i18n SUBDIR += kp diff --git a/misc/kcd-devel/Makefile b/misc/kcd-devel/Makefile new file mode 100644 index 0000000..09857d5 --- /dev/null +++ b/misc/kcd-devel/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: kcd +# Version required: 4.11.1 +# Date created: 5 May 1999 +# Whom: Andrey Zakhvatov +# +# $FreeBSD$ +# + +DISTNAME= kcd-4.11.1 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + http://www-scf.usc.edu/~lerdsuwa/util/ +MASTER_SITE_SUBDIR= utils/shell + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= ncurses.4:${PORTSDIR}/devel/ncurses + +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include" \ + LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" +MAN1= kcd.1 + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/kcdmain ${PREFIX}/bin + @ ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin + @ ${INSTALL_MAN} ${WRKSRC}/kcd.1 ${PREFIX}/man/man1 + @ ${MKDIR} ${PREFIX}/share/examples/kcd + @ ${INSTALL_DATA} ${WRKSRC}/kcd.csh.init ${PREFIX}/share/examples/kcd + @ ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${PREFIX}/share/examples/kcd + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/kcd +.for file in CHANGES COPYING INSTALL README + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/kcd +.endfor +.endif + +.include <bsd.port.mk> diff --git a/misc/kcd-devel/distinfo b/misc/kcd-devel/distinfo new file mode 100644 index 0000000..676189b --- /dev/null +++ b/misc/kcd-devel/distinfo @@ -0,0 +1 @@ +MD5 (kcd-4.11.1.tar.gz) = c51a04ed4e964a59ac80f7563a960986 diff --git a/misc/kcd-devel/pkg-comment b/misc/kcd-devel/pkg-comment new file mode 100644 index 0000000..d38c229 --- /dev/null +++ b/misc/kcd-devel/pkg-comment @@ -0,0 +1 @@ +Change directory in full-screen visual mode diff --git a/misc/kcd-devel/pkg-descr b/misc/kcd-devel/pkg-descr new file mode 100644 index 0000000..6e31fc8 --- /dev/null +++ b/misc/kcd-devel/pkg-descr @@ -0,0 +1,21 @@ +kcd allows user to change directory by using various methods: + + - By using cursor keys to navigate through the directory tree + screen + - By searching in directory tree screen + - By typing part of the directory name directly at the + command line. + + Other features include: + - Can be configured to filter out to some subdirectories, + useful for cdrom and msdos partition mounting points + - Can be configured to scan directory tree starting from some + specified directory inwards, for example, home directory. + - If the number directories that matches to the name given in + the command line exceeds a specified number, kcd displays + the whole list. + - Faster directory rescan if old data file exists. Only + directories with newer modified/changed time are scanned. + - Sorted directory tree listing. + +WWW: http://www-scf.usc.edu/~lerdsuwa/util/kcd.html diff --git a/misc/kcd-devel/pkg-plist b/misc/kcd-devel/pkg-plist new file mode 100644 index 0000000..9493b19 --- /dev/null +++ b/misc/kcd-devel/pkg-plist @@ -0,0 +1,10 @@ +bin/kcdmain +bin/kcdscr +share/doc/kcd/CHANGES +share/doc/kcd/COPYING +share/doc/kcd/INSTALL +share/doc/kcd/README +share/examples/kcd/kcd.csh.init +share/examples/kcd/kcd.sh.init +@dirrm share/doc/kcd +@dirrm share/examples/kcd diff --git a/misc/kcd/Makefile b/misc/kcd/Makefile new file mode 100644 index 0000000..09857d5 --- /dev/null +++ b/misc/kcd/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: kcd +# Version required: 4.11.1 +# Date created: 5 May 1999 +# Whom: Andrey Zakhvatov +# +# $FreeBSD$ +# + +DISTNAME= kcd-4.11.1 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + http://www-scf.usc.edu/~lerdsuwa/util/ +MASTER_SITE_SUBDIR= utils/shell + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= ncurses.4:${PORTSDIR}/devel/ncurses + +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include" \ + LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" +MAN1= kcd.1 + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/kcdmain ${PREFIX}/bin + @ ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin + @ ${INSTALL_MAN} ${WRKSRC}/kcd.1 ${PREFIX}/man/man1 + @ ${MKDIR} ${PREFIX}/share/examples/kcd + @ ${INSTALL_DATA} ${WRKSRC}/kcd.csh.init ${PREFIX}/share/examples/kcd + @ ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${PREFIX}/share/examples/kcd + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/kcd +.for file in CHANGES COPYING INSTALL README + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/kcd +.endfor +.endif + +.include <bsd.port.mk> diff --git a/misc/kcd/distinfo b/misc/kcd/distinfo new file mode 100644 index 0000000..676189b --- /dev/null +++ b/misc/kcd/distinfo @@ -0,0 +1 @@ +MD5 (kcd-4.11.1.tar.gz) = c51a04ed4e964a59ac80f7563a960986 diff --git a/misc/kcd/pkg-comment b/misc/kcd/pkg-comment new file mode 100644 index 0000000..d38c229 --- /dev/null +++ b/misc/kcd/pkg-comment @@ -0,0 +1 @@ +Change directory in full-screen visual mode diff --git a/misc/kcd/pkg-descr b/misc/kcd/pkg-descr new file mode 100644 index 0000000..6e31fc8 --- /dev/null +++ b/misc/kcd/pkg-descr @@ -0,0 +1,21 @@ +kcd allows user to change directory by using various methods: + + - By using cursor keys to navigate through the directory tree + screen + - By searching in directory tree screen + - By typing part of the directory name directly at the + command line. + + Other features include: + - Can be configured to filter out to some subdirectories, + useful for cdrom and msdos partition mounting points + - Can be configured to scan directory tree starting from some + specified directory inwards, for example, home directory. + - If the number directories that matches to the name given in + the command line exceeds a specified number, kcd displays + the whole list. + - Faster directory rescan if old data file exists. Only + directories with newer modified/changed time are scanned. + - Sorted directory tree listing. + +WWW: http://www-scf.usc.edu/~lerdsuwa/util/kcd.html diff --git a/misc/kcd/pkg-plist b/misc/kcd/pkg-plist new file mode 100644 index 0000000..9493b19 --- /dev/null +++ b/misc/kcd/pkg-plist @@ -0,0 +1,10 @@ +bin/kcdmain +bin/kcdscr +share/doc/kcd/CHANGES +share/doc/kcd/COPYING +share/doc/kcd/INSTALL +share/doc/kcd/README +share/examples/kcd/kcd.csh.init +share/examples/kcd/kcd.sh.init +@dirrm share/doc/kcd +@dirrm share/examples/kcd |