# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="fish is a user friendly shell intended mostly for interactive use" HOMEPAGE="http://roo.no-ip.org/fish/index.html" SRC_URI="http://roo.no-ip.org/fish/files/1.6.1/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="sys-libs/ncurses" src_unpack() { unpack ${A} cp ${S}/Makefile.in ${S}/Makefile.in.orig sed 's,/usr/local/,/usr/,g' ${S}/Makefile.in.orig > ${S}/Makefile.in } src_compile() { econf || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die }