diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-23 01:10:45 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-23 01:10:45 +0000 |
commit | 483a3bce2a712550f1f0267e0ac532759ac5f152 (patch) | |
tree | 9077bc95031ce55fff45dd1cb617aaab8deda20c /net-news/pan | |
parent | Added ChangeLog file and USE dependent nls compilation. (diff) | |
download | gentoo-2-483a3bce2a712550f1f0267e0ac532759ac5f152.tar.gz gentoo-2-483a3bce2a712550f1f0267e0ac532759ac5f152.tar.bz2 gentoo-2-483a3bce2a712550f1f0267e0ac532759ac5f152.zip |
Fixed USE dependent nls compilation.
Diffstat (limited to 'net-news/pan')
-rw-r--r-- | net-news/pan/ChangeLog | 8 | ||||
-rw-r--r-- | net-news/pan/files/digest-pan-0.11.1.93 | 1 | ||||
-rw-r--r-- | net-news/pan/pan-0.11.1.93.ebuild | 38 |
3 files changed, 7 insertions, 40 deletions
diff --git a/net-news/pan/ChangeLog b/net-news/pan/ChangeLog index bdd6e8ec560b..d9d97cb52378 100644 --- a/net-news/pan/ChangeLog +++ b/net-news/pan/ChangeLog @@ -1,6 +1,12 @@ # 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.3 2002/02/17 01:40:00 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/pan/ChangeLog,v 1.4 2002/03/23 01:10:45 seemant Exp $ + +*pan-0.11.2-r1 (22 Mar 2002) + + 22 Mar 2002; Seemant Kulleen <seemant@gentoo.org> pan-0.11.2-r1.ebuild : + + Matthew Kennedy submitted a fix for disabled nls compilation (USE dependent). *pan-0.11.2 (17 Feb 2002) diff --git a/net-news/pan/files/digest-pan-0.11.1.93 b/net-news/pan/files/digest-pan-0.11.1.93 deleted file mode 100644 index 36116a0fc1db..000000000000 --- a/net-news/pan/files/digest-pan-0.11.1.93 +++ /dev/null @@ -1 +0,0 @@ -MD5 5162255e315d883cfc1d691d4fee0743 pan-0.11.1.93.tar.bz2 1548990 diff --git a/net-news/pan/pan-0.11.1.93.ebuild b/net-news/pan/pan-0.11.1.93.ebuild deleted file mode 100644 index 7244f0d4c1f3..000000000000 --- a/net-news/pan/pan-0.11.1.93.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-news/pan/pan-0.11.1.93.ebuild,v 1.1 2002/01/29 21:56:59 azarah 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 -} |