Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/phoronix-test-suite: ChangeLog phoronix-test-suite-2.4.1.ebuild
Date: Sat, 27 Feb 2010 00:33:49
Message-Id: E1NlAcr-0000qo-JG@stork.gentoo.org
1 patrick 10/02/27 00:33:45
2
3 Modified: ChangeLog
4 Added: phoronix-test-suite-2.4.1.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 app-benchmarks/phoronix-test-suite/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 23 Nov 2009 12:49:32 -0000 1.4
23 +++ ChangeLog 27 Feb 2010 00:33:45 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-benchmarks/phoronix-test-suite
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v 1.4 2009/11/23 12:49:32 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v 1.5 2010/02/27 00:33:45 patrick Exp $
30 +
31 +*phoronix-test-suite-2.4.1 (27 Feb 2010)
32 +
33 + 27 Feb 2010; Patrick Lauer <patrick@g.o>
34 + +phoronix-test-suite-2.4.1.ebuild:
35 + Bump
36
37 *phoronix-test-suite-2.2.0 (23 Nov 2009)
38
39
40
41
42 1.1 app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: phoronix-test-suite-2.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild,v 1.1 2010/02/27 00:33:45 patrick Exp $
52
53 EAPI=2
54
55 DESCRIPTION="Phoronix's comprehensive, cross-platform testing and benchmark suite"
56 HOMEPAGE="http://www.phoronix-test-suite.com"
57 SRC_URI="http://www.phoronix-test-suite.com/download.php?file=${P} -> ${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="gd gtk"
63
64 DEPEND=""
65 RDEPEND="dev-lang/php:5[cli,gd?]
66 gtk? ( dev-php5/php-gtk )"
67
68 S="${WORKDIR}/${PN}"
69
70 src_prepare() {
71 sed -i -e "s,export PTS_DIR=\`pwd\`,export PTS_DIR=\"/usr/share/${PN}\"," \
72 phoronix-test-suite
73 }
74
75 src_configure() {
76 :
77 }
78
79 src_compile() {
80 :
81 }
82
83 src_install() {
84 dodir /usr/share/${PN}
85 insinto /usr/share/${PN}
86 doins -r {pts,pts-core}
87
88 doman documentation/man-pages/phoronix-test-suite.1
89 dodoc AUTHORS CHANGE-LOG
90 dohtml README.html
91
92 exeinto /usr/bin
93 doexe phoronix-test-suite
94
95 fperms a+x /usr/share/${PN}/pts-core/scripts/launch-browser.sh
96 fperms a+x /usr/share/${PN}/pts-core/test-libraries/*.sh
97 fperms a+x /usr/share/${PN}/pts/distro-scripts/install-gentoo-packages.sh
98 }