diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-05-05 18:53:32 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-05-05 18:53:32 +0800 |
commit | 8d73a0fd2b7e4828baa65a50f156f8354b0688ed (patch) | |
tree | 1d901627d28f8b4f1f193ab10a3ac355349f200d /misc | |
parent | 094fa4c1c4e55bebc48d3ecd62ee93b352e51a4f (diff) | |
download | freebsd-ports-gnome-8d73a0fd2b7e4828baa65a50f156f8354b0688ed.tar.gz freebsd-ports-gnome-8d73a0fd2b7e4828baa65a50f156f8354b0688ed.tar.zst freebsd-ports-gnome-8d73a0fd2b7e4828baa65a50f156f8354b0688ed.zip |
Apparix allows you to bookmark directories and later jump to them using the
mark. When jumping, the contributed bash completion code allows one to complete
on bookmarks and on subdirectories of the target directory.
WWW: http://micans.org/apparix/
PR: 95959
Submitted by: Frank Steinborn <steinex@gmx.de>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/apparix/Makefile | 34 | ||||
-rw-r--r-- | misc/apparix/distinfo | 4 | ||||
-rw-r--r-- | misc/apparix/pkg-descr | 5 |
4 files changed, 44 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index c3c051129a5d..6b915bd2d9ad 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -13,6 +13,7 @@ SUBDIR += alevt SUBDIR += amanda-client SUBDIR += amanda-server + SUBDIR += apparix SUBDIR += argparse SUBDIR += asbutton SUBDIR += asr-manpages diff --git a/misc/apparix/Makefile b/misc/apparix/Makefile new file mode 100644 index 000000000000..0fc2af6648b7 --- /dev/null +++ b/misc/apparix/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: apparix +# Date created: 16 Apr 2006 +# Whom: Frank Steinborn <steinex@gmx.de> +# +# $FreeBSD$ +# + +PORTNAME= apparix +PORTVERSION= 20060105 +CATEGORIES= misc +MASTER_SITES= http://micans.org/apparix/src/ +DISTNAME= ${PORTNAME}-06-005 + +MAINTAINER= steinex@gmx.de +COMMENT= Bookmark directories and apparate inside them + +GNU_CONFIGURE= yes +MANCOMPRESSED= no + +MAN1= apparix.1 +PORTDOCS= apparix.azm apparix.html apparix.ps +PLIST_FILES= bin/apparix + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/${MAN1} ${MAN1PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/misc/apparix/distinfo b/misc/apparix/distinfo new file mode 100644 index 000000000000..e7e76f72ec55 --- /dev/null +++ b/misc/apparix/distinfo @@ -0,0 +1,4 @@ +MD5 (apparix-06-005.tar.gz) = 7e56de0b6f7577be0c87e80452666477 +SHA256 (apparix-06-005.tar.gz) = +541ebe34c2b1e9e41388525c8587b0aef808283cb40cf62b9d4e54adb7a5b1bf +SIZE (apparix-06-005.tar.gz) = 200092 diff --git a/misc/apparix/pkg-descr b/misc/apparix/pkg-descr new file mode 100644 index 000000000000..e48ed1873249 --- /dev/null +++ b/misc/apparix/pkg-descr @@ -0,0 +1,5 @@ +Apparix allows you to bookmark directories and later jump to them using the +mark. When jumping, the contributed bash completion code allows one to complete +on bookmarks and on subdirectories of the target directory. + +WWW: http://micans.org/apparix/ |