Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgpg-error: libgpg-error-1.11.ebuild ChangeLog
Date: Wed, 06 Mar 2013 11:42:42
Message-Id: 20130306114239.B17F92171D@flycatcher.gentoo.org
1 alonbl 13/03/06 11:42:39
2
3 Modified: ChangeLog
4 Added: libgpg-error-1.11.ebuild
5 Log:
6 Version bump, per bug#460338
7
8 (Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
9
10 Revision Changes Path
11 1.87 dev-libs/libgpg-error/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?rev=1.87&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?rev=1.87&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?r1=1.86&r2=1.87
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/ChangeLog,v
20 retrieving revision 1.86
21 retrieving revision 1.87
22 diff -u -r1.86 -r1.87
23 --- ChangeLog 19 Feb 2013 04:06:27 -0000 1.86
24 +++ ChangeLog 6 Mar 2013 11:42:39 -0000 1.87
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libgpg-error
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/ChangeLog,v 1.86 2013/02/19 04:06:27 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/ChangeLog,v 1.87 2013/03/06 11:42:39 alonbl Exp $
30 +
31 +*libgpg-error-1.11 (06 Mar 2013)
32 +
33 + 06 Mar 2013; Alon Bar-Lev <alonbl@g.o> +libgpg-error-1.11.ebuild:
34 + Version bump, per bug#460338
35
36 19 Feb 2013; Zac Medico <zmedico@g.o> libgpg-error-1.10-r1.ebuild,
37 libgpg-error-1.10.ebuild:
38
39
40
41 1.1 dev-libs/libgpg-error/libgpg-error-1.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgpg-error-1.11.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.11.ebuild,v 1.1 2013/03/06 11:42:39 alonbl Exp $
51
52 EAPI="4"
53
54 inherit libtool
55
56 DESCRIPTION="Contains error handling functions used by GnuPG software"
57 HOMEPAGE="http://www.gnupg.org/related_software/libgpg-error"
58 SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
59
60 LICENSE="GPL-2 LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE_LINGUAS=" cs de fr it nl pl ro sv vi zh_CN"
64 IUSE="common-lisp nls static-libs ${IUSE_LINGUAS// / linguas_}"
65
66 RDEPEND="nls? ( virtual/libintl )"
67 DEPEND="nls? ( sys-devel/gettext )"
68
69 src_prepare() {
70 elibtoolize
71 }
72
73 DOCS=( AUTHORS ChangeLog NEWS README )
74
75 src_configure() {
76 econf \
77 $(use_enable nls) \
78 $(use_enable static-libs static) \
79 $(use_enable common-lisp languages)
80 }
81
82 src_install() {
83 default
84
85 # library has no dependencies, so it does not need the .la file
86 find "${D}" -name '*.la' -delete
87 }