diff options
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/pan/ChangeLog | 5 | ||||
-rw-r--r-- | net-news/pan/pan-0.13.4.ebuild | 8 |
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" |