Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgpg-error: ChangeLog libgpg-error-1.12.ebuild
Date: Sun, 30 Jun 2013 04:56:50
Message-Id: 20130630045642.8298F2171C@flycatcher.gentoo.org
1 radhermit 13/06/30 04:56:42
2
3 Modified: ChangeLog
4 Added: libgpg-error-1.12.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.89 dev-libs/libgpg-error/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?rev=1.89&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?rev=1.89&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/ChangeLog?r1=1.88&r2=1.89
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/ChangeLog,v
20 retrieving revision 1.88
21 retrieving revision 1.89
22 diff -u -r1.88 -r1.89
23 --- ChangeLog 20 Mar 2013 22:14:06 -0000 1.88
24 +++ ChangeLog 30 Jun 2013 04:56:42 -0000 1.89
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.88 2013/03/20 22:14:06 alonbl Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/ChangeLog,v 1.89 2013/06/30 04:56:42 radhermit Exp $
30 +
31 +*libgpg-error-1.12 (30 Jun 2013)
32 +
33 + 30 Jun 2013; Tim Harder <radhermit@g.o> +libgpg-error-1.12.ebuild:
34 + Version bump.
35
36 20 Mar 2013; Alon Bar-Lev <alonbl@g.o> libgpg-error-1.10-r1.ebuild,
37 libgpg-error-1.11.ebuild:
38
39
40
41 1.1 dev-libs/libgpg-error/libgpg-error-1.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgpg-error-1.12.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.12.ebuild,v 1.1 2013/06/30 04:56:42 radhermit Exp $
51
52 EAPI=5
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="common-lisp nls static-libs"
64
65 RDEPEND="nls? ( virtual/libintl )"
66 DEPEND="nls? ( sys-devel/gettext )"
67
68 src_prepare() {
69 elibtoolize
70 }
71
72 src_configure() {
73 econf \
74 $(use_enable nls) \
75 $(use_enable static-libs static) \
76 $(use_enable common-lisp languages)
77 }
78
79 src_install() {
80 default
81
82 # library has no dependencies, so it does not need the .la file
83 find "${D}" -name '*.la' -delete
84 }