# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header$ inherit eutils DESCRIPTION="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="~x86" IUSE="X" DEPEND="sys-libs/ncurses app-doc/doxygen X? (virtual/x11)" src_compile() { # work around brokenness, --with-xsel disables xsel too if ! useq X; then myconf="--without-xsel" fi econf ${myconf} || die "econf failed" # doxygen breaks without -j1 emake -j1 || die "emake failed" } src_install() { make DESTDIR=${D} install || die "install failed" }