diff options
author | Michael Imhof <tantive@gentoo.org> | 2002-10-02 18:48:18 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2002-10-02 18:48:18 +0000 |
commit | 4606d07ccd319702f51359357d0e8abc160b5648 (patch) | |
tree | 8a16e78a28bd9c44e7bab9fa694ab4c75e0103ca /app-admin/openmosixtest | |
parent | Masked openmosixtest-0.1-r1 (diff) | |
download | historical-4606d07ccd319702f51359357d0e8abc160b5648.tar.gz historical-4606d07ccd319702f51359357d0e8abc160b5648.tar.bz2 historical-4606d07ccd319702f51359357d0e8abc160b5648.zip |
openMosix stress test. Initial release.
Diffstat (limited to 'app-admin/openmosixtest')
-rw-r--r-- | app-admin/openmosixtest/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/openmosixtest/files/digest-openmosixtest-0.1-r1 | 1 | ||||
-rw-r--r-- | app-admin/openmosixtest/openmosixtest-0.1-r1.ebuild | 43 |
3 files changed, 52 insertions, 0 deletions
diff --git a/app-admin/openmosixtest/ChangeLog b/app-admin/openmosixtest/ChangeLog new file mode 100644 index 000000000000..e9610a4d41d4 --- /dev/null +++ b/app-admin/openmosixtest/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-admin/openmosixview +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/openmosixtest/ChangeLog,v 1.1 2002/10/02 18:48:18 tantive Exp $ + +*openmosixtest-0.1-r1 (02 Oct 2002) + + 02 Oct 2002; Michael Imhof <tantive@gentoo.org>: + Initial release.
\ No newline at end of file diff --git a/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r1 b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r1 new file mode 100644 index 000000000000..eb6bb8b61f68 --- /dev/null +++ b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r1 @@ -0,0 +1 @@ +MD5 30d91afd0f0b5d46386e0f7ab1f9bbbb omtest-0.1-1.tar.gz 1290064 diff --git a/app-admin/openmosixtest/openmosixtest-0.1-r1.ebuild b/app-admin/openmosixtest/openmosixtest-0.1-r1.ebuild new file mode 100644 index 000000000000..5c1794651ca4 --- /dev/null +++ b/app-admin/openmosixtest/openmosixtest-0.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2002 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-r1.ebuild,v 1.1 2002/10/02 18:48:18 tantive Exp $ + + +S=${WORKDIR}/omtest +DESCRIPTION="openMosix stress test" +SRC_URI="www.openmosixview.com/omtest/omtest-${PV}-"`echo ${PR}|sed -e 's:r\+:\1:'`".tar.gz" +HOMEPAGE="http://www.openmosixview.com/omtest/" + +DEPEND=">=dev-libs/openssl-0.6.9g + >=sys-devel/perl-5.6.1 + >=sys-apps/openmosix-user-0.2.4 + >=sys-kernel/openmosix-sources-2.4.18" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 -ppc -sparc -sparc64 -alpha" + + +src_unpack() { + unpack ${A} +} + + +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 +} |