Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/man-pages-pl: ChangeLog man-pages-pl-20070628-r1.ebuild
Date: Sat, 30 Jul 2011 21:18:17
Message-Id: 20110730211805.4D5DD2004B@flycatcher.gentoo.org
1 nelchael 11/07/30 21:18:05
2
3 Modified: ChangeLog man-pages-pl-20070628-r1.ebuild
4 Log:
5 Modify sed expression to remove trailing slash on last line, this was causing automake error.
6
7 (Portage version: 2.1.10.9/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 app-i18n/man-pages-pl/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 30 Jul 2011 17:08:55 -0000 1.14
23 +++ ChangeLog 30 Jul 2011 21:18:05 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-i18n/man-pages-pl
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.14 2011/07/30 17:08:55 nelchael Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.15 2011/07/30 21:18:05 nelchael Exp $
29 +
30 + 30 Jul 2011; Krzysztof Pawlik <nelchael@g.o>
31 + man-pages-pl-20070628-r1.ebuild:
32 + Modify sed expression to remove trailing slash on last line, this was causing
33 + automake error.
34
35 *man-pages-pl-20070628-r1 (30 Jul 2011)
36
37
38
39
40 1.2 app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild?r1=1.1&r2=1.2
45
46 Index: man-pages-pl-20070628-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- man-pages-pl-20070628-r1.ebuild 30 Jul 2011 17:08:55 -0000 1.1
53 +++ man-pages-pl-20070628-r1.ebuild 30 Jul 2011 21:18:05 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild,v 1.1 2011/07/30 17:08:55 nelchael Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild,v 1.2 2011/07/30 21:18:05 nelchael Exp $
59
60 inherit autotools
61
62 @@ -33,7 +33,7 @@
63 # bug #375623:
64 mans="${mans} manpath.5 catman.8 mandb.8 zsoelim.1 manpath.1"
65 for page in ${mans} ; do
66 - sed -i -e "/\\t${page}/ d" man${page: -1}/Makefile.am
67 + sed -i -e "/\\t${page}/d; \$s,\\\,,;" man${page: -1}/Makefile.am
68 done
69
70 eautoreconf || die