diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-01-16 21:42:42 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-01-16 21:42:42 +0000 |
commit | 855fce20a85c2526a0328516c1d5ee25dce3a6d1 (patch) | |
tree | 11be129df4fe5760fa74fe91bd27f06356c8392b /net-print/gtklp | |
parent | bug 13952 (diff) | |
download | gentoo-2-855fce20a85c2526a0328516c1d5ee25dce3a6d1.tar.gz gentoo-2-855fce20a85c2526a0328516c1d5ee25dce3a6d1.tar.bz2 gentoo-2-855fce20a85c2526a0328516c1d5ee25dce3a6d1.zip |
fixed nls issues as reported in bug #9404
Diffstat (limited to 'net-print/gtklp')
-rw-r--r-- | net-print/gtklp/ChangeLog | 5 | ||||
-rw-r--r-- | net-print/gtklp/gtklp-0.9m.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-print/gtklp/ChangeLog b/net-print/gtklp/ChangeLog index a88566e16b94..8d101676c75a 100644 --- a/net-print/gtklp/ChangeLog +++ b/net-print/gtklp/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for net-print/gtklp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/ChangeLog,v 1.6 2002/10/30 17:17:55 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/ChangeLog,v 1.7 2003/01/16 21:42:42 raker Exp $ *gtklp-0.9m (22 Oct 2002) + 16 Jan 2003; Nick Hadaway <raker@gentoo.org> gtklp-0.9m.ebuild : + Finally fixed nls installation issues. + 30 Oct 2002; Nick Hadaway <raker@gentoo.org> gtklp-0.9m.ebuild : Marking 0.9m as stable. Re-enabling the nls use variable support. See bug #9404 for details. diff --git a/net-print/gtklp/gtklp-0.9m.ebuild b/net-print/gtklp/gtklp-0.9m.ebuild index 58546b293c77..4587b1888140 100644 --- a/net-print/gtklp/gtklp-0.9m.ebuild +++ b/net-print/gtklp/gtklp-0.9m.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/gtklp-0.9m.ebuild,v 1.2 2002/10/30 17:17:55 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/gtklp-0.9m.ebuild,v 1.3 2003/01/16 21:42:42 raker Exp $ inherit libtool @@ -22,10 +22,10 @@ src_compile() { elibtoolize local myconf - + use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" + && myconf="${myconf} --with-included-gettext" \ + || myconf="${myconf} --without-included-gettext" use ssl \ && myconf="${myconf} --enable-ssl" \ |