# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-nntp/pan/pan-0.134.ebuild,v 1.1 2011/02/23 22:23:24 eva Exp $ EAPI="3" DESCRIPTION="A newsreader for GNOME" HOMEPAGE="http://pan.rebelbase.com/" SRC_URI="http://pan.rebelbase.com/download/releases/${PV}/source/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="spell" RDEPEND=">=dev-libs/glib-2.14:2 >=x11-libs/gtk+-2.16:2 dev-libs/gmime:2.4 spell? ( >=app-text/gtkspell-2.0.7 )" DEPEND="${RDEPEND} >=dev-util/intltool-0.35.5 dev-util/pkgconfig sys-devel/gettext" src_prepare() { # XXX: disable the only failing test sed '293 s:^\(.*\)$:/*\1*/:' \ -i pan/usenet-utils/text-massager-test.cc || die "sed failed" } src_configure() { econf $(use_with spell gtkspell) } src_install() { emake install DESTDIR="${D}" || die "make install failed" dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed" }