Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/gwenhywfar: gwenhywfar-3.11.3.ebuild ChangeLog gwenhywfar-3.8.0.ebuild gwenhywfar-3.8.1.ebuild gwenhywfar-2.6.2.ebuild gwenhywfar-3.7.2.ebuild
Date: Thu, 07 Jan 2010 10:12:29
Message-Id: E1NSpLu-0005HG-KP@stork.gentoo.org
1 ssuominen 10/01/07 10:12:26
2
3 Modified: ChangeLog
4 Added: gwenhywfar-3.11.3.ebuild
5 Removed: gwenhywfar-3.8.0.ebuild gwenhywfar-3.8.1.ebuild
6 gwenhywfar-2.6.2.ebuild gwenhywfar-3.7.2.ebuild
7 Log:
8 Version bump.
9 (Portage version: 2.2_rc61/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.77 sys-libs/gwenhywfar/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.77&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.77&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?r1=1.76&r2=1.77
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v
21 retrieving revision 1.76
22 retrieving revision 1.77
23 diff -u -r1.76 -r1.77
24 --- ChangeLog 4 Jan 2010 13:45:44 -0000 1.76
25 +++ ChangeLog 7 Jan 2010 10:12:26 -0000 1.77
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-libs/gwenhywfar
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.76 2010/01/04 13:45:44 fauli Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.77 2010/01/07 10:12:26 ssuominen Exp $
31 +
32 +*gwenhywfar-3.11.3 (07 Jan 2010)
33 +
34 + 07 Jan 2010; Samuli Suominen <ssuominen@g.o>
35 + +gwenhywfar-3.11.3.ebuild:
36 + Version bump.
37
38 04 Jan 2010; Christian Faulhammer <fauli@g.o>
39 gwenhywfar-3.10.1.ebuild:
40
41
42
43 1.1 sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gwenhywfar-3.11.3.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild,v 1.1 2010/01/07 10:12:26 ssuominen Exp $
53
54 EAPI=2
55
56 DESCRIPTION="A multi-platform helper library for other libraries"
57 HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
58 SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=31&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="debug ssl doc"
64
65 RDEPEND="ssl? ( net-libs/gnutls )"
66 DEPEND="${RDEPEND}
67 doc? ( app-doc/doxygen )"
68
69 src_configure() {
70 econf \
71 --disable-dependency-tracking \
72 $(use_enable ssl) \
73 --enable-visibility \
74 $(use_enable debug) \
75 $(use_enable doc full-doc) \
76 --with-docpath=/usr/share/doc/${PF}/apidoc
77 }
78
79 src_compile() {
80 emake || die
81
82 if use doc; then
83 emake srcdoc || die
84 fi
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die
89 dodoc AUTHORS ChangeLog README TODO
90
91 if use doc; then
92 emake DESTDIR="${D}" install-srcdoc || die
93 fi
94
95 find "${D}" -name '*.la' -delete
96 }