Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/eclass-manpages: ChangeLog eclass-manpages-20091007.ebuild
Date: Wed, 07 Oct 2009 19:58:12
Message-Id: E1MvceH-0006nU-R5@stork.gentoo.org
1 vapier 09/10/07 19:58:09
2
3 Modified: ChangeLog
4 Added: eclass-manpages-20091007.ebuild
5 Log:
6 Bump to push out accumulated changes in the tree.
7 (Portage version: 2.2_rc42/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.16 app-portage/eclass-manpages/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eclass-manpages/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eclass-manpages/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eclass-manpages/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 30 Aug 2008 03:59:33 -0000 1.15
23 +++ ChangeLog 7 Oct 2009 19:58:09 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-portage/eclass-manpages
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v 1.15 2008/08/30 03:59:33 vapier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v 1.16 2009/10/07 19:58:09 vapier Exp $
30 +
31 +*eclass-manpages-20091007 (07 Oct 2009)
32 +
33 + 07 Oct 2009; Mike Frysinger <vapier@g.o>
34 + +eclass-manpages-20091007.ebuild:
35 + Bump to push out accumulated changes in the tree.
36
37 30 Aug 2008; Mike Frysinger <vapier@g.o>
38 eclass-manpages-20080531.ebuild:
39
40
41
42 1.1 app-portage/eclass-manpages/eclass-manpages-20091007.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eclass-manpages-20091007.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild,v 1.1 2009/10/07 19:58:09 vapier Exp $
52
53 DESCRIPTION="collection of Gentoo eclass manpages"
54 HOMEPAGE="http://www.gentoo.org/"
55 SRC_URI=""
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
60 IUSE=""
61
62 DEPEND=""
63 RDEPEND="!app-portage/portage-manpages"
64
65 S=${WORKDIR}
66
67 src_compile() {
68 local e
69 for e in "${ECLASSDIR}"/*.eclass ; do
70 awk -f "${FILESDIR}"/eclass-to-manpage.awk ${e} > ${e##*/}.5 || rm -f ${e##*/}.5
71 done
72 }
73
74 src_install() {
75 doman *.5 || die
76 }