blob: 3cd437edd435f14c0b51cf30e0742f5cbed7811e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# 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.20.2.ebuild,v 1.2 2006/04/08 19:07:28 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=""
RDEPEND="sys-libs/ncurses
sys-devel/bc
www-client/htmlview
|| ( (
x11-libs/libSM
x11-libs/libXext
)
virtual/x11
)"
DEPEND="${RDEPEND}
app-doc/doxygen"
src_compile() {
econf docdir=/usr/share/doc/${PF} || 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
}
|