Summary
Description: Unnamed repository; edit this file to name it for gitweb.
Last Change: Wed 2/3/10 13:04
Recent Commits
>
--git a/pts/benchmark-profiles/build-imagemagick.xml b/pts/benchmark-profiles/build-imagemagick.xml
index 4a6389c..abd777a 100644
--- a/pts/benchmark-profiles/build-imagemagick.xml
+++ b/pts/benchmark-profiles/build-imagemagick.xml
@@ -1,6 +1,6 @@
<PTSBenchmark>
<PhoronixTestSuite>
- <Version>0.1</Version>
+ <Version>0.2</Version>
<BenchmarkType>Processor</BenchmarkType>
<ApplicationType>Utility</ApplicationType>
<License>FREE</License>
diff --git a/pts/benchmark-profiles/build-php.xml b/pts/benchmark-profiles/build-php.xml
index e9eeea8..0521b81 100644
--- a/pts/benchmark-profiles/build-php.xml
+++ b/pts/benchmark-profiles/build-php.xml
@@ -1,6 +1,6 @@
<PTSBenchmark>
<PhoronixTestSuite>
- <Version>0.1</Version>
+ <Version>0.2</Version>
<BenchmarkType>Processor</BenchmarkType>
<ApplicationType>Utility</ApplicationType>
<License>FREE</License>
diff --git a/pts/benchmark-profiles/encode-flac.xml b/pts/benchmark-profiles/encode-flac.xml
index 65a1d1d..c1021c7 100644
--- a/pts/benchmark-profiles/encode-flac.xml
+++ b/pts/benchmark-profiles/encode-flac.xml
@@ -1,6 +1,6 @@
<PTSBenchmark>
<PhoronixTestSuite>
- <Version>0.2</Version>
+ <Version>0.3</Version>
<BenchmarkType>Processor</BenchmarkType>
<ApplicationType>Utility</ApplicationType>
<License>FREE</License>
diff --git a/pts/benchmark-profiles/encode-mp3.xml b/pts/benchmark-profiles/encode-mp3.xml
index 10c65f5..a9995ba 100644
--- a/pts/benchmark-profiles/encode-mp3.xml
+++ b/pts/benchmark-profiles/encode-mp3.xml
@@ -1,6 +1,6 @@
<PTSBenchmark>
<PhoronixTestSuite>
- <Version>0.2</Version>
+ <Version>0.3</Version>
<BenchmarkType>Processor</BenchmarkType>
<ApplicationType>Utility</ApplicationType>
<License>FREE</License>
diff --git a/pts/benchmark-profiles/encode-ogg.xml b/pts/benchmark-profiles/encode-ogg.xml
index 086bc35..ea2fcaa 100644
--- a/pts/benchmark-profiles/encode-ogg.xml
+++ b/pts/benchmark-profiles/encode-ogg.xml
@@ -1,6 +1,6 @@
<PTSBenchmark>
<PhoronixTestSuite>
- <Version>0.2</Version>
+ <Version>0.3</Version>
<BenchmarkType>Processor</BenchmarkType>
<ApplicationType>Utility</ApplicationType>
<License>FREE</License>
diff --git a/pts/benchmark-resources/build-imagemagick/post.sh b/pts/benchmark-resources/build-imagemagick/post.sh
index bcf885b..2616f06 100644
--- a/pts/benchmark-resources/build-imagemagick/post.sh
+++ b/pts/benchmark-resources/build-imagemagick/post.sh
@@ -1,4 +1,5 @@
#!/bin/sh
cd $1
-rm -rf php-5.2.5/
+rm -rf ImageMagick-6.4.0/
+
diff --git a/pts/benchmark-resources/build-php/install.sh b/pts/benchmark-resources/build-php/install.sh
index 25a35c0..95aa8e4 100644
--- a/pts/benchmark-resources/build-php/install.sh
+++ b/pts/benchmark-resources/build-php/install.sh
@@ -22,7 +22,7 @@ cd libxml2-2.6.31/
make -j $NUM_CPU_JOBS
make install
cd ..
-
+rm -rf libxml2-2.6.31/
echo "#!/bin/sh
diff --git a/pts/benchmark-resources/encode-flac/install.sh b/pts/benchmark-resources/encode-flac/install.sh
index 64c2a6d..5419f20 100644
--- a/pts/benchmark-resources/encode-flac/install.sh
+++ b/pts/benchmark-resources/encode-flac/install.sh
@@ -14,13 +14,18 @@ if [ ! -f ../pts-shared/pts-wav-sample-file.wav ]
rm -f ../pts-shared/pts-wav-sample-file.tar.bz2
fi
+THIS_DIR=$(pwd)
+mkdir $THIS_DIR/flac
+
tar -xvf flac.tar.gz
cd flac-1.2.1/
-./configure
+./configure --prefix=$THIS_DIR/flac
make -j $NUM_CPU_JOBS
+make install
cd ..
+rm -rf flac-1.2.1/
echo "#!/bin/sh
-/usr/bin/time -f "WAV To FLAC Encode Time: %e Seconds\" ./flac-1.2.1/src/flac/flac -s --best ../pts-shared/pts-wav-sample-file.wav 2>&1
+/usr/bin/time -f \"WAV To FLAC Encode Time: %e Seconds\" ./flac/bin/flac -s --best ../pts-shared/pts-wav-sample-file.wav 2>&1
rm -f ../pts-shared/pts-wav-sample-file.flac" > flac
chmod +x flac
diff --git a/pts/benchmark-resources/encode-mp3/install.sh b/pts/benchmark-resources/encode-mp3/install.sh
index bd073e2..4f11a60 100644
--- a/pts/benchmark-resources/encode-mp3/install.sh
+++ b/pts/benchmark-resources/encode-mp3/install.sh
@@ -14,14 +14,19 @@ if [ ! -f ../pts-shared/pts-wav-sample-file.wav ]
rm -f ../pts-shared/pts-wav-sample-file.tar.bz2
fi
+THIS_DIR=$(pwd)
+mkdir $THIS_DIR/lame
+
tar -xvf lame.tar.gz
cd lame-3.97/
-./configure
+./configure --prefix=$THIS_DIR/lame
make -j $NUM_CPU_JOBS
+make install
cd ..
+rm -rf lame-3.97/
echo "#!/bin/sh
rm -f audio.mp3
-/usr/bin/time -f \"WAV To MP3 Encode Time: %e Seconds\" ./lame-3.97/frontend/lame --silent -h ../pts-shared/pts-wav-sample-file.wav audio.mp3 2>&1" > lame
+/usr/bin/time -f "WAV To MP3 Encode Time: %e Seconds\" ./lame/bin/lame --silent -h ../pts-shared/pts-wav-sample-file.wav audio.mp3 2>&1" > lame
chmod +x lame
diff --git a/pts/benchmark-resources/encode-ogg/install.sh b/pts/benchmark-resources/encode-ogg/install.sh
index 8906c9c..0bb7b39 100644
--- a/pts/benchmark-resources/encode-ogg/install.sh
+++ b/pts/benchmark-resources/encode-ogg/install.sh
@@ -36,18 +36,21 @@ cd libogg-1.1.3/
make -j $NUM_CPU_JOBS
make install
cd ..
+rm -rf libogg-1.1.3/
cd libvorbis-1.2.0/
./configure --prefix=$THIS_DIR/vorbis
make -j $NUM_CPU_JOBS
make install
cd ..
+rm -rf libvorbis-1.2.0/
cd vorbis-tools-1.2.0/
./configure --prefix=$THIS_DIR/vorbis
make -j $NUM_CPU_JOBS
make install
cd ..
+rm -rf vorbis-tools-1.2.0/
echo "#!/bin/sh
/usr/bin/time -f \"WAV To OGG Encode Time: %e Seconds\" ./vorbis/bin/oggenc --quiet ../pts-shared/pts-wav-sample-file.wav -q 10 -o audio.ogg 2>&1" >
Copyright © 2010 by Phoronix Media