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/files: unrtf-0.21.1-automake-fix.patch
Date: Mon, 01 Feb 2010 06:40:37
Message-Id: E1NbpxY-00033A-TP@stork.gentoo.org
1 robbat2 10/02/01 06:40:32
2
3 Added: unrtf-0.21.1-automake-fix.patch
4 Log:
5 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.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-text/unrtf/files/unrtf-0.21.1-automake-fix.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/files/unrtf-0.21.1-automake-fix.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/unrtf/files/unrtf-0.21.1-automake-fix.patch?rev=1.1&content-type=text/plain
13
14 Index: unrtf-0.21.1-automake-fix.patch
15 ===================================================================
16 diff -Nuarp unrtf-0.21.1.orig/charmaps/Makefile.am unrtf-0.21.1/charmaps/Makefile.am
17 --- unrtf-0.21.1.orig/charmaps/Makefile.am 2010-01-17 07:33:12.000000000 +0000
18 +++ unrtf-0.21.1/charmaps/Makefile.am 2010-02-01 06:37:10.184989205 +0000
19 @@ -1,2 +1,2 @@
20 -outputsdir = ${libdir}/${PACKAGE}
21 +outputsdir = ${pkgdatadir}
22 dist_outputs_DATA = SYMBOL.charmap
23 diff -Nuarp unrtf-0.21.1.orig/outputs/Makefile.am unrtf-0.21.1/outputs/Makefile.am
24 --- unrtf-0.21.1.orig/outputs/Makefile.am 2010-01-17 07:32:48.000000000 +0000
25 +++ unrtf-0.21.1/outputs/Makefile.am 2010-02-01 06:37:20.968321648 +0000
26 @@ -1,2 +1,2 @@
27 -outputsdir = ${libdir}/${PACKAGE}
28 +outputsdir = ${pkgdatadir}
29 dist_outputs_DATA = html.conf latex.conf rtf.conf text.conf vt.conf
30 diff -Nuarp unrtf-0.21.1.orig/tests/Makefile.am unrtf-0.21.1/tests/Makefile.am
31 --- unrtf-0.21.1.orig/tests/Makefile.am 2010-02-01 06:30:50.085007020 +0000
32 +++ unrtf-0.21.1/tests/Makefile.am 2010-02-01 06:31:07.848358870 +0000
33 @@ -61,7 +61,7 @@ CLEANFILES = $(testresults_html) $(testr
34 # add the test scripts and the test data to the distributed files
35 EXTRA_DIST = $(TESTS) $(testdata)
36
37 -TESTS_ENVIRONMENT = UNRTF=$(top_builddir)/src/unrtf
38 +TESTS_ENVIRONMENT = UNRTF="$(top_builddir)/src/unrtf -P $(top_builddir)/outputs:$(top_builddir)/charmaps"
39
40 # ensure that the distributed scripts are executable before distribution.
41 # Could be necessary if checking out CVS.