Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/tmake: ChangeLog tmake-2.12.ebuild
Date: Tue, 06 Apr 2010 09:25:25
Message-Id: 20100406092520.BBADE2C04A@corvid.gentoo.org
1 abcd 10/04/06 09:25:20
2
3 Modified: ChangeLog tmake-2.12.ebuild
4 Log:
5 Bump to EAPI=3, add prefix keywords
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.26 dev-util/tmake/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/ChangeLog?rev=1.26&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/ChangeLog?rev=1.26&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/ChangeLog?r1=1.25&r2=1.26
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/tmake/ChangeLog,v
18 retrieving revision 1.25
19 retrieving revision 1.26
20 diff -u -r1.25 -r1.26
21 --- ChangeLog 8 Jan 2009 02:54:54 -0000 1.25
22 +++ ChangeLog 6 Apr 2010 09:25:20 -0000 1.26
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-util/tmake
25 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/ChangeLog,v 1.25 2009/01/08 02:54:54 darkside Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/ChangeLog,v 1.26 2010/04/06 09:25:20 abcd Exp $
29 +
30 + 06 Apr 2010; Jonathan Callen <abcd@g.o> tmake-2.12.ebuild:
31 + Bump to EAPI=3, add prefix keywords
32
33 08 Jan 2009; Jeremy Olexa <darkside@g.o> tmake-2.12.ebuild:
34 add ~amd64 kw and QA fixes. bug 253385
35
36
37
38 1.7 dev-util/tmake/tmake-2.12.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild?r1=1.6&r2=1.7
43
44 Index: tmake-2.12.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- tmake-2.12.ebuild 8 Jan 2009 02:54:54 -0000 1.6
51 +++ tmake-2.12.ebuild 6 Apr 2010 09:25:20 -0000 1.7
52 @@ -1,6 +1,8 @@
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/dev-util/tmake/tmake-2.12.ebuild,v 1.6 2009/01/08 02:54:54 darkside Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild,v 1.7 2010/04/06 09:25:20 abcd Exp $
58 +
59 +EAPI="3"
60
61 DESCRIPTION="A Cross platform Makefile tool"
62 SRC_URI="mirror://sourceforge/tmake/${P}.tar.bz2"
63 @@ -10,15 +12,16 @@
64
65 SLOT="0"
66 LICENSE="as-is"
67 -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86"
68 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86 ~x86-linux ~ppc-macos"
69 IUSE=""
70
71 src_install () {
72 dobin bin/tmake bin/progen
73 dodir /usr/lib/tmake
74 - cp -pPRf "${S}"/lib/* "${D}"/usr/lib/tmake
75 + cp -pPRf "${S}"/lib/* "${ED}"/usr/lib/tmake
76 dodoc README
77 dohtml -r doc/*
78 - dodir /etc/env.d
79 - echo "TMAKEPATH=/usr/lib/tmake/linux-g++" > ${D}/etc/env.d/51tmake
80 + echo "TMAKEPATH=\"${EPREFIX}/usr/lib/tmake/linux-g++\"" > "${T}"/51tmake
81 + doenvd "${T}"/51tmake
82 }
83 +