Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/wv: ChangeLog wv-1.2.9.ebuild wv-1.2.4.ebuild
Date: Mon, 31 Jan 2011 13:07:05
Message-Id: 20110131130654.E8F5020054@flycatcher.gentoo.org
1 pacho 11/01/31 13:06:54
2
3 Modified: ChangeLog
4 Added: wv-1.2.9.ebuild
5 Removed: wv-1.2.4.ebuild
6 Log:
7 Version bump, remove old, dvips and latex are required (bug #345121).
8
9 (Portage version: 2.1.9.35/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.54 app-text/wv/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wv/ChangeLog?rev=1.54&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wv/ChangeLog?rev=1.54&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wv/ChangeLog?r1=1.53&r2=1.54
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v
21 retrieving revision 1.53
22 retrieving revision 1.54
23 diff -u -r1.53 -r1.54
24 --- ChangeLog 12 Mar 2010 10:16:57 -0000 1.53
25 +++ ChangeLog 31 Jan 2011 13:06:54 -0000 1.54
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-text/wv
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.53 2010/03/12 10:16:57 pacho Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.54 2011/01/31 13:06:54 pacho Exp $
32 +
33 +*wv-1.2.9 (31 Jan 2011)
34 +
35 + 31 Jan 2011; Pacho Ramos <pacho@g.o> -wv-1.2.4.ebuild,
36 + +wv-1.2.9.ebuild:
37 + Version bump, remove old, dvips and latex are required (bug #345121).
38
39 *wv-1.2.7 (12 Mar 2010)
40
41
42
43
44 1.1 app-text/wv/wv-1.2.9.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wv/wv-1.2.9.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wv/wv-1.2.9.ebuild?rev=1.1&content-type=text/plain
48
49 Index: wv-1.2.9.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9.ebuild,v 1.1 2011/01/31 13:06:54 pacho Exp $
54
55 EAPI="3"
56
57 DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable"
58 SRC_URI="http://abiword.org/downloads/${PN}/${PV}/${P}.tar.gz"
59 HOMEPAGE="http://wvware.sourceforge.net/"
60
61 IUSE="wmf"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 SLOT="0"
64 LICENSE="GPL-2"
65
66 RDEPEND=">=dev-libs/glib-2
67 >=gnome-extra/libgsf-1.13
68 sys-libs/zlib
69 media-libs/libpng
70 dev-libs/libxml2
71 app-text/texlive-core
72 dev-texlive/texlive-latex
73 wmf? ( >=media-libs/libwmf-0.2.2 )"
74 DEPEND="${RDEPEND}
75 >=dev-util/pkgconfig-0.9"
76
77 src_configure() {
78 econf $(use_with wmf libwmf) || die "./configure failed"
79 }
80
81 src_install () {
82 make DESTDIR="${D}" install || die "Installation failed"
83 dodoc README NEWS || die
84
85 rm -f "${ED}"/usr/share/man/man1/wvConvert.1
86 dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1 || die
87 }
88
89 pkg_postinst() {
90 ewarn "You have to re-emerge packages that linked against wv by running:"
91 ewarn "revdep-rebuild"
92 }