Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/ConfigReader: ChangeLog ConfigReader-0.5.ebuild
Date: Tue, 11 May 2010 08:10:07
Message-Id: 20100511080956.D16D92C4F8@corvid.gentoo.org
1 tove 10/05/11 08:09:56
2
3 Modified: ChangeLog ConfigReader-0.5.ebuild
4 Log:
5 Maintenance. EAPI=2
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.11 dev-perl/ConfigReader/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ChangeLog?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ChangeLog?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ChangeLog?r1=1.10&r2=1.11
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ChangeLog,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- ChangeLog 15 Jan 2007 15:13:24 -0000 1.10
22 +++ ChangeLog 11 May 2010 08:09:56 -0000 1.11
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-perl/ConfigReader
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ChangeLog,v 1.10 2007/01/15 15:13:24 mcummings Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ChangeLog,v 1.11 2010/05/11 08:09:56 tove Exp $
29 +
30 + 11 May 2010; Torsten Veller <tove@g.o> ConfigReader-0.5.ebuild:
31 + Maintenance. EAPI=2
32
33 15 Jan 2007; Michael Cummings <mcummings@g.o>
34 ConfigReader-0.5.ebuild:
35
36
37
38 1.11 dev-perl/ConfigReader/ConfigReader-0.5.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild?rev=1.11&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild?rev=1.11&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild?r1=1.10&r2=1.11
43
44 Index: ConfigReader-0.5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild,v
47 retrieving revision 1.10
48 retrieving revision 1.11
49 diff -u -r1.10 -r1.11
50 --- ConfigReader-0.5.ebuild 15 Jan 2007 15:13:24 -0000 1.10
51 +++ ConfigReader-0.5.ebuild 11 May 2010 08:09:56 -0000 1.11
52 @@ -1,26 +1,25 @@
53 -# Copyright 1999-2007 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild,v 1.10 2007/01/15 15:13:24 mcummings Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild,v 1.11 2010/05/11 08:09:56 tove Exp $
58
59 -# No sense in inheriting since this package is a flat set of files.
60 -# No Makefile.PL/Build.PL to work with at all.
61 -#inherit perl-module
62 +EAPI=2
63 +
64 +PERL_EXPORT_PHASE_FUNCTIONS=no
65 +MODULE_AUTHOR=AMW
66 +inherit perl-module
67
68 DESCRIPTION="Read directives from a configuration file."
69 -HOMEPAGE="http://search.cpan.org/~amw/"
70 -SRC_URI="mirror://cpan/authors/id/A/AM/AMW/${P}.tar.gz"
71
72 LICENSE="LGPL-2"
73 SLOT="0"
74 KEYWORDS="amd64 ia64 ~ppc sparc x86"
75 IUSE=""
76
77 -DEPEND="dev-lang/perl"
78 -
79 src_install() {
80 - eval `perl '-V:installvendorlib'`
81 - dodir ${installvendorlib}/${PN}
82 - cp ${S}/*.pm ${D}/${installvendorlib}/${PN}
83 - cp ${PN}.pod ${D}/${installvendorlib}
84 - dodoc README COPYING.LIB
85 + perlinfo
86 + insinto ${VENDOR_LIB}/${PN}
87 + doins "${S}"/*.pm || die
88 + insinto ${VENDOR_LIB}
89 + doins "${S}"/*.pod || die
90 + dodoc README || die
91 }