diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-01-03 05:54:05 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-01-03 05:54:05 +0000 |
commit | 8a64de51ee83fa468d84d48fa86e6ec78750c6e6 (patch) | |
tree | 2671d5d5d1629fa7c5d2ac9f5143f6d401edc0db /app-shells/fish | |
parent | Add modular X dependencies. (diff) | |
download | historical-8a64de51ee83fa468d84d48fa86e6ec78750c6e6.tar.gz historical-8a64de51ee83fa468d84d48fa86e6ec78750c6e6.tar.bz2 historical-8a64de51ee83fa468d84d48fa86e6ec78750c6e6.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.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'app-shells/fish')
-rw-r--r-- | app-shells/fish/ChangeLog | 11 | ||||
-rw-r--r-- | app-shells/fish/Manifest | 4 | ||||
-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 |
4 files changed, 51 insertions, 3 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/Manifest b/app-shells/fish/Manifest index 5de686be9fda..d18d8389bac4 100644 --- a/app-shells/fish/Manifest +++ b/app-shells/fish/Manifest @@ -1,4 +1,6 @@ -MD5 959ee6b40f6e75ad7ae9ae7309eea63c ChangeLog 1836 +MD5 db0b42ac2b57eb8c020011701af0de2d ChangeLog 2115 MD5 59fc62b7cad7793b3368e699fc4b31a9 files/digest-fish-1.18.2 64 +MD5 1f606fe3701c33c32b91055ff29c17f8 files/digest-fish-1.19.0 64 MD5 be32f656fb05d2fe0f376b678c9eef9c fish-1.18.2.ebuild 936 +MD5 b14c46bef356009efed3741d2fb926d6 fish-1.19.0.ebuild 936 MD5 60f93915838cb266eef644d5f73c9d19 metadata.xml 225 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 +} |