diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-06-21 23:44:19 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-06-21 23:44:19 +0000 |
commit | 5c3a3fa4458ac8a09196a4e18a844d830a2bb50c (patch) | |
tree | ccf4d4683cd2e76365e6e9ade583d9ff888657bc /app-shells/fish | |
parent | (#176530) Bump for minor bugfixes (Paul Bredbury). Also add some error messag... (diff) | |
download | gentoo-2-5c3a3fa4458ac8a09196a4e18a844d830a2bb50c.tar.gz gentoo-2-5c3a3fa4458ac8a09196a4e18a844d830a2bb50c.tar.bz2 gentoo-2-5c3a3fa4458ac8a09196a4e18a844d830a2bb50c.zip |
(#167281) Bump to latest. The doxygen dep is mandatory.
(Portage version: 2.1.2.7)
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.3 | 3 | ||||
-rw-r--r-- | app-shells/fish/fish-1.22.3.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index 9e7ea0947883..2d297b2c3645 100644 --- a/app-shells/fish/ChangeLog +++ b/app-shells/fish/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/fish # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.31 2007/02/04 18:49:31 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.32 2007/06/21 23:44:19 dberkholz Exp $ + +*fish-1.22.3 (21 Jun 2007) + + 21 Jun 2007; Donnie Berkholz <dberkholz@gentoo.org>; +fish-1.22.3.ebuild: + (#167281) Bump to latest. The doxygen dep is mandatory. 04 Feb 2007; Steve Dibb <beandog@gentoo.org> fish-1.22.1.ebuild: amd64 stable, bug 151899 diff --git a/app-shells/fish/files/digest-fish-1.22.3 b/app-shells/fish/files/digest-fish-1.22.3 new file mode 100644 index 000000000000..d7ab0e3d3d5c --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.22.3 @@ -0,0 +1,3 @@ +MD5 016a5944861ea48e363521c240834415 fish-1.22.3.tar.bz2 788097 +RMD160 0ce93c597662688280af8ccb1cb9f203704be978 fish-1.22.3.tar.bz2 788097 +SHA256 7291f2183de3d2b7d2451750ccc435757c186f50d3c1ae7a5ea68c05b591dfd1 fish-1.22.3.tar.bz2 788097 diff --git a/app-shells/fish/fish-1.22.3.ebuild b/app-shells/fish/fish-1.22.3.ebuild new file mode 100644 index 000000000000..ebf3be8fad16 --- /dev/null +++ b/app-shells/fish/fish-1.22.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-1.22.3.ebuild,v 1.1 2007/06/21 23:44:19 dberkholz Exp $ + +DESCRIPTION="fish is the Friendly Interactive SHell" +HOMEPAGE="http://fishshell.org/" +SRC_URI="http://fishshell.org/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} + app-doc/doxygen" + +src_compile() { + # Set things up for fish to be a default shell. + # It has to be in /bin in case /usr is unavailable. + # Also, all of its utilities have to be in /bin. + econf \ + docdir=/usr/share/doc/${PF} \ + --without-xsel \ + --bindir=/bin \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install +} + +pkg_postinst() { + elog + elog "To use ${PN} as your default shell, you need to add /bin/${PN}" + elog "to /etc/shells." + elog + 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." + echo +} |