diff options
Diffstat (limited to 'net-news/pan/pan-0.10.0.92.ebuild')
-rw-r--r-- | net-news/pan/pan-0.10.0.92.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-news/pan/pan-0.10.0.92.ebuild b/net-news/pan/pan-0.10.0.92.ebuild new file mode 100644 index 000000000000..7e52e7fe14e7 --- /dev/null +++ b/net-news/pan/pan-0.10.0.92.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Erik Van Reeth <erik@vanreeth.org> +# $Header: /var/cvsroot/gentoo-x86/net-news/pan/pan-0.10.0.92.ebuild,v 1.1 2001/10/07 09:15:12 hallski Exp $ + + +S=${WORKDIR}/${P} +DESCRIPTION="A newsreader for GNOME." +SRC_URI="http://pan.rebelbase.com/download/${PV}/SOURCE/${P}.tar.bz2" +HOMEPAGE="http://pan.rebelbase.com/" + +DEPEND="virtual/x11 + nls? ( sys-devel/gettext ) + >=gnome-base/gnome-libs-1.4.1.2-r1 + gtkhtml? ( >=gnome-extra/gtkhtml-0.14.0-r1 )" + +src_compile() { + local myconf + + use nls || myconf=--disable-nls + use gtkhtml && myconf="$myconf --enable-html" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + $myconf || die + + # Doesn't work with -j 4 (hallski) + make || die +} + +src_install () { + make prefix=${D}/usr sysconfdir=${D}/etc install + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |