diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-11-13 04:36:55 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-11-13 04:36:55 +0000 |
commit | 66bf56d2a14b2cdafee6cc71bb3a0eff8816f94d (patch) | |
tree | 5fc9feec0ae8cde07b4fbce63c10d18b90b1c882 /app-shells/fish | |
parent | Stable on amd64. Bug #141446. (diff) | |
download | gentoo-2-66bf56d2a14b2cdafee6cc71bb3a0eff8816f94d.tar.gz gentoo-2-66bf56d2a14b2cdafee6cc71bb3a0eff8816f94d.tar.bz2 gentoo-2-66bf56d2a14b2cdafee6cc71bb3a0eff8816f94d.zip |
Bump.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'app-shells/fish')
-rw-r--r-- | app-shells/fish/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/fish/files/digest-fish-1.22.1 | 3 | ||||
-rw-r--r-- | app-shells/fish/fish-1.22.1.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index 17b65235a610..beba52f41740 100644 --- a/app-shells/fish/ChangeLog +++ b/app-shells/fish/ChangeLog @@ -1,6 +1,11 @@ # 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.24 2006/09/24 06:00:27 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.25 2006/11/13 04:36:55 dberkholz Exp $ + +*fish-1.22.1 (13 Nov 2006) + + 13 Nov 2006; Donnie Berkholz <dberkholz@gentoo.org>; +fish-1.22.1.ebuild: + Bump. *fish-1.21.12 (24 Sep 2006) diff --git a/app-shells/fish/files/digest-fish-1.22.1 b/app-shells/fish/files/digest-fish-1.22.1 new file mode 100644 index 000000000000..467b8bc0ba80 --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.22.1 @@ -0,0 +1,3 @@ +MD5 c77e4d53b5d4890a2a857126f1767f22 fish-1.22.1.tar.bz2 733413 +RMD160 5dc03d8d91b68bebeebe6c26a2e5b7484e0b0e9a fish-1.22.1.tar.bz2 733413 +SHA256 98704c6098f830c2e3b7ab667f88641cda85e53cb29b4e81bb267fe5b4c61ded fish-1.22.1.tar.bz2 733413 diff --git a/app-shells/fish/fish-1.22.1.ebuild b/app-shells/fish/fish-1.22.1.ebuild new file mode 100644 index 000000000000..0c925f702f41 --- /dev/null +++ b/app-shells/fish/fish-1.22.1.ebuild @@ -0,0 +1,45 @@ +# 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.22.1.ebuild,v 1.1 2006/11/13 04:36:55 dberkholz 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="doc X" +RDEPEND="sys-libs/ncurses + sys-devel/bc + www-client/htmlview + X? ( x11-misc/xsel )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_compile() { + econf \ + docdir=/usr/share/doc/${PF} \ + --without-xsel \ + || die "econf failed" + emake || die "emake failed" + if use doc; then + emake doc || die "emake doc failed" + fi +} + +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 +} |