diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-10-18 11:51:24 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-10-18 11:51:24 +0000 |
commit | 7c4a84ae8f342a1dadba0d5a7c2e997815d5ea10 (patch) | |
tree | af1998f6548892459074a72498ed796272543f0c /net-news/pan | |
parent | new version (diff) | |
download | historical-7c4a84ae8f342a1dadba0d5a7c2e997815d5ea10.tar.gz historical-7c4a84ae8f342a1dadba0d5a7c2e997815d5ea10.tar.bz2 historical-7c4a84ae8f342a1dadba0d5a7c2e997815d5ea10.zip |
updated to latest version, hope this will solve your problems aeoo
Diffstat (limited to 'net-news/pan')
-rw-r--r-- | net-news/pan/files/digest-pan-0.10.0.93 | 1 | ||||
-rw-r--r-- | net-news/pan/pan-0.10.0.93.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/net-news/pan/files/digest-pan-0.10.0.93 b/net-news/pan/files/digest-pan-0.10.0.93 new file mode 100644 index 000000000000..3b3f445757b5 --- /dev/null +++ b/net-news/pan/files/digest-pan-0.10.0.93 @@ -0,0 +1 @@ +MD5 51d6d836c68438806b825477ce67f80e pan-0.10.0.93.tar.bz2 diff --git a/net-news/pan/pan-0.10.0.93.ebuild b/net-news/pan/pan-0.10.0.93.ebuild new file mode 100644 index 000000000000..39ca30769b35 --- /dev/null +++ b/net-news/pan/pan-0.10.0.93.ebuild @@ -0,0 +1,38 @@ +# 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.93.ebuild,v 1.1 2001/10/18 11:51:24 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 + >=media-libs/gdk-pixbuf-0.11.0-r1 + >=dev-libs/libxml-1.8.11 + 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 +} |