diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-02-16 09:18:18 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-02-16 09:18:18 +0000 |
commit | e006d3f5bf49c2214b3018657abbea4c76035e3e (patch) | |
tree | d17992ccb036fd120ff5881347c6132b47d3296e /app-shells/fish | |
parent | Shorten description and drop old versions. (diff) | |
download | gentoo-2-e006d3f5bf49c2214b3018657abbea4c76035e3e.tar.gz gentoo-2-e006d3f5bf49c2214b3018657abbea4c76035e3e.tar.bz2 gentoo-2-e006d3f5bf49c2214b3018657abbea4c76035e3e.zip |
Bump. Performance tweaks, job control fixes, backtrace improvements, memory leak reductions from new allocation scheme.
(Portage version: 2.1_pre4-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.2 | 3 | ||||
-rw-r--r-- | app-shells/fish/fish-1.20.2.ebuild | 38 |
3 files changed, 48 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index e02077d9e3ac..34dd317e4c9d 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.12 2006/01/26 18:55:29 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.13 2006/02/16 09:18:18 spyderous Exp $ + +*fish-1.20.2 (16 Feb 2006) + + 16 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>; +fish-1.20.2.ebuild: + Bump. Performance tweaks, job control fixes, backtrace improvements, memory + leak reductions from new allocation scheme. *fish-1.20.1 (26 Jan 2006) diff --git a/app-shells/fish/files/digest-fish-1.20.2 b/app-shells/fish/files/digest-fish-1.20.2 new file mode 100644 index 000000000000..97d74a598471 --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.20.2 @@ -0,0 +1,3 @@ +MD5 258c152082c8c957407378c13c2340a3 fish-1.20.2.tar.bz2 476064 +RMD160 0356f41369d95bda5cd58fa0c1d573447732f290 fish-1.20.2.tar.bz2 476064 +SHA256 4ddaad3dac28c63ce1b58172713ec22b35e00f159ad1a076e63b4b713dd69ca5 fish-1.20.2.tar.bz2 476064 diff --git a/app-shells/fish/fish-1.20.2.ebuild b/app-shells/fish/fish-1.20.2.ebuild new file mode 100644 index 000000000000..63d34ade38a6 --- /dev/null +++ b/app-shells/fish/fish-1.20.2.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.2.ebuild,v 1.1 2006/02/16 09:18:18 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 +} |