Skip to content

Commit

Permalink
phoronix-test-suite 3.8.0
Browse files Browse the repository at this point in the history
Upgrade phoronix-test-suite to version 3.8.0.
Change patch to support the changes within `install.sh`
* Put metafiles in prefix
* Add `.bash` to the bash-completion script name
* Change the XDG MIME Openbenchmarking conditional from `DESTDIR`
to `INSTALL_PREFIX` so that all the files it uses get copied into
the Cellar, because Macs don't run `xdg-utils`.  This makes that
conditional behave as if Phoronix is being installed into a chroot.
* Remove the `-e` from echo so that it doesn't get echoed.

Closes Homebrew#11847.

Signed-off-by: Jack Nagel <[email protected]>
  • Loading branch information
nibbles 2bits authored and jacknagel committed Apr 25, 2012
1 parent 76a9b08 commit 8bf8075
Showing 1 changed file with 43 additions and 16 deletions.
59 changes: 43 additions & 16 deletions Library/Formula/phoronix-test-suite.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,67 @@

class PhoronixTestSuite < Formula
homepage 'http://www.phoronix-test-suite.com/'
url "http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-2.8.1"
md5 "623d0ea01963df438f738ec50e90afc6"
url 'http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-3.8.0'
md5 '3048aae07c43602008492682c4d29795'

def patches; DATA; end

def install
system "./install-sh #{prefix}"
system "./install-sh", prefix
end
end


__END__
diff --git a/install-sh b/install-sh
index 596dfae..c83ebe2 100755
--- a/install-sh
+++ b/install-sh
@@ -53,7 +53,7 @@ mkdir -p $DESTDIR$INSTALL_PREFIX/share/icons/
--- a/install-sh 2012-01-04 08:43:26.000000000 -0800
+++ b/install-sh 2012-04-23 20:34:21.000000000 -0700
@@ -55,11 +55,11 @@
mkdir -p $DESTDIR$INSTALL_PREFIX/share/man/man1/
mkdir -p $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/
mkdir -p $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
-mkdir -p $DESTDIR$INSTALL_PREFIX/../etc/bash_completion.d/
+mkdir -p $DESTDIR$INSTALL_PREFIX/etc/bash_completion.d/

cp CHANGE-LOG $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
cp COPYING $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
@@ -69,9 +69,9 @@ cp pts-core/static/bash_completion $DESTDIR$INSTALL_PREFIX/../etc/bash_completio
cp pts-core/static/images/phoronix-test-suite.png $DESTDIR$INSTALL_PREFIX/share/icons/phoronix-test-suite.png
-cp CHANGE-LOG $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
-cp COPYING $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
-cp AUTHORS $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
+cp CHANGE-LOG $DESTDIR$INSTALL_PREFIX/CHANGELOG
+cp COPYING $DESTDIR$INSTALL_PREFIX/
+cp AUTHORS $DESTDIR$INSTALL_PREFIX/

cd documentation/
cp -r * $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/
@@ -67,13 +67,13 @@
rm -rf $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/man-pages/

cp documentation/man-pages/*.1 $DESTDIR$INSTALL_PREFIX/share/man/man1/
-cp pts-core/static/bash_completion $DESTDIR$INSTALL_PREFIX/../etc/bash_completion.d/phoronix-test-suite
+cp pts-core/static/bash_completion $DESTDIR$INSTALL_PREFIX/etc/bash_completion.d/phoronix-test-suite.bash
cp pts-core/static/images/phoronix-test-suite.png $DESTDIR$INSTALL_PREFIX/share/icons/hicolor/48x48/apps/phoronix-test-suite.png
cp pts-core/static/phoronix-test-suite.desktop $DESTDIR$INSTALL_PREFIX/share/applications/
cp pts-core/static/phoronix-test-suite-launcher.desktop $DESTDIR$INSTALL_PREFIX/share/applications/

-cp -r pts/ $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/
+cp -r pts $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite
rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts/etc/scripts/package-build-*
-cp -r pts-core/ $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/
+cp -r pts-core $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite
rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/static/phoronix-test-suite.desktop
rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/static/phoronix-test-suite-launcher.desktop
rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/openbenchmarking.org/openbenchmarking-mime.xml
@@ -88,7 +88,7 @@
# sed 's:\$url = PTS_PATH . \"documentation\/index.html\";:\$url = \"'"$INSTALL_PREFIX"'\/share\/doc\/packages\/phoronix-test-suite\/index.html\";:g' pts-core/commands/gui_gtk.php > $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/commands/gui_gtk.php

# XDG MIME OpenBenchmarking support
-if [ "X$DESTDIR" = "X" ]
+if [ "X$INSTALL_PREFIX" = "X" ]
then
#No chroot
xdg-mime install pts-core/openbenchmarking.org/openbenchmarking-mime.xml
@@ -102,7 +102,7 @@

fi

sed 's:PTS_DIR=`pwd`:PTS_DIR='"$INSTALL_PREFIX"'\/share\/phoronix-test-suite:g' phoronix-test-suite > $DESTDIR$INSTALL_PREFIX/bin/phoronix-test-suite
chmod +x $DESTDIR$INSTALL_PREFIX/bin/phoronix-test-suite
-echo -e "\nPhoronix Test Suite Installation Completed\n
+echo "\nPhoronix Test Suite Installation Completed\n
Executable File: $INSTALL_PREFIX/bin/phoronix-test-suite
Documentation: $INSTALL_PREFIX/share/doc/phoronix-test-suite/
Phoronix Test Suite Files: $INSTALL_PREFIX/share/phoronix-test-suite/\n"

0 comments on commit 8bf8075

Please sign in to comment.