Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/idnkit: ChangeLog idnkit-1.0-r2.ebuild
Date: Wed, 23 Nov 2011 13:03:26
Message-Id: 20111123130302.590DD2004B@flycatcher.gentoo.org
1 naota 11/11/23 13:03:02
2
3 Modified: ChangeLog idnkit-1.0-r2.ebuild
4 Log:
5 Add ~x86-fbsd. Depends on virtual/iconv instead of glibc; Specify --with-libiconv when it's available. Bug #377725
6
7 (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.32 net-dns/idnkit/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dns/idnkit/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 11 Oct 2011 15:18:36 -0000 1.31
23 +++ ChangeLog 23 Nov 2011 13:03:02 -0000 1.32
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-dns/idnkit
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/ChangeLog,v 1.31 2011/10/11 15:18:36 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/ChangeLog,v 1.32 2011/11/23 13:03:02 naota Exp $
29 +
30 + 23 Nov 2011; Naohiro Aota <naota@g.o> idnkit-1.0-r2.ebuild:
31 + Add ~x86-fbsd. Depends on virtual/iconv instead of glibc; Specify
32 + --with-libiconv when it's available.
33
34 *idnkit-1.0-r2 (11 Oct 2011)
35
36
37
38
39 1.2 net-dns/idnkit/idnkit-1.0-r2.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild?r1=1.1&r2=1.2
44
45 Index: idnkit-1.0-r2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- idnkit-1.0-r2.ebuild 11 Oct 2011 15:18:36 -0000 1.1
52 +++ idnkit-1.0-r2.ebuild 23 Nov 2011 13:03:02 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild,v 1.1 2011/10/11 15:18:36 jer Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r2.ebuild,v 1.2 2011/11/23 13:03:02 naota Exp $
58
59 EAPI="4"
60
61 @@ -12,11 +12,10 @@
62
63 LICENSE="JNIC"
64 SLOT="0"
65 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
66 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
67 IUSE="static-libs"
68
69 -DEPEND="sys-libs/glibc"
70 -# non gnu systems need libiconv
71 +DEPEND="virtual/libiconv"
72
73 S=${WORKDIR}/${P}-src
74
75 @@ -29,7 +28,11 @@
76 }
77
78 src_configure() {
79 - econf $(use_enable static-libs static)
80 + myconf=""
81 + if has_version dev-libs/libiconv; then
82 + myconf="--with-iconv"
83 + fi
84 + econf $(use_enable static-libs static) ${myconf}
85 }
86
87 src_install() {