diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-03 05:54:05 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-01-03 05:54:05 +0000 |
commit | b7c0b23c5d9387cb09e48e9d9145b93a7c80377c (patch) | |
tree | 4ec56d4f35074c0b05905f5c3f76027f71fff4dc /app-shells | |
parent | Add modular X dependencies. (diff) | |
download | gentoo-2-b7c0b23c5d9387cb09e48e9d9145b93a7c80377c.tar.gz gentoo-2-b7c0b23c5d9387cb09e48e9d9145b93a7c80377c.tar.bz2 gentoo-2-b7c0b23c5d9387cb09e48e9d9145b93a7c80377c.zip |
This release contains new features for event blocking, improvements to the prompt parsing code, and a new default prompt. It also contains a large number of bugfixes.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/fish/ChangeLog | 11 | ||||
-rw-r--r-- | app-shells/fish/files/digest-fish-1.19.0 | 1 | ||||
-rw-r--r-- | app-shells/fish/fish-1.19.0.ebuild | 38 |
3 files changed, 48 insertions, 2 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index 1a20657ccf09..474615ae92eb 100644 --- a/app-shells/fish/ChangeLog +++ b/app-shells/fish/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-shells/fish -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.9 2005/12/12 06:30:14 spyderous Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.10 2006/01/03 05:54:05 spyderous Exp $ + +*fish-1.19.0 (03 Jan 2006) + + 03 Jan 2006; Donnie Berkholz <spyderous@gentoo.org>; +fish-1.19.0.ebuild: + This release contains new features for event blocking, improvements to the + prompt parsing code, and a new default prompt. It also contains a large + number of bugfixes. *fish-1.18.2 (12 Dec 2005) diff --git a/app-shells/fish/files/digest-fish-1.19.0 b/app-shells/fish/files/digest-fish-1.19.0 new file mode 100644 index 000000000000..18bb119295eb --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.19.0 @@ -0,0 +1 @@ +MD5 275244194fcfd8413ca0e701f1a41eae fish-1.19.0.tar.bz2 407668 diff --git a/app-shells/fish/fish-1.19.0.ebuild b/app-shells/fish/fish-1.19.0.ebuild new file mode 100644 index 000000000000..e61300e2e498 --- /dev/null +++ b/app-shells/fish/fish-1.19.0.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.19.0.ebuild,v 1.1 2006/01/03 05:54:05 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 +} |