diff options
author | Michael Imhof <tantive@gentoo.org> | 2002-12-02 22:34:55 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2002-12-02 22:34:55 +0000 |
commit | 6101a0fdea505bac2391005d096900835b435a63 (patch) | |
tree | 084411f3ae033caacffb7a2add6a9e4b3787fc88 /app-admin/openmosixtest | |
parent | new version, added the testing flag (diff) | |
download | historical-6101a0fdea505bac2391005d096900835b435a63.tar.gz historical-6101a0fdea505bac2391005d096900835b435a63.tar.bz2 historical-6101a0fdea505bac2391005d096900835b435a63.zip |
Version bumped
Diffstat (limited to 'app-admin/openmosixtest')
-rw-r--r-- | app-admin/openmosixtest/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/openmosixtest/files/digest-openmosixtest-0.1-r4 | 1 | ||||
-rw-r--r-- | app-admin/openmosixtest/openmosixtest-0.1-r4.ebuild | 48 |
3 files changed, 55 insertions, 1 deletions
diff --git a/app-admin/openmosixtest/ChangeLog b/app-admin/openmosixtest/ChangeLog index 61b1dd073a2f..eab64695b742 100644 --- a/app-admin/openmosixtest/ChangeLog +++ b/app-admin/openmosixtest/ChangeLog @@ -1,6 +1,11 @@ # 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.3 2002/11/07 16:01:52 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/openmosixtest/ChangeLog,v 1.4 2002/12/02 22:34:55 tantive Exp $ + +*openmosixtest-0.1-r4 (02 Dec 2002) + + 02 Dec 2002; Michael Imhof <tantive@gentoo.org>: + Version bumped. *openmosixtest-0.1-r3 (07 Nov 2002) diff --git a/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r4 b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r4 new file mode 100644 index 000000000000..f7c4e0aeb152 --- /dev/null +++ b/app-admin/openmosixtest/files/digest-openmosixtest-0.1-r4 @@ -0,0 +1 @@ +MD5 876e3796f2b9caaaae075b72ba96e772 omtest-0.1-4.tar.gz 2479960 diff --git a/app-admin/openmosixtest/openmosixtest-0.1-r4.ebuild b/app-admin/openmosixtest/openmosixtest-0.1-r4.ebuild new file mode 100644 index 000000000000..36e63a40ab39 --- /dev/null +++ b/app-admin/openmosixtest/openmosixtest-0.1-r4.ebuild @@ -0,0 +1,48 @@ +# 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-r4.ebuild,v 1.1 2002/12/02 22:34:55 tantive Exp $ + +S=${WORKDIR}/omtest +DESCRIPTION="openMosix stress test" +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 + >=sys-devel/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 -sparc64 -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 +} |