diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-08-17 14:42:07 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-08-17 14:42:07 +0000 |
commit | c76734e6ffab97a20a3ccd33bd76d275b2cdc7f1 (patch) | |
tree | 5f7a38dda124ac1feae5f84d9854b0ad9e6c5fa7 /app-benchmarks | |
parent | version bump (diff) | |
download | gentoo-2-c76734e6ffab97a20a3ccd33bd76d275b2cdc7f1.tar.gz gentoo-2-c76734e6ffab97a20a3ccd33bd76d275b2cdc7f1.tar.bz2 gentoo-2-c76734e6ffab97a20a3ccd33bd76d275b2cdc7f1.zip |
Bump to 2.0.0, fixes #279300
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/phoronix-test-suite/ChangeLog | 8 | ||||
-rw-r--r-- | app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.0.0.ebuild | 50 |
2 files changed, 57 insertions, 1 deletions
diff --git a/app-benchmarks/phoronix-test-suite/ChangeLog b/app-benchmarks/phoronix-test-suite/ChangeLog index 259f68bec7fe..35a8449a58f9 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.2 2009/04/23 14:06:42 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/ChangeLog,v 1.3 2009/08/17 14:42:07 patrick Exp $ + +*phoronix-test-suite-2.0.0 (17 Aug 2009) + + 17 Aug 2009; Patrick Lauer <patrick@gentoo.org> + +phoronix-test-suite-2.0.0.ebuild: + Bump to 2.0.0, fixes #279300 23 Apr 2009; Patrick Lauer <patrick@gentoo.org> metadata.xml, phoronix-test-suite-1.8.0: diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.0.0.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.0.0.ebuild new file mode 100644 index 000000000000..bf14ae5750a9 --- /dev/null +++ b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.0.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 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.0.0.ebuild,v 1.1 2009/08/17 14:42:07 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 +} |