Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libofx: libofx-0.9.2.ebuild ChangeLog
Date: Tue, 01 Mar 2011 18:20:32
Message-Id: 20110301182022.9DF9820054@flycatcher.gentoo.org
1 ssuominen 11/03/01 18:20:22
2
3 Modified: ChangeLog
4 Added: libofx-0.9.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.55 dev-libs/libofx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.55&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.55&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?r1=1.54&r2=1.55
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v
20 retrieving revision 1.54
21 retrieving revision 1.55
22 diff -u -r1.54 -r1.55
23 --- ChangeLog 19 Jan 2010 14:35:43 -0000 1.54
24 +++ ChangeLog 1 Mar 2011 18:20:22 -0000 1.55
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libofx
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.54 2010/01/19 14:35:43 ranger Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.55 2011/03/01 18:20:22 ssuominen Exp $
31 +
32 +*libofx-0.9.2 (01 Mar 2011)
33 +
34 + 01 Mar 2011; Samuli Suominen <ssuominen@g.o> +libofx-0.9.2.ebuild:
35 + Version bump.
36
37 19 Jan 2010; Brent Baude <ranger@g.o> libofx-0.9.1.ebuild:
38 Marking libofx-0.9.1 ppc64 for bug 299533
39
40
41
42 1.1 dev-libs/libofx/libofx-0.9.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/libofx-0.9.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/libofx-0.9.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libofx-0.9.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/libofx-0.9.2.ebuild,v 1.1 2011/03/01 18:20:22 ssuominen Exp $
52
53 EAPI=4
54
55 DESCRIPTION="A library to support the Open Financial eXchange XML format"
56 HOMEPAGE="http://libofx.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="static-libs"
63
64 RDEPEND=">=app-text/opensp-1.5
65 dev-cpp/libxmlpp:0
66 >=net-misc/curl-7.9.7"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 src_prepare() {
71 # Be sure DTD gets installed in correct path after redefining docdir in install
72 sed -i \
73 -e 's:$(DESTDIR)$(docdir):$(DESTDIR)$(LIBOFX_DTD_DIR):' \
74 dtd/Makefile.in || die
75 }
76
77 src_configure() {
78 econf \
79 $(use_enable static-libs static) \
80 --disable-doxygen
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install
85
86 rm -f "${D}"/usr/share/doc/${PF}/{COPYING,INSTALL}
87 find "${D}" -name '*.la' -exec rm -f {} +
88 }