diff options
author | 2005-05-16 17:56:56 +0000 | |
---|---|---|
committer | 2005-05-16 17:56:56 +0000 | |
commit | 682c426d910cc673d8f421b1db7aa9acb6023a54 (patch) | |
tree | edb48e1fc693df57b02dd6b5dfe4ebd2126c52fa /app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild | |
parent | moved to app-mobilephone/bemused (diff) | |
download | historical-682c426d910cc673d8f421b1db7aa9acb6023a54.tar.gz historical-682c426d910cc673d8f421b1db7aa9acb6023a54.tar.bz2 historical-682c426d910cc673d8f421b1db7aa9acb6023a54.zip |
Marked 0.3.3-r2 stable on all arches that 0.3.3-r1 is stable on. Only change is a patch that adjusts the ouput format.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild')
-rw-r--r-- | app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild b/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild index 965efad05ca8..4e6dfd6a991a 100644 --- a/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild +++ b/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild,v 1.1 2005/03/22 12:51:46 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/tiobench/tiobench-0.3.3-r2.ebuild,v 1.2 2005/05/16 17:56:56 swegener Exp $ -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="Portable, robust, fully-threaded I/O benchmark program" HOMEPAGE="http://tiobench.sourceforge.net/" @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64 ~ppc ~ppc64" +KEYWORDS="x86 amd64 ppc ppc64" IUSE="" RDEPEND="virtual/libc @@ -19,21 +19,17 @@ DEPEND=">=sys-apps/sed-4" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" - epatch ${FILESDIR}/0.3.3-column-description-fix.patch + epatch "${FILESDIR}"/0.3.3-column-description-fix.patch sed -i \ -e 's:/usr/local/bin:/usr/sbin:' tiobench.pl \ || die "sed tiobench.pl failed" - sed -i \ - -e '/DLARGEFILES/ s/^#//' \ - -e "/^CFLAGS/ s:=.*:= ${CFLAGS}:" Makefile \ - || die "sed Makefile failed" } src_compile() { - emake || die "emake failed" + emake CC="$(tc-getCC)" DEFINES="-DLARGEFILES" CFLAGS="${CFLAGS}" || die "emake failed" } src_install() { |