Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/man-pages-pl: man-pages-pl-0_pre20070628-r2.ebuild ChangeLog
Date: Tue, 28 Jul 2015 10:34:40
Message-Id: 20150728103433.72E9BC3@oystercatcher.gentoo.org
1 idella4 15/07/28 10:34:33
2
3 Modified: ChangeLog
4 Added: man-pages-pl-0_pre20070628-r2.ebuild
5 Log:
6 rename
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.37 app-i18n/man-pages-pl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 10 Aug 2014 17:50:14 -0000 1.36
24 +++ ChangeLog 28 Jul 2015 10:34:33 -0000 1.37
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-i18n/man-pages-pl
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.36 2014/08/10 17:50:14 slyfox Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.37 2015/07/28 10:34:33 idella4 Exp $
31 +
32 +*man-pages-pl-0_pre20070628-r2 (28 Jul 2015)
33 +
34 + 28 Jul 2015; Ian Delaney <idella4@g.o>
35 + +man-pages-pl-0_pre20070628-r2.ebuild:
36 + rename
37
38 10 Aug 2014; Sergei Trofimovich <slyfox@g.o>
39 man-pages-pl-20070628-r2.ebuild:
40
41
42
43 1.1 app-i18n/man-pages-pl/man-pages-pl-0_pre20070628-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-0_pre20070628-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-0_pre20070628-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: man-pages-pl-0_pre20070628-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-0_pre20070628-r2.ebuild,v 1.1 2015/07/28 10:34:33 idella4 Exp $
53
54 EAPI=4
55
56 inherit autotools
57
58 DESCRIPTION="A collection of Polish translations of Linux manual pages"
59 HOMEPAGE="http://www.batnet.pl/ptm/"
60 SRC_URI="http://www.batnet.pl/ptm/man-PL28-06-2007.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
65 IUSE=""
66
67 RDEPEND=""
68 DEPEND=""
69
70 DOCS=(AUTHORS ChangeLog FAQ NEWS README TODO)
71
72 S="${WORKDIR}/pl_PL"
73
74 src_prepare() {
75 # missing manpages
76 sed -i -e '/\tpasswd.1/ d' man1/Makefile.am || die
77
78 # manpages provided by other packages
79 mans="gendiff.1 groups.1 apropos.1 man.1 su.1 newgrp.1 whatis.1 gpasswd.1 chsh.1 \
80 chfn.1 limits.5 login.1 expiry.1 porttime.5 lastlog.8 faillog.8 logoutd.8 \
81 rpm.8 rpmdeps.8 rpmbuild.8 rpmcache.8 rpmgraph.8 rpm2cpio.8 evim.1 vim.1 \
82 vimdiff.1 vimtutor.1 ex.1 rview.1 rvim.1 view.1 suauth.5 mc.1"
83 # bug #375623:
84 mans="${mans} manpath.5 catman.8 mandb.8 zsoelim.1 manpath.1"
85 # bug #403379:
86 mans="${mans} shadow.3"
87 for page in ${mans} ; do
88 sed -i -e "/\\t${page}/d; \$s,\\\,,;" man${page: -1}/Makefile.am || die
89 done
90
91 eautoreconf
92 }