Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libofx: ChangeLog libofx-0.9.5.ebuild
Date: Sat, 30 Jun 2012 20:02:18
Message-Id: 20120630200154.30CD12004B@flycatcher.gentoo.org
1 dilfridge 12/06/30 20:01:54
2
3 Modified: ChangeLog
4 Added: libofx-0.9.5.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.72 dev-libs/libofx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.72&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.72&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/ChangeLog?r1=1.71&r2=1.72
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v
20 retrieving revision 1.71
21 retrieving revision 1.72
22 diff -u -r1.71 -r1.72
23 --- ChangeLog 24 Jun 2012 20:13:26 -0000 1.71
24 +++ ChangeLog 30 Jun 2012 20:01:52 -0000 1.72
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libofx
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.71 2012/06/24 20:13:26 dilfridge Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.72 2012/06/30 20:01:52 dilfridge Exp $
30 +
31 +*libofx-0.9.5 (30 Jun 2012)
32 +
33 + 30 Jun 2012; Andreas K. Huettel <dilfridge@g.o> +libofx-0.9.5.ebuild,
34 + +files/libofx-0.9.5-gcc47.patch:
35 + Version bump
36
37 24 Jun 2012; Andreas K. Huettel <dilfridge@g.o> libofx-0.9.4.ebuild,
38 +files/libofx-0.9.4-gcc47.patch:
39
40
41
42 1.1 dev-libs/libofx/libofx-0.9.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/libofx-0.9.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libofx/libofx-0.9.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libofx-0.9.5.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.5.ebuild,v 1.1 2012/06/30 20:01:52 dilfridge Exp $
52
53 EAPI=4
54
55 inherit base
56
57 DESCRIPTION="A library to support the Open Financial eXchange XML format"
58 HOMEPAGE="http://libofx.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="doc static-libs test"
65
66 RDEPEND=">=app-text/opensp-1.5
67 dev-cpp/libxmlpp:2.6
68 >=net-misc/curl-7.9.7"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig
71 doc? ( sys-apps/help2man )
72 test? ( app-crypt/gnupg )"
73
74 PATCHES=( "${FILESDIR}/${P}-gcc47.patch" )
75
76 src_prepare() {
77 base_src_prepare
78 # Be sure DTD gets installed in correct path after redefining docdir in install
79 sed -i \
80 -e 's:$(DESTDIR)$(docdir):$(DESTDIR)$(LIBOFX_DTD_DIR):' \
81 dtd/Makefile.in || die
82 }
83
84 src_configure() {
85 econf \
86 $(use_enable static-libs static) \
87 --disable-doxygen
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install
92
93 rm -f "${ED}"/usr/share/doc/${PF}/{COPYING,INSTALL}
94 find "${ED}" -name '*.la' -exec rm -f {} +
95 }