Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libofx: libofx-0.9.1.ebuild ChangeLog
Date: Tue, 29 Sep 2009 17:59:52
Message-Id: E1MsgzN-0003LR-Vb@stork.gentoo.org
1 vostorga 09/09/29 17:59:49
2
3 Modified: ChangeLog
4 Added: libofx-0.9.1.ebuild
5 Log:
6 Version bump to 0.9.1 Patch thanks to Tim Harder <radhermit@×××××.com> bug 286828
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.47 dev-libs/libofx/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libofx/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libofx/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 14 Jul 2008 00:07:42 -0000 1.46
23 +++ ChangeLog 29 Sep 2009 17:59:49 -0000 1.47
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libofx
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.46 2008/07/14 00:07:42 dirtyepic Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.47 2009/09/29 17:59:49 vostorga Exp $
30 +
31 +*libofx-0.9.1 (29 Sep 2009)
32 +
33 + 29 Sep 2009; Víctor Ostorga <vostorga@g.o> +libofx-0.9.1.ebuild:
34 + Version bump to 0.9.1 Patch thanks to Tim Harder <radhermit@×××××.com> bug
35 + 286828
36
37 14 Jul 2008; Ryan Hill <dirtyepic@g.o>
38 +files/libofx-0.8.3-gcc43.patch, files/libofx-0.9.0-gcc43.patch,
39
40
41
42 1.1 dev-libs/libofx/libofx-0.9.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libofx/libofx-0.9.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libofx/libofx-0.9.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libofx-0.9.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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.1.ebuild,v 1.1 2009/09/29 17:59:49 vostorga Exp $
52
53 EAPI="1"
54
55 inherit eutils
56
57 DESCRIPTION="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"
65
66 DEPEND=">=app-text/opensp-1.5
67 >=net-misc/curl-7.9.7
68 dev-cpp/libxmlpp:0
69 dev-libs/libxml2"
70 RDEPEND="${DEPEND}"
71
72 src_unpack() {
73 unpack ${A}
74
75 # because we redefine docdir in src_install, we need to make sure the
76 # dtd's go to the right place, LIBOFX_DTD_DIR
77 sed -i \
78 -e 's/$(DESTDIR)$(docdir)/$(DESTDIR)$(LIBOFX_DTD_DIR)/g' \
79 "${S}/dtd/Makefile.in" || die "sed failed"
80
81 # We don't want those files
82 sed -i \
83 -e '/^ COPYING/d' -e '/^ INSTALL/d' \
84 "${S}/Makefile.in" || die "sed failed"
85
86 if ! use doc; then
87 sed -i \
88 -e 's|^\(SUBDIRS = .*\) doc|\1|' \
89 "${S}/Makefile.in" || die "sed failed"
90 fi
91
92 # Fix compilation with gcc 4.3, see bug #218782
93 cd "${S}"
94 epatch "${FILESDIR}/${PN}-0.9.0-gcc43.patch"
95 }
96
97 src_install() {
98 dodir /usr/share/doc/${PF}
99 emake install DESTDIR="${D}" docdir="/usr/share/doc/${PF}" || die 'install failed'
100 }
101
102 pkg_postinst() {
103 elog "Please run"
104 elog " revdep-rebuild --library libofx.so.3"
105 elog "to rebuild packages linked against an older version of libofx."
106 }