diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-05-22 12:19:57 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-05-22 12:19:57 +0000 |
commit | bab440b2bb91ab1a882b903866edee8d0a4f2b1e (patch) | |
tree | 6923696f6e4f89bdcebba6a15443d0418c74c794 /app-admin/openmosixtest | |
parent | Version bump. Including openmosixtest-0.1-4.1 which is mainly a bugfix release. (diff) | |
download | historical-bab440b2bb91ab1a882b903866edee8d0a4f2b1e.tar.gz historical-bab440b2bb91ab1a882b903866edee8d0a4f2b1e.tar.bz2 historical-bab440b2bb91ab1a882b903866edee8d0a4f2b1e.zip |
Version bump. Including openmosixtest-0.1-4.1 which is mainly a bugfix release.
Diffstat (limited to 'app-admin/openmosixtest')
-rw-r--r-- | app-admin/openmosixtest/Manifest | 4 | ||||
-rw-r--r-- | app-admin/openmosixtest/files/digest-openmosixtest-0.1-r5 | 1 | ||||
-rw-r--r-- | app-admin/openmosixtest/openmosixtest-0.1-r5.ebuild | 49 |
3 files changed, 52 insertions, 2 deletions
diff --git a/app-admin/openmosixtest/Manifest b/app-admin/openmosixtest/Manifest index 37f130a74e5c..27f9f3f3cbaf 100644 --- a/app-admin/openmosixtest/Manifest +++ b/app-admin/openmosixtest/Manifest @@ -1,5 +1,5 @@ MD5 5ec51c15bdf166acfa80c88fcd2b5d31 openmosixtest-0.1-r4.ebuild 1253 -MD5 425f99eb4299ebfaca12adbc2064bbaf openmosixtest-0.1-r5.ebuild 1317 -MD5 04e1f3e386a7f024e38fbc785105746b ChangeLog 870 +MD5 b64cc8485c6664b8078d5441ca3da467 openmosixtest-0.1-r5.ebuild 1317 +MD5 919a86f78596cb7b23ef6df987b9d428 ChangeLog 1047 MD5 281a4a11c41b2929034eef57346c56e0 files/digest-openmosixtest-0.1-r4 65 MD5 1ac2bf88d854c88f0376c95bd11d8210 files/digest-openmosixtest-0.1-r5 67 diff --git a/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r5 b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r5 new file mode 100644 index 000000000000..6cf50bb7e03c --- /dev/null +++ b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r5 @@ -0,0 +1 @@ +MD5 a5ab5a7acf078c9868da5a3d7796a8a8 omtest-0.1-4.1.tar.gz 2479977 diff --git a/app-admin/openmosixtest/openmosixtest-0.1-r5.ebuild b/app-admin/openmosixtest/openmosixtest-0.1-r5.ebuild new file mode 100644 index 000000000000..b14272fb6bb8 --- /dev/null +++ b/app-admin/openmosixtest/openmosixtest-0.1-r5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/openmosixtest/openmosixtest-0.1-r5.ebuild,v 1.1 2003/05/22 12:19:33 tantive Exp $ + +S=${WORKDIR}/omtest +DESCRIPTION="openMosix stress test" +SRC_URI="www.openmosixview.com/omtest/omtest-${PV}-4.1.tar.gz" +#SRC_URI="www.openmosixview.com/omtest/omtest-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`.tar.gz" +HOMEPAGE="http://www.openmosixview.com/omtest/" +IUSE="" + +DEPEND=">=dev-libs/openssl-0.6.9g + >=dev-lang/perl-5.6.1 + >=sys-cluster/openmosix-user-0.2.4 + >=sys-kernel/openmosix-sources-2.4.18" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 -ppc -sparc -alpha" + + +src_unpack() { + unpack ${A} + cd ${S} + + #Make compile_tests.sh non-interactive + mv compile_tests.sh compile_tests.sh.orig + sed -e 's:read::' compile_tests.sh.orig >compile_tests.sh + rm compile_tests.sh.orig + chmod +x compile_tests.sh +} + +src_install() { + dodir /opt/omtest + cp -r * ${WORKDIR}/../image/opt/omtest +} + +pkg_postinst() { + cd /opt/omtest + einfo + einfo "The openMosix stress test installation will be completed right now." + einfo + ./compile_tests.sh + + einfo + einfo "openMosix stress test is now installed in /opt/omtest" + einfo "You can run it by executing start_openMosix_test.sh" + einfo +} |