diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-17 03:17:55 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-17 03:17:55 +0000 |
commit | b8bff7483ee397b244010e3f0c140e9497c0b822 (patch) | |
tree | 877b8bde68f4ad8de722ecbef7631c85e58f7799 | |
parent | Cleanup build system to get rid of need for preplib. (diff) | |
download | historical-b8bff7483ee397b244010e3f0c140e9497c0b822.tar.gz historical-b8bff7483ee397b244010e3f0c140e9497c0b822.tar.bz2 historical-b8bff7483ee397b244010e3f0c140e9497c0b822.zip |
New version, bug #111779
Package-Manager: portage-2.0.53 I can kill you with my brain edition
-rw-r--r-- | app-misc/cdargs/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/cdargs/Manifest | 12 | ||||
-rw-r--r-- | app-misc/cdargs/cdargs-1.33.ebuild | 50 | ||||
-rw-r--r-- | app-misc/cdargs/files/digest-cdargs-1.33 | 1 |
4 files changed, 64 insertions, 6 deletions
diff --git a/app-misc/cdargs/ChangeLog b/app-misc/cdargs/ChangeLog index f592ef649d78..533ce27132f6 100644 --- a/app-misc/cdargs/ChangeLog +++ b/app-misc/cdargs/ChangeLog @@ -1,6 +1,11 @@ # 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.5 2005/10/15 23:52:52 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/ChangeLog,v 1.6 2005/12/17 03:17:55 ciaranm Exp $ + +*cdargs-1.33 (17 Dec 2005) + + 17 Dec 2005; Ciaran McCreesh <ciaranm@gentoo.org> +cdargs-1.33.ebuild: + New version, bug #111779 *cdargs-1.32 (15 Oct 2005) diff --git a/app-misc/cdargs/Manifest b/app-misc/cdargs/Manifest index 92f92d528711..d3d195474d8b 100644 --- a/app-misc/cdargs/Manifest +++ b/app-misc/cdargs/Manifest @@ -1,16 +1,18 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 d3823e1de2e8cef9578540db04a85245 ChangeLog 790 +MD5 37925930aac491230274bdee2eca469f ChangeLog 919 MD5 1457e7323451fb0e87792cd69ac6c7c1 cdargs-1.31.ebuild 1530 MD5 aa9073de5d20d8fafdb8dea4ac26ef21 cdargs-1.32.ebuild 1517 +MD5 16d9b597f1737edec9dd5893b8a66729 cdargs-1.33.ebuild 1517 MD5 003ee1abc0d68de5c012e8fcb85334e7 files/digest-cdargs-1.31 62 MD5 b2703072f3f582f2fb5c7ec7ee702290 files/digest-cdargs-1.32 62 +MD5 19e1d1ce791a68657c83498f5b168170 files/digest-cdargs-1.33 62 MD5 0c131a7201c4670302767f93643876fa metadata.xml 165 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) +Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFDUZSXLLFUmVNQ7rkRAtekAKCWILQeoB/go3ScYbcMb+Nu6zFAuQCgjEgE -R1jfGMqS5tOvHDNwUiAWFkk= -=olGe +iD8DBQFDo4NyLLFUmVNQ7rkRApdsAKDFMq31tn/fwxl8NOJBG7qxBGRR/wCgxwQ6 +BUaHH1F5vJDjlsfu5+I1QBo= +=ugXK -----END PGP SIGNATURE----- diff --git a/app-misc/cdargs/cdargs-1.33.ebuild b/app-misc/cdargs/cdargs-1.33.ebuild new file mode 100644 index 000000000000..e00071e7272f --- /dev/null +++ b/app-misc/cdargs/cdargs-1.33.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.33.ebuild,v 1.1 2005/12/17 03:17:55 ciaranm 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="~ppc ~x86" +IUSE="emacs" + +DEPEND="sys-libs/ncurses" + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc README THANKS TODO AUTHORS + + 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.33 b/app-misc/cdargs/files/digest-cdargs-1.33 new file mode 100644 index 000000000000..9d21c8bc049a --- /dev/null +++ b/app-misc/cdargs/files/digest-cdargs-1.33 @@ -0,0 +1 @@ +MD5 fcdf45b385825ee7eb4c15860285f082 cdargs-1.33.tar.gz 73215 |