blob: 52c64d5e5045c301d09e0b00cbe525d922fa7f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/cdargs-1.34.ebuild,v 1.1 2006/03/04 00:07:36 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
}
|