diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-26 18:55:29 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-26 18:55:29 +0000 |
commit | be23a96c23168595607c7d933789eff9703b6876 (patch) | |
tree | 41f90dbb7b1f8ea8953c3dabde2696990089d5bc /app-shells/fish | |
parent | 5.3.0.1 version bump for bug 120412. (diff) | |
download | gentoo-2-be23a96c23168595607c7d933789eff9703b6876.tar.gz gentoo-2-be23a96c23168595607c7d933789eff9703b6876.tar.bz2 gentoo-2-be23a96c23168595607c7d933789eff9703b6876.zip |
Adds emerge completion. Also, shellscript stack trace on errors, bugfix for fg, fallback for seq, new completions and more.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-shells/fish')
-rw-r--r-- | app-shells/fish/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/fish/files/digest-fish-1.20.1 | 1 | ||||
-rw-r--r-- | app-shells/fish/fish-1.20.1.ebuild | 38 |
3 files changed, 46 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index f67fc8961f6a..e02077d9e3ac 100644 --- a/app-shells/fish/ChangeLog +++ b/app-shells/fish/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/fish # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.11 2006/01/16 21:43:13 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.12 2006/01/26 18:55:29 spyderous Exp $ + +*fish-1.20.1 (26 Jan 2006) + + 26 Jan 2006; Donnie Berkholz <spyderous@gentoo.org>; +fish-1.20.1.ebuild: + Adds emerge completion. Also, shellscript stack trace on errors, bugfix for + fg, fallback for seq, new completions and more. *fish-1.20.0 (16 Jan 2006) diff --git a/app-shells/fish/files/digest-fish-1.20.1 b/app-shells/fish/files/digest-fish-1.20.1 new file mode 100644 index 000000000000..8b2197232b51 --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.20.1 @@ -0,0 +1 @@ +MD5 a0e5ae02ee4dc5ad777c2b3e3dd1b6b2 fish-1.20.1.tar.bz2 469037 diff --git a/app-shells/fish/fish-1.20.1.ebuild b/app-shells/fish/fish-1.20.1.ebuild new file mode 100644 index 000000000000..ec34c45a10e7 --- /dev/null +++ b/app-shells/fish/fish-1.20.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-1.20.1.ebuild,v 1.1 2006/01/26 18:55:29 spyderous Exp $ + +DESCRIPTION="fish is the Friendly Interactive SHell" +HOMEPAGE="http://roo.no-ip.org/fish/" +SRC_URI="http://roo.no-ip.org/fish/files/${PV}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +RDEPEND="sys-libs/ncurses + sys-devel/bc + || ( ( + x11-libs/libSM + x11-libs/libXext + ) + virtual/x11 + )" +DEPEND="${RDEPEND} + app-doc/doxygen" + +src_compile() { + econf docdir=/usr/share/doc/${PF} || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install +} + +pkg_postinst() { + einfo + einfo "If you want to use fish as your default shell, you need to add it" + einfo "to /etc/shells. This is not recommended because fish doesn't install" + einfo "to /bin." + einfo +} |