summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-08-19 20:11:10 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-08-19 20:11:10 +0000
commitf43bdda8a44010d3c12d61be079ac1ac46814bf0 (patch)
tree5e922be92ea6b2550d4dec48e1353316b1f9fad5 /net-news
parent*** empty log message *** (diff)
downloadgentoo-2-f43bdda8a44010d3c12d61be079ac1ac46814bf0.tar.gz
gentoo-2-f43bdda8a44010d3c12d61be079ac1ac46814bf0.tar.bz2
gentoo-2-f43bdda8a44010d3c12d61be079ac1ac46814bf0.zip
New stable version, removed debug stuff, updated deps.
Diffstat (limited to 'net-news')
-rw-r--r--net-news/pan/ChangeLog6
-rw-r--r--net-news/pan/files/digest-pan-0.13.01
-rw-r--r--net-news/pan/pan-0.13.0.ebuild40
3 files changed, 46 insertions, 1 deletions
diff --git a/net-news/pan/ChangeLog b/net-news/pan/ChangeLog
index 618b4bc1c0db..fac8b1d281f8 100644
--- a/net-news/pan/ChangeLog
+++ b/net-news/pan/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-news/pan
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-news/pan/ChangeLog,v 1.18 2002/08/07 18:31:25 stroke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-news/pan/ChangeLog,v 1.19 2002/08/19 20:11:10 stroke Exp $
+
+*pan-0.13.0 (19 Aug 2002)
+ 19 Aug 2002; Gabriele Giorgetti <stroke@gentoo.org> pan-0.13.0.ebuild:
+ New stable version, removed debug stuff, updated deps.
*pan-0.12.93 (07 Aug 2002)
07 Aug 2002; Gabriele Giorgetti <stroke@gentoo.org> pan-0.12.93.ebuild:
diff --git a/net-news/pan/files/digest-pan-0.13.0 b/net-news/pan/files/digest-pan-0.13.0
new file mode 100644
index 000000000000..1910f6faf1c7
--- /dev/null
+++ b/net-news/pan/files/digest-pan-0.13.0
@@ -0,0 +1 @@
+MD5 c1e6bb1c6f3fbb52dccd79d1f5dfbadd pan-0.13.0.tar.bz2 1681379
diff --git a/net-news/pan/pan-0.13.0.ebuild b/net-news/pan/pan-0.13.0.ebuild
new file mode 100644
index 000000000000..484076fafd39
--- /dev/null
+++ b/net-news/pan/pan-0.13.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/net-news/pan/pan-0.13.0.ebuild,v 1.1 2002/08/19 20:11:10 stroke Exp $
+
+DESCRIPTION="A newsreader for the Gnome2 desktop"
+SRC_URI="http://pan.rebelbase.com/download/releases/${PV}/SOURCE/${P}.tar.bz2"
+HOMEPAGE="http://pan.rebelbase.com"
+
+LICENSE="GPL-2"
+KEYWORDS="x86 ppc"
+SLOT="0"
+
+DEPEND=">=dev-libs/glib-2.0.6-r1
+ >=x11-libs/gtk+-2.0.6-r1
+ >=dev-libs/libxml2-2.4.23
+ dev-libs/libunicode
+ spell? ( >=app-text/gtkspell-2.0.0 )"
+
+RDEPEND="nls? ( sys-devel/gettext )"
+
+export CONFIG_PROTECT_MASK="/etc/gconf"
+
+src_compile() {
+ local myconf=""
+
+ use nls || myconf="--disable-nls"
+ use spell || myconf="$myconf --disable-gtkspell"
+
+ # gtkspell breaks things now.
+ myconf="${myconf} --disable-gtkspell"
+ econf --enable-debug=yes $myconf || die "Configure failure"
+
+ emake || die "Compilation failure"
+}
+
+src_install() {
+ einstall || die "Installation failed"
+
+ dodoc ANNOUNCE AUTHORS ChangeLog COPYING CREDITS INSTALL NEWS README TODO
+}