diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-01-07 10:27:55 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-01-07 10:27:55 +0000 |
commit | cc527119affe31a252bf5f0192065f787f2d4ced (patch) | |
tree | ef7747bdb0882815a174947a24c1445ddfb4b120 /app-misc/cdargs | |
parent | Removing mask of packages that are gone. (diff) | |
download | gentoo-2-cc527119affe31a252bf5f0192065f787f2d4ced.tar.gz gentoo-2-cc527119affe31a252bf5f0192065f787f2d4ced.tar.bz2 gentoo-2-cc527119affe31a252bf5f0192065f787f2d4ced.zip |
Initial commit - bug 76736. Thanks to Stefan Kamphausen.
Diffstat (limited to 'app-misc/cdargs')
-rw-r--r-- | app-misc/cdargs/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/cdargs/Manifest | 4 | ||||
-rw-r--r-- | app-misc/cdargs/cdargs-1.31.ebuild | 50 | ||||
-rw-r--r-- | app-misc/cdargs/files/digest-cdargs-1.31 | 1 | ||||
-rw-r--r-- | app-misc/cdargs/metadata.xml | 5 |
5 files changed, 70 insertions, 0 deletions
diff --git a/app-misc/cdargs/ChangeLog b/app-misc/cdargs/ChangeLog new file mode 100644 index 000000000000..f99fdb231e4d --- /dev/null +++ b/app-misc/cdargs/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-misc/cdargs +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/ChangeLog,v 1.1 2005/01/07 10:27:54 ka0ttic Exp $ + +*cdargs-1.31 (07 Jan 2005) + + 07 Jan 2005; Aaron Walker <ka0ttic@gentoo.org> +metadata.xml, + +cdargs-1.31.ebuild: + Initial commit - bug 76736. Thanks to Stefan Kamphausen. + diff --git a/app-misc/cdargs/Manifest b/app-misc/cdargs/Manifest new file mode 100644 index 000000000000..8e0ca389a433 --- /dev/null +++ b/app-misc/cdargs/Manifest @@ -0,0 +1,4 @@ +MD5 c3adc934cbb818ade97a49b609480fed cdargs-1.31.ebuild 1431 +MD5 6f6a3f55c96eed22b3d32ba17157df9e ChangeLog 291 +MD5 0c131a7201c4670302767f93643876fa metadata.xml 165 +MD5 003ee1abc0d68de5c012e8fcb85334e7 files/digest-cdargs-1.31 62 diff --git a/app-misc/cdargs/cdargs-1.31.ebuild b/app-misc/cdargs/cdargs-1.31.ebuild new file mode 100644 index 000000000000..4960c521787e --- /dev/null +++ b/app-misc/cdargs/cdargs-1.31.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/cdargs-1.31.ebuild,v 1.1 2005/01/07 10:27:54 ka0ttic Exp $ + +DESCRIPTION="Bookmarks and browser for the shell builtin cd command" +HOMEPAGE="http://www.skamphausen.de/software/cdargs" +SRC_URI="http://www.skamphausen.de/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="emacs" + +DEPEND="sys-libs/ncurses" + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc README INSTALL THANKS TODO AUTHORS COPYING + + cd ${S}/contrib + insinto /usr/share/cdargs + doins cdargs-bash.sh cdargs-tcsh.csh \ + || die "failed to install contrib scripts" + if use emacs ; then + doins cdargs.el || die "failed to install cdargs.el" + fi +} + +pkg_postinst() { + echo + einfo "Add the following line to your ~/.bashrc to enable cdargs helper" + einfo "functions/aliases in your environment:" + einfo "[ -f /usr/share/cdargs/cdargs-bash.sh ] && \\ " + einfo " source /usr/share/cdargs/cdargs-bash.sh" + einfo + einfo "Users of tcshell will find cdargs-tcsh.csh there with a reduced" + einfo "feature set. See INSTALL file in the documentation directory for" + einfo "more information." + + if use emacs ; then + einfo + einfo "To get an interactive cv defun in (X)Emacs load cdargs.el:" + einfo " (setq load-path" + einfo " (append (list " + einfo " \"/usr/share/cdargs/\")" + einfo " load-path))" + einfo " (require 'cdargs)" + fi + echo +} diff --git a/app-misc/cdargs/files/digest-cdargs-1.31 b/app-misc/cdargs/files/digest-cdargs-1.31 new file mode 100644 index 000000000000..118fd08457b0 --- /dev/null +++ b/app-misc/cdargs/files/digest-cdargs-1.31 @@ -0,0 +1 @@ +MD5 1fc7a1d671ae0755bb8c6a50aa31bd86 cdargs-1.31.tar.gz 72759 diff --git a/app-misc/cdargs/metadata.xml b/app-misc/cdargs/metadata.xml new file mode 100644 index 000000000000..40149c995561 --- /dev/null +++ b/app-misc/cdargs/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>shell-tools</herd> +</pkgmetadata> |