diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-24 06:00:27 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-24 06:00:27 +0000 |
commit | 7d6976f0f96a434d020d4c74d65dd6810a4893b3 (patch) | |
tree | d0cf670d84152db519b9ea5108c1cd32feda282a /app-shells/fish | |
parent | Stable on SPARC wrt bug #148837. (diff) | |
download | gentoo-2-7d6976f0f96a434d020d4c74d65dd6810a4893b3.tar.gz gentoo-2-7d6976f0f96a434d020d4c74d65dd6810a4893b3.tar.bz2 gentoo-2-7d6976f0f96a434d020d4c74d65dd6810a4893b3.zip |
(#146789) Bump.
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'app-shells/fish')
-rw-r--r-- | app-shells/fish/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/fish/files/digest-fish-1.21.12 | 3 | ||||
-rw-r--r-- | app-shells/fish/fish-1.21.12.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog index 6bd028ad55f2..17b65235a610 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.23 2006/08/20 23:19:03 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.24 2006/09/24 06:00:27 dberkholz Exp $ + +*fish-1.21.12 (24 Sep 2006) + + 24 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; +fish-1.21.12.ebuild: + (#146789) Bump. 20 Aug 2006; Donnie Berkholz <dberkholz@gentoo.org>; fish-1.21.8.ebuild: Stable on x86/ppc. diff --git a/app-shells/fish/files/digest-fish-1.21.12 b/app-shells/fish/files/digest-fish-1.21.12 new file mode 100644 index 000000000000..11646725f3d9 --- /dev/null +++ b/app-shells/fish/files/digest-fish-1.21.12 @@ -0,0 +1,3 @@ +MD5 77fb4fd2ff5043acf6935f079250ba60 fish-1.21.12.tar.bz2 706246 +RMD160 b8172eee345fe84959acc88f242742bcf1018e50 fish-1.21.12.tar.bz2 706246 +SHA256 4235fc3d14ae39fad792eb288f1117cb9578bbc0f6076fb213aafb1848bec9c0 fish-1.21.12.tar.bz2 706246 diff --git a/app-shells/fish/fish-1.21.12.ebuild b/app-shells/fish/fish-1.21.12.ebuild new file mode 100644 index 000000000000..de0026af621e --- /dev/null +++ b/app-shells/fish/fish-1.21.12.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.21.12.ebuild,v 1.1 2006/09/24 06:00:27 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 +} |