Gentoo Archives: gentoo-commits

From: "Jeff Horelick (jdhore)" <jdhore@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/fish: fish-2.1.0.ebuild ChangeLog
Date: Thu, 31 Oct 2013 02:44:14
Message-Id: 20131031024410.6336C2004E@flycatcher.gentoo.org
1 jdhore 13/10/31 02:44:10
2
3 Modified: ChangeLog
4 Added: fish-2.1.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux i686, signed Manifest commit with key 23E9E900)
9
10 Revision Changes Path
11 1.60 app-shells/fish/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 5 Sep 2013 19:24:42 -0000 1.59
24 +++ ChangeLog 31 Oct 2013 02:44:10 -0000 1.60
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-shells/fish
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.59 2013/09/05 19:24:42 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.60 2013/10/31 02:44:10 jdhore Exp $
30 +
31 +*fish-2.1.0 (31 Oct 2013)
32 +
33 + 31 Oct 2013; Jeff Horelick <jdhore@g.o> +fish-2.1.0.ebuild:
34 + Version bump
35
36 05 Sep 2013; Agostino Sarubbo <ago@g.o> fish-2.0.0.ebuild:
37 Stable for x86, wrt bug #480226
38
39
40
41 1.1 app-shells/fish/fish-2.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/fish-2.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/fish-2.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fish-2.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-2.1.0.ebuild,v 1.1 2013/10/31 02:44:10 jdhore Exp $
51
52 EAPI=5
53
54 inherit base autotools
55
56 DESCRIPTION="fish is the Friendly Interactive SHell"
57 HOMEPAGE="http://fishshell.com/"
58 SRC_URI="http://fishshell.com/files/${PV}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="X"
64
65 DEPEND="sys-libs/ncurses
66 sys-devel/bc
67 sys-devel/gettext
68 www-client/htmlview
69 X? ( x11-misc/xsel )"
70 RDEPEND="${DEPEND}"
71
72 src_prepare() {
73 eautoreconf
74 }
75
76 src_configure() {
77 # Set things up for fish to be a default shell.
78 # It has to be in /bin in case /usr is unavailable.
79 # Also, all of its utilities have to be in /bin.
80 econf \
81 docdir="${EPREFIX}"/usr/share/doc/${PF} \
82 --bindir="${EPREFIX}"/bin
83 }
84
85 pkg_postinst() {
86 elog "fish is now installed on your system."
87 elog "To run fish, type 'fish' in your terminal."
88 elog
89 elog "To use fish as your login shell:"
90 elog "* add the line '${EPREFIX}/bin/${PN}'"
91 elog "* to the file '${EPREFIX}/etc/shells'."
92 elog "* use the command 'chsh -s ${EPREFIX}/bin/${PN}'."
93 elog
94 elog "To set your colors, run 'fish_config'"
95 elog "To scan your man pages for completions, run 'fish_update_completions'"
96 elog "To autocomplete command suggestions press Ctrl + F or right arrow key."
97 elog
98 elog "Have fun!"
99 }