Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/unrtf: ChangeLog unrtf-0.21.1.ebuild
Date: Mon, 01 Feb 2010 06:40:37
Message-Id: E1NbpxY-00032t-5T@stork.gentoo.org
1 robbat2 10/02/01 06:40:32
2
3 Modified: ChangeLog
4 Added: unrtf-0.21.1.ebuild
5 Log:
6 Bug #302284 version bump. Include patch to fix upstream putting config files in /usr/local/lib, and fix the testsuite to use the non-installed copy of them as well.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.39 app-text/unrtf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/unrtf/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -p -w -b -B -u -u -r1.38 -r1.39
22 --- ChangeLog 2 Jan 2010 11:44:06 -0000 1.38
23 +++ ChangeLog 1 Feb 2010 06:40:31 -0000 1.39
24 @@ -1,6 +1,14 @@
25 # ChangeLog for app-text/unrtf
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/unrtf/ChangeLog,v 1.38 2010/01/02 11:44:06 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/unrtf/ChangeLog,v 1.39 2010/02/01 06:40:31 robbat2 Exp $
29 +
30 +*unrtf-0.21.1 (01 Feb 2010)
31 +
32 + 01 Feb 2010; Robin H. Johnson <robbat2@g.o> +unrtf-0.21.1.ebuild,
33 + +files/unrtf-0.21.1-automake-fix.patch:
34 + Bug #302284 version bump. Include patch to fix upstream putting config
35 + files in /usr/local/lib, and fix the testsuite to use the non-installed
36 + copy of them as well.
37
38 02 Jan 2010; Christian Faulhammer <fauli@g.o> unrtf-0.20.5.ebuild:
39 Transfer Prefix keywords
40
41
42
43 1.1 app-text/unrtf/unrtf-0.21.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/unrtf-0.21.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/unrtf-0.21.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: unrtf-0.21.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/unrtf/unrtf-0.21.1.ebuild,v 1.1 2010/02/01 06:40:31 robbat2 Exp $
53
54 inherit eutils autotools
55
56 DESCRIPTION="Converts RTF files to various formats"
57 HOMEPAGE="http://www.gnu.org/software/unrtf/unrtf.html"
58 SRC_URI="http://www.gnu.org/software/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
63 IUSE=""
64
65 src_unpack() {
66 unpack ${A}
67 epatch "${FILESDIR}"/unrtf-0.21.1-automake-fix.patch
68 sed -i \
69 -e 's,/usr/local/lib/,/usr/share/,g' \
70 "${S}"/src/*.h || die "failed to sed"
71 cd "${S}"
72 eautoreconf
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed"
77 dodoc ChangeLog NEWS README AUTHORS
78 }