diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-01-26 18:55:29 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-01-26 18:55:29 +0000 |
commit | 1736486efd3bb7ece5796dbd2095155d0ea49de1 (patch) | |
tree | 0ea45237b675837850b87057c6d2afcdfd4465ae /app-shells | |
parent | 5.3.0.1 version bump for bug 120412. (diff) | |
download | historical-1736486efd3bb7ece5796dbd2095155d0ea49de1.tar.gz historical-1736486efd3bb7ece5796dbd2095155d0ea49de1.tar.bz2 historical-1736486efd3bb7ece5796dbd2095155d0ea49de1.zip |
Adds emerge completion. Also, shellscript stack trace on errors, bugfix for fg, fallback for seq, new completions and more.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/fish/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/fish/Manifest | 4 | ||||
-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 |
4 files changed, 49 insertions, 2 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/Manifest b/app-shells/fish/Manifest index c1d84b70f136..f68ae099175c 100644 --- a/app-shells/fish/Manifest +++ b/app-shells/fish/Manifest @@ -1,8 +1,10 @@ -MD5 ae511763c8bb058ec1c7a09baea7b5e2 ChangeLog 2624 +MD5 b7a9d17a4ae0a7576542a7d470ecaf2b ChangeLog 2857 MD5 59fc62b7cad7793b3368e699fc4b31a9 files/digest-fish-1.18.2 64 MD5 1f606fe3701c33c32b91055ff29c17f8 files/digest-fish-1.19.0 64 MD5 f6fa176d3e3f20f84fa319242532b423 files/digest-fish-1.20.0 64 +MD5 9156e6788c6c1dc96ca24764292f93d8 files/digest-fish-1.20.1 64 MD5 be32f656fb05d2fe0f376b678c9eef9c fish-1.18.2.ebuild 936 MD5 b14c46bef356009efed3741d2fb926d6 fish-1.19.0.ebuild 936 MD5 4eed9ee52a6be3fa234b104cd8629550 fish-1.20.0.ebuild 936 +MD5 7102f0e81a1f8854775d6df0d0b09e68 fish-1.20.1.ebuild 936 MD5 60f93915838cb266eef644d5f73c9d19 metadata.xml 225 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 +} |