diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-02-27 00:33:45 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-02-27 00:33:45 +0000 |
commit | 08499d6df0a33ff6f6a1d9bd66b5063bbe5a0662 (patch) | |
tree | d1a04fcc76da483d840e06a608347b2e26ff27f8 /app-benchmarks | |
parent | Bump (diff) | |
download | gentoo-2-08499d6df0a33ff6f6a1d9bd66b5063bbe5a0662.tar.gz gentoo-2-08499d6df0a33ff6f6a1d9bd66b5063bbe5a0662.tar.bz2 gentoo-2-08499d6df0a33ff6f6a1d9bd66b5063bbe5a0662.zip |
Bump
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/phoronix-test-suite/ChangeLog | 10 | ||||
-rw-r--r-- | app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild | 50 |
2 files changed, 58 insertions, 2 deletions
diff --git a/app-benchmarks/phoronix-test-suite/ChangeLog b/app-benchmarks/phoronix-test-suite/ChangeLog index d4c4b69e9496..fe3824405096 100644 --- a/app-benchmarks/phoronix-test-suite/ChangeLog +++ b/app-benchmarks/phoronix-test-suite/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-benchmarks/phoronix-test-suite -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v 1.4 2009/11/23 12:49:32 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v 1.5 2010/02/27 00:33:45 patrick Exp $ + +*phoronix-test-suite-2.4.1 (27 Feb 2010) + + 27 Feb 2010; Patrick Lauer <patrick@gentoo.org> + +phoronix-test-suite-2.4.1.ebuild: + Bump *phoronix-test-suite-2.2.0 (23 Nov 2009) diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild new file mode 100644 index 000000000000..c4465be72f32 --- /dev/null +++ b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.4.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $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 $ + +EAPI=2 + +DESCRIPTION="Phoronix's comprehensive, cross-platform testing and benchmark suite" +HOMEPAGE="http://www.phoronix-test-suite.com" +SRC_URI="http://www.phoronix-test-suite.com/download.php?file=${P} -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gd gtk" + +DEPEND="" +RDEPEND="dev-lang/php:5[cli,gd?] + gtk? ( dev-php5/php-gtk )" + +S="${WORKDIR}/${PN}" + +src_prepare() { + sed -i -e "s,export PTS_DIR=\`pwd\`,export PTS_DIR=\"/usr/share/${PN}\"," \ + phoronix-test-suite +} + +src_configure() { + : +} + +src_compile() { + : +} + +src_install() { + dodir /usr/share/${PN} + insinto /usr/share/${PN} + doins -r {pts,pts-core} + + doman documentation/man-pages/phoronix-test-suite.1 + dodoc AUTHORS CHANGE-LOG + dohtml README.html + + exeinto /usr/bin + doexe phoronix-test-suite + + fperms a+x /usr/share/${PN}/pts-core/scripts/launch-browser.sh + fperms a+x /usr/share/${PN}/pts-core/test-libraries/*.sh + fperms a+x /usr/share/${PN}/pts/distro-scripts/install-gentoo-packages.sh +} |