Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/libwpd: ChangeLog libwpd-0.9.3.ebuild libwpd-0.9.2.ebuild libwpd-0.9.1.ebuild
Date: Thu, 01 Sep 2011 09:59:19
Message-Id: 20110901095906.B8B1120035@flycatcher.gentoo.org
1 scarabeus 11/09/01 09:59:06
2
3 Modified: ChangeLog
4 Added: libwpd-0.9.3.ebuild
5 Removed: libwpd-0.9.2.ebuild libwpd-0.9.1.ebuild
6 Log:
7 Version bump to latest 0.9 release. Punt older ones from that slot.
8
9 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.80 app-text/libwpd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwpd/ChangeLog?rev=1.80&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwpd/ChangeLog?rev=1.80&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwpd/ChangeLog?r1=1.79&r2=1.80
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/libwpd/ChangeLog,v
21 retrieving revision 1.79
22 retrieving revision 1.80
23 diff -u -r1.79 -r1.80
24 --- ChangeLog 20 Aug 2011 18:32:21 -0000 1.79
25 +++ ChangeLog 1 Sep 2011 09:59:06 -0000 1.80
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-text/libwpd
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/ChangeLog,v 1.79 2011/08/20 18:32:21 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/ChangeLog,v 1.80 2011/09/01 09:59:06 scarabeus Exp $
31 +
32 +*libwpd-0.9.3 (01 Sep 2011)
33 +
34 + 01 Sep 2011; Tomáš Chvátal <scarabeus@g.o> -libwpd-0.9.1.ebuild,
35 + -libwpd-0.9.2.ebuild, +libwpd-0.9.3.ebuild:
36 + Version bump to latest 0.9 release. Punt older ones from that slot.
37
38 20 Aug 2011; Jeroen Roovers <jer@g.o> libwpd-0.8.14-r1.ebuild:
39 Stable for HPPA (bug #369909).
40
41
42
43 1.1 app-text/libwpd/libwpd-0.9.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwpd/libwpd-0.9.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwpd/libwpd-0.9.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libwpd-0.9.3.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/libwpd-0.9.3.ebuild,v 1.1 2011/09/01 09:59:06 scarabeus Exp $
53
54 EAPI=4
55
56 inherit alternatives autotools eutils
57
58 DESCRIPTION="WordPerfect Document import/export library"
59 HOMEPAGE="http://libwpd.sf.net"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0.9"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
65 IUSE="doc test +tools"
66
67 RDEPEND=""
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 doc? ( app-doc/doxygen )
71 test? ( dev-util/cppunit )
72 "
73 RDEPEND="${RDEPEND}
74 !<app-text/libwpd-0.8.14-r1"
75
76 src_configure() {
77 econf \
78 --disable-static \
79 --disable-werror \
80 $(use_with doc docs) \
81 $(use_with tools stream) \
82 --docdir=/usr/share/doc/${PF} \
83 --program-suffix=-${SLOT}
84 }
85
86 src_install() {
87 default
88 find "${ED}" -name '*.la' -exec rm -f {} +
89 }
90
91 pkg_postinst() {
92 if use tools; then
93 alternatives_auto_makesym /usr/bin/wpd2html "/usr/bin/wpd2html-[0-9].[0-9]"
94 alternatives_auto_makesym /usr/bin/wpd2raw "/usr/bin/wpd2raw-[0-9].[0-9]"
95 alternatives_auto_makesym /usr/bin/wpd2text "/usr/bin/wpd2text-[0-9].[0-9]"
96 fi
97 }
98
99 pkg_postrm() {
100 if use tools; then
101 alternatives_auto_makesym /usr/bin/wpd2html "/usr/bin/wpd2html-[0-9].[0-9]"
102 alternatives_auto_makesym /usr/bin/wpd2raw "/usr/bin/wpd2raw-[0-9].[0-9]"
103 alternatives_auto_makesym /usr/bin/wpd2text "/usr/bin/wpd2text-[0-9].[0-9]"
104 fi
105 }