diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-04-04 04:50:14 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-04-04 04:50:14 +0000 |
commit | 1c3e3c6923aa820ea09c49892a09031e81c54171 (patch) | |
tree | c5bd33951f2e7e3fda502e311cfebc4cba89f9f1 /app-shells/fish | |
parent | 2.2-r1 and 2.3 are ~amd64. remove old versions. (diff) | |
download | gentoo-2-1c3e3c6923aa820ea09c49892a09031e81c54171.tar.gz gentoo-2-1c3e3c6923aa820ea09c49892a09031e81c54171.tar.bz2 gentoo-2-1c3e3c6923aa820ea09c49892a09031e81c54171.zip |
Bump. Fix for the ? wildcard, warning removal on completion. Add -n switch to suppress command execution. Add completion for telnet. Build fixes for icc.
(Portage version: 2.1_pre6-r5)
Diffstat (limited to 'app-shells/fish')
-rw-r--r-- | app-shells/fish/ChangeLog | 9 | ||||
-rw-r--r-- | app-shells/fish/files/digest-fish-1.21.3 | 3 | ||||
-rw-r--r-- | app-shells/fish/fish-1.21.3.ebuild | 43 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index 46d1f4a9b47f..53ab4858a3c2 100644 --- a/app-shells/fish/ChangeLog +++ b/app-shells/fish/ChangeLog @@ -1,6 +1,13 @@ # 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.15 2006/03/01 21:09:34 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.16 2006/04/04 04:50:14 spyderous Exp $ + +*fish-1.21.3 (04 Apr 2006) + + 04 Apr 2006; Donnie Berkholz <spyderous@gentoo.org>; +fish-1.21.3.ebuild: + Bump. Fix for the ? wildcard, warning removal on completion. Add -n switch + to suppress command execution. Add completion for telnet. Build fixes for + icc. 01 Mar 2006; Donnie Berkholz <spyderous@gentoo.org>; fish-1.21.1.ebuild: Add a note about move of completion files. diff --git a/app-shells/fish/files/digest-fish-1.21.3 b/app-shells/fish/files/digest-fish-1.21.3 new file mode 100644 index 000000000000..dc42d310e5c5 --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.21.3 @@ -0,0 +1,3 @@ +MD5 51fa4248866f15db2db5e5567d3a3710 fish-1.21.3.tar.bz2 546179 +RMD160 3aecd705395b126363165e40cd144f3dc48d8eaa fish-1.21.3.tar.bz2 546179 +SHA256 18450a400968068bfc7d94b876234e1c294fb3c075ecb75addc5b659c19e7ce1 fish-1.21.3.tar.bz2 546179 diff --git a/app-shells/fish/fish-1.21.3.ebuild b/app-shells/fish/fish-1.21.3.ebuild new file mode 100644 index 000000000000..190be952bc77 --- /dev/null +++ b/app-shells/fish/fish-1.21.3.ebuild @@ -0,0 +1,43 @@ +# 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.21.3.ebuild,v 1.1 2006/04/04 04:50:14 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 + ewarn "Many files moved to ${ROOT}usr/share/fish/completions from /etc/fish.d/." + ewarn "Delete everything in ${ROOT}etc/fish.d/ except fish_interactive.fish." + ewarn "Otherwise, fish won't notice updates to the installed files," + ewarn "because the ones in /etc will override the new ones in /usr." + einfo +} |