summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2003-03-02 13:15:00 +0000
committerAlastair Tse <liquidx@gentoo.org>2003-03-02 13:15:00 +0000
commitbc1266ed90afafbac64f3fc7c1d67b6537725297 (patch)
treec5e122fd09ac7e91adeacf4b0405e1087603203a /net-news/pan
parentAdded ~sparc to keywords. (diff)
downloadhistorical-bc1266ed90afafbac64f3fc7c1d67b6537725297.tar.gz
historical-bc1266ed90afafbac64f3fc7c1d67b6537725297.tar.bz2
historical-bc1266ed90afafbac64f3fc7c1d67b6537725297.zip
warning added about lack of nls
Diffstat (limited to 'net-news/pan')
-rw-r--r--net-news/pan/ChangeLog5
-rw-r--r--net-news/pan/pan-0.13.4.ebuild8
2 files changed, 11 insertions, 2 deletions
diff --git a/net-news/pan/ChangeLog b/net-news/pan/ChangeLog
index ce70e79ba64e..b945d363c8c9 100644
--- a/net-news/pan/ChangeLog
+++ b/net-news/pan/ChangeLog
@@ -1,9 +1,12 @@
# ChangeLog for net-news/pan
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/pan/ChangeLog,v 1.25 2003/02/28 01:03:43 foser Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-news/pan/ChangeLog,v 1.26 2003/03/02 13:15:00 liquidx Exp $
*pan-0.13.4 (27 Feb 2003)
+ 02 Mar 2003; Alastair Tse <liquidx@gentoo.org> pan-0.13.4.ebuild :
+ Add warning about compiling without nls-less glibc #16624
+
27 Feb 2003; foser <foser@gentoo.org> pan-0.13.4.ebuild :
Added gnet dep to fix #16515
diff --git a/net-news/pan/pan-0.13.4.ebuild b/net-news/pan/pan-0.13.4.ebuild
index 70af08aa6948..ec1341bdfefc 100644
--- a/net-news/pan/pan-0.13.4.ebuild
+++ b/net-news/pan/pan-0.13.4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/pan/pan-0.13.4.ebuild,v 1.2 2003/02/28 01:03:43 foser Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-news/pan/pan-0.13.4.ebuild,v 1.3 2003/03/02 13:15:00 liquidx Exp $
IUSE="spell"
@@ -27,6 +27,12 @@ export CONFIG_PROTECT_MASK="/etc/gconf"
src_compile() {
local myconf=""
+ # Likely that glibc might of been compiled with nls turned off.
+ # Warn people that Pan requires glibc to have nls support.
+ if [ -z "`use nls`" ]; then
+ ewarn "Pan requires glibc to be merged with 'nls' in your USE flags."
+ fi
+
use spell \
&& myconf="${myconf} --enable-gtkspell" \
|| myconf="${myconf} --disable-gtkspell"