diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2009-04-19 17:41:13 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2009-04-19 17:41:13 +0000 |
commit | f79bc296452f3c2ec10461437562a817fb93b2a2 (patch) | |
tree | 92f8b426c9c37b11f74053d6f06f85ebaefe780c /app-benchmarks | |
parent | version bump; fixes #261509 (diff) | |
download | gentoo-2-f79bc296452f3c2ec10461437562a817fb93b2a2.tar.gz gentoo-2-f79bc296452f3c2ec10461437562a817fb93b2a2.tar.bz2 gentoo-2-f79bc296452f3c2ec10461437562a817fb93b2a2.zip |
add developmental ebuild
(Portage version: 2.1.6.11/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/metadata.xml | 10 | ||||
-rw-r--r-- | app-benchmarks/phoronix-test-suite/phoronix-test-suite-1.8.0.ebuild | 50 |
3 files changed, 70 insertions, 0 deletions
diff --git a/app-benchmarks/phoronix-test-suite/ChangeLog b/app-benchmarks/phoronix-test-suite/ChangeLog new file mode 100644 index 000000000000..5de011035021 --- /dev/null +++ b/app-benchmarks/phoronix-test-suite/ChangeLog @@ -0,0 +1,10 @@ +# 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.1 2009/04/19 17:41:13 cardoe Exp $ + +*phoronix-test-suite-1.8.0 (19 Apr 2009) + + 19 Apr 2009; Doug Goldstein <cardoe@gentoo.org> + +phoronix-test-suite-1.8.0.ebuild: + add developmental ebuild + diff --git a/app-benchmarks/phoronix-test-suite/metadata.xml b/app-benchmarks/phoronix-test-suite/metadata.xml new file mode 100644 index 000000000000..36a6808dbd79 --- /dev/null +++ b/app-benchmarks/phoronix-test-suite/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>cardoe@gentoo.org</email> + <name>Doug Goldstein</name> + </maintainer> +</pkgmetadata> + diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-1.8.0.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-1.8.0.ebuild new file mode 100644 index 000000000000..43f59ff1b84b --- /dev/null +++ b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-1.8.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-1.8.0.ebuild,v 1.1 2009/04/19 17:41:13 cardoe 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" +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 +} |