Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf-archive: ChangeLog autoconf-archive-2009.12.16.ebuild
Date: Wed, 10 Feb 2010 08:35:30
Message-Id: E1Nf82d-0003Or-VH@stork.gentoo.org
1 pva 10/02/10 08:35:23
2
3 Modified: ChangeLog autoconf-archive-2009.12.16.ebuild
4 Log:
5 Don't install COPYING.
6 (Portage version: 2.1.7.17/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.26 sys-devel/autoconf-archive/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/ChangeLog?rev=1.26&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/ChangeLog?rev=1.26&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/ChangeLog?r1=1.25&r2=1.26
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/ChangeLog,v
18 retrieving revision 1.25
19 retrieving revision 1.26
20 diff -u -r1.25 -r1.26
21 --- ChangeLog 9 Feb 2010 07:46:18 -0000 1.25
22 +++ ChangeLog 10 Feb 2010 08:35:23 -0000 1.26
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-devel/autoconf-archive
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/ChangeLog,v 1.25 2010/02/09 07:46:18 pva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/ChangeLog,v 1.26 2010/02/10 08:35:23 pva Exp $
28 +
29 + 10 Feb 2010; Peter Volkov <pva@g.o>
30 + autoconf-archive-2009.12.16.ebuild:
31 + Don't install COPYING.
32
33 *autoconf-archive-2009.12.16 (09 Feb 2010)
34
35
36
37
38 1.2 sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild?r1=1.1&r2=1.2
43
44 Index: autoconf-archive-2009.12.16.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- autoconf-archive-2009.12.16.ebuild 9 Feb 2010 07:46:18 -0000 1.1
51 +++ autoconf-archive-2009.12.16.ebuild 10 Feb 2010 08:35:23 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild,v 1.1 2010/02/09 07:46:18 pva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2009.12.16.ebuild,v 1.2 2010/02/10 08:35:23 pva Exp $
57
58 EAPI="2"
59
60 @@ -8,14 +8,16 @@
61 HOMEPAGE="http://autoconf-archive.cryp.to/"
62 SRC_URI="mirror://nongnu/${PN}/${P}.tar.bz2"
63
64 -LICENSE="GPL-2"
65 +LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
68 IUSE=""
69
70 +src_prepare() {
71 + sed -e '/^dist_pkgdata_DATA/d' Makefile.* || die "failed to sed"
72 +}
73 +
74 src_install() {
75 emake DESTDIR="${D}" install || die
76 - # Put documentation into correct location
77 - dodir /usr/share/doc
78 - mv "${D}"/usr/share/{${PN},doc/${PF}} || die
79 + dodoc AUTHORS ChangeLog NEWS README TODO || die
80 }