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 17:09:07
Message-Id: 20110730170855.77C082004B@flycatcher.gentoo.org
1 nelchael 11/07/30 17:08:55
2
3 Modified: ChangeLog
4 Added: man-pages-pl-20070628-r1.ebuild
5 Log:
6 Remove man pages provided by sys-apps/man-db, see bug #375623.
7
8 (Portage version: 2.1.10.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 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.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 19 Oct 2010 10:23:57 -0000 1.13
24 +++ ChangeLog 30 Jul 2011 17:08:55 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-i18n/man-pages-pl
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.13 2010/10/19 10:23:57 leio Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.14 2011/07/30 17:08:55 nelchael Exp $
31 +
32 +*man-pages-pl-20070628-r1 (30 Jul 2011)
33 +
34 + 30 Jul 2011; Krzysztof Pawlik <nelchael@g.o>
35 + +man-pages-pl-20070628-r1.ebuild:
36 + Remove man pages provided by sys-apps/man-db, see bug #375623.
37
38 19 Oct 2010; Mart Raudsepp <leio@g.o> man-pages-pl-20070628.ebuild:
39 Drop to ~mips
40
41
42
43 1.1 app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: man-pages-pl-20070628-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 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-20070628-r1.ebuild,v 1.1 2011/07/30 17:08:55 nelchael Exp $
53
54 inherit autotools
55
56 DESCRIPTION="A collection of Polish translations of Linux manual pages."
57 HOMEPAGE="http://www.batnet.pl/ptm/"
58 SRC_URI="http://www.batnet.pl/ptm/man-PL${PV:6:2}-${PV:4:2}-${PV:0:4}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE=""
64
65 RDEPEND=""
66 DEPEND=""
67
68 S="${WORKDIR}/pl_PL"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 # missing manpages
75 sed -i -e '/\tpasswd.1/ d' man1/Makefile.am
76
77 # manpages provided by other packages
78 mans="gendiff.1 groups.1 apropos.1 man.1 su.1 newgrp.1 whatis.1 gpasswd.1 chsh.1 \
79 chfn.1 limits.5 login.1 expiry.1 porttime.5 lastlog.8 faillog.8 logoutd.8 \
80 rpm.8 rpmdeps.8 rpmbuild.8 rpmcache.8 rpmgraph.8 rpm2cpio.8 evim.1 vim.1 \
81 vimdiff.1 vimtutor.1 ex.1 rview.1 rvim.1 view.1 suauth.5 mc.1"
82 # bug #375623:
83 mans="${mans} manpath.5 catman.8 mandb.8 zsoelim.1 manpath.1"
84 for page in ${mans} ; do
85 sed -i -e "/\\t${page}/ d" man${page: -1}/Makefile.am
86 done
87
88 eautoreconf || die
89 }
90
91 src_compile() {
92 econf || die
93 emake || die
94 }
95
96 src_install() {
97 make DESTDIR="${D}" install || die
98 dodoc AUTHORS ChangeLog FAQ NEWS README TODO
99 }