Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/adesklets: ChangeLog adesklets-0.6.1-r1.ebuild
Date: Thu, 27 May 2010 06:51:49
Message-Id: 20100527065144.D75872CF38@corvid.gentoo.org
1 tove 10/05/27 06:51:44
2
3 Modified: ChangeLog adesklets-0.6.1-r1.ebuild
4 Log:
5 Install perl modules to vendor-dir. Remove .packlist file (#297507)
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.41 x11-misc/adesklets/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/ChangeLog?rev=1.41&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/ChangeLog?rev=1.41&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/ChangeLog?r1=1.40&r2=1.41
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/adesklets/ChangeLog,v
18 retrieving revision 1.40
19 retrieving revision 1.41
20 diff -u -r1.40 -r1.41
21 --- ChangeLog 11 Oct 2008 23:11:45 -0000 1.40
22 +++ ChangeLog 27 May 2010 06:51:44 -0000 1.41
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-misc/adesklets
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/adesklets/ChangeLog,v 1.40 2008/10/11 23:11:45 flameeyes Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/adesklets/ChangeLog,v 1.41 2010/05/27 06:51:44 tove Exp $
29 +
30 + 27 May 2010; Torsten Veller <tove@g.o> adesklets-0.6.1-r1.ebuild:
31 + Install perl modules to vendor-dir. Remove .packlist file (#297507)
32
33 11 Oct 2008; Diego Pettenò <flameeyes@g.o>
34 adesklets-0.6.1-r1.ebuild:
35
36
37
38 1.12 x11-misc/adesklets/adesklets-0.6.1-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild?rev=1.12&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild?rev=1.12&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild?r1=1.11&r2=1.12
43
44 Index: adesklets-0.6.1-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild,v
47 retrieving revision 1.11
48 retrieving revision 1.12
49 diff -u -r1.11 -r1.12
50 --- adesklets-0.6.1-r1.ebuild 5 May 2009 18:26:48 -0000 1.11
51 +++ adesklets-0.6.1-r1.ebuild 27 May 2010 06:51:44 -0000 1.12
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2009 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/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild,v 1.11 2009/05/05 18:26:48 ssuominen Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/adesklets/adesklets-0.6.1-r1.ebuild,v 1.12 2010/05/27 06:51:44 tove Exp $
58
59 inherit eutils perl-module autotools
60
61 @@ -82,7 +82,7 @@
62
63 dodir usr/share/info
64 dodir usr/share/man/man1
65 - make DESTDIR="${D}" install || die
66 + make DESTDIR="${D}" INSTALLDIRS=vendor install || die
67 doinfo doc/*.info || die "info page installation failed"
68 doman doc/*.1 || die "man page installation failed"
69 dodoc ChangeLog NEWS TODO AUTHORS
70 @@ -93,7 +93,10 @@
71 }
72
73 # Fix for bug #142169
74 - use perl && fixlocalpod
75 + if use perl ; then
76 + perl_delete_localpod
77 + perl_delete_packlist
78 + fi
79 }
80
81 pkg_postinst()