# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.9.ebuild,v 1.14 2007/10/09 08:27:07 jer Exp $ inherit eutils autotools DESCRIPTION="Hypertext info and man viewer based on (n)curses" HOMEPAGE="http://pinfo.alioth.debian.org/" SRC_URI="http://alioth.debian.org/download.php/1498/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 hppa ia64 mips ppc ppc64 sparc x86 ~x86-fbsd" IUSE="nls readline" RDEPEND="sys-libs/ncurses nls? ( virtual/libintl )" DEPEND="${RDEPEND} sys-devel/bison nls? ( sys-devel/gettext )" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-FTPVIEWER.patch epatch "${FILESDIR}"/${P}-as-needed.patch AT_M4DIR="${S}/macros" eautoreconf } src_compile() { econf \ $(use_with readline) \ $(use_enable nls) \ || die "econf failed" emake || die } src_install() { make DESTDIR="${D}" sysconfdir=/etc install || die }