summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2006-09-23 22:20:27 +0000
committerDaniel Black <dragonheart@gentoo.org>2006-09-23 22:20:27 +0000
commit3b9f4defa8469fafb2c81ead4c8c41523b843fb7 (patch)
treeb75005543c9d3588b11a286795f6f837ba165b5f /net-libs
parentFixed automake deps for bug #148510. (diff)
downloadgentoo-2-3b9f4defa8469fafb2c81ead4c8c41523b843fb7.tar.gz
gentoo-2-3b9f4defa8469fafb2c81ead4c8c41523b843fb7.tar.bz2
gentoo-2-3b9f4defa8469fafb2c81ead4c8c41523b843fb7.zip
fix nls support as per bug #148778 thanks to Timo Kamph
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/gnutls/ChangeLog5
-rw-r--r--net-libs/gnutls/gnutls-1.4.4-r1.ebuild14
2 files changed, 12 insertions, 7 deletions
diff --git a/net-libs/gnutls/ChangeLog b/net-libs/gnutls/ChangeLog
index 6092bac6f725..189dd6633a5c 100644
--- a/net-libs/gnutls/ChangeLog
+++ b/net-libs/gnutls/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.110 2006/09/23 00:01:39 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.111 2006/09/23 22:20:27 dragonheart Exp $
+
+ 23 Sep 2006; Daniel Black <dragonheart@gentoo.org> gnutls-1.4.4-r1.ebuild:
+ fix nls support as per bug #148778 thanks to Timo Kamph
22 Sep 2006; Bryan Østergaard <kloeri@gentoo.org> gnutls-1.4.4-r1.ebuild:
Stable on Alpha + ia64, bug 147682.
diff --git a/net-libs/gnutls/gnutls-1.4.4-r1.ebuild b/net-libs/gnutls/gnutls-1.4.4-r1.ebuild
index 7b5845a0a49f..33bd499b7b9d 100644
--- a/net-libs/gnutls/gnutls-1.4.4-r1.ebuild
+++ b/net-libs/gnutls/gnutls-1.4.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-1.4.4-r1.ebuild,v 1.7 2006/09/23 00:01:39 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-1.4.4-r1.ebuild,v 1.8 2006/09/23 22:20:27 dragonheart Exp $
inherit eutils autotools
@@ -12,7 +12,7 @@ SRC_URI="http://josefsson.org/gnutls/releases/${P}.tar.bz2"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~m68k ~mips ppc ~ppc-macos ppc64 ~s390 ~sh ~sparc x86"
-IUSE="zlib doc"
+IUSE="zlib doc nls"
RDEPEND=">=dev-libs/libgcrypt-1.2.2
>=app-crypt/opencdk-0.5.5
@@ -21,12 +21,13 @@ RDEPEND=">=dev-libs/libgcrypt-1.2.2
>=dev-libs/lzo-2
dev-libs/libgpg-error
>=dev-libs/libtasn1-0.3.4
- sys-devel/gettext"
-#>=sys-devel/gettext-0.14.5" autoconf indicates this version but it works
-# without it
+ nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
sys-devel/libtool
- doc? ( dev-util/gtk-doc )"
+ doc? ( dev-util/gtk-doc )
+ nls? ( sys-devel/gettext )"
+#>=sys-devel/gettext-0.14.5" autoconf indicates this version but it works
+# without it
src_unpack() {
unpack ${A}
@@ -41,6 +42,7 @@ src_compile() {
econf \
$(use_with zlib) \
+ $(use_enable nls) \
--without-included-minilzo \
--without-included-opencdk \
$(use_enable doc gtk-doc) \