summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2006-06-21 06:45:08 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2006-06-21 06:45:08 +0000
commit029f9b1b385291d55b142f8b189cc8b86ef7653b (patch)
treecb99c56540fe615a4f13243ca1daa2f4c7028a48 /app-shells/fish
parentAdd missing keywords, this was previously built within app-shells/fish which ... (diff)
downloadgentoo-2-029f9b1b385291d55b142f8b189cc8b86ef7653b.tar.gz
gentoo-2-029f9b1b385291d55b142f8b189cc8b86ef7653b.tar.bz2
gentoo-2-029f9b1b385291d55b142f8b189cc8b86ef7653b.zip
Bump. (#131638) Add X USE flag to pull in external x11-misc/xsel. Adds lots of other features, see the package ChangeLog for details.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'app-shells/fish')
-rw-r--r--app-shells/fish/ChangeLog8
-rw-r--r--app-shells/fish/files/digest-fish-1.21.83
-rw-r--r--app-shells/fish/fish-1.21.8.ebuild42
3 files changed, 52 insertions, 1 deletions
diff --git a/app-shells/fish/ChangeLog b/app-shells/fish/ChangeLog
index 5470cfc15bc7..3cc06ed72ab5 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.18 2006/04/08 19:14:27 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.19 2006/06/21 06:45:07 spyderous Exp $
+
+*fish-1.21.8 (21 Jun 2006)
+
+ 21 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; +fish-1.21.8.ebuild:
+ Bump. (#131638) Add X USE flag to pull in external x11-misc/xsel. Adds lots
+ of other features, see the package ChangeLog for details.
*fish-1.21.4 (08 Apr 2006)
diff --git a/app-shells/fish/files/digest-fish-1.21.8 b/app-shells/fish/files/digest-fish-1.21.8
new file mode 100644
index 000000000000..1e256e374505
--- /dev/null
+++ b/app-shells/fish/files/digest-fish-1.21.8
@@ -0,0 +1,3 @@
+MD5 d1016ec62fc3815beabeb5b7c0146b5e fish-1.21.8.tar.bz2 572197
+RMD160 68cfaf807b45a8652dfd486169ef829ba37c6427 fish-1.21.8.tar.bz2 572197
+SHA256 49e8a4e289ca9a6acace39a0056dd5abc335940904c8a11034dd52b98f2afd38 fish-1.21.8.tar.bz2 572197
diff --git a/app-shells/fish/fish-1.21.8.ebuild b/app-shells/fish/fish-1.21.8.ebuild
new file mode 100644
index 000000000000..85dc55f90193
--- /dev/null
+++ b/app-shells/fish/fish-1.21.8.ebuild
@@ -0,0 +1,42 @@
+# 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.8.ebuild,v 1.1 2006/06/21 06:45:07 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="X"
+RDEPEND="sys-libs/ncurses
+ sys-devel/bc
+ www-client/htmlview
+ X? ( x11-misc/xsel )"
+DEPEND="${RDEPEND}
+ app-doc/doxygen"
+
+src_compile() {
+ econf \
+ docdir=/usr/share/doc/${PF} \
+ --without-xsel \
+ || 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
+ 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
+}