diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-04-12 17:34:35 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-04-12 17:34:35 +0000 |
commit | 785188a8a6969e608f21d804b10407a6d2ede051 (patch) | |
tree | 7c2285d434c63164068c8edb3f4d78411e918c01 /sys-cluster/openmosix-user | |
parent | Added support for USE="nptl" (diff) | |
download | gentoo-2-785188a8a6969e608f21d804b10407a6d2ede051.tar.gz gentoo-2-785188a8a6969e608f21d804b10407a6d2ede051.tar.bz2 gentoo-2-785188a8a6969e608f21d804b10407a6d2ede051.zip |
Version bumped. Cleaned up the ebuild.
Diffstat (limited to 'sys-cluster/openmosix-user')
-rw-r--r-- | sys-cluster/openmosix-user/ChangeLog | 8 | ||||
-rw-r--r-- | sys-cluster/openmosix-user/files/digest-openmosix-user-0.3 | 1 | ||||
-rw-r--r-- | sys-cluster/openmosix-user/openmosix-user-0.3.ebuild | 90 |
3 files changed, 97 insertions, 2 deletions
diff --git a/sys-cluster/openmosix-user/ChangeLog b/sys-cluster/openmosix-user/ChangeLog index 683e14f6c4c7..ab21d30a95a4 100644 --- a/sys-cluster/openmosix-user/ChangeLog +++ b/sys-cluster/openmosix-user/ChangeLog @@ -1,13 +1,17 @@ # ChangeLog for sys-cluster/openmosix-user # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosix-user/ChangeLog,v 1.7 2003/03/31 14:31:02 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosix-user/ChangeLog,v 1.8 2003/04/12 17:34:35 tantive Exp $ + +* openmosix-user-0.3 (12 Apr 2003) + + 12 Apr 2003; Michael Imhof <tantive@gentoo.org> + Version bumped. Cleaned up the ebuild. * openmosix-user-0.2.4-r6 (31 Mar 2003) 31 Mar 2003; Michael Imhof <tantive@gentoo.org> Version bumped to make sure autodiscovery works when used. That error was introduced with -r5 and discovered in #18372. - * openmosix-user-0.2.4-r5 (26 Mar 2003) diff --git a/sys-cluster/openmosix-user/files/digest-openmosix-user-0.3 b/sys-cluster/openmosix-user/files/digest-openmosix-user-0.3 new file mode 100644 index 000000000000..02794b6db342 --- /dev/null +++ b/sys-cluster/openmosix-user/files/digest-openmosix-user-0.3 @@ -0,0 +1 @@ +MD5 bc3b686cafe591a8207fc6c39c36ba6f openmosix-tools-0.3.tgz 143737 diff --git a/sys-cluster/openmosix-user/openmosix-user-0.3.ebuild b/sys-cluster/openmosix-user/openmosix-user-0.3.ebuild new file mode 100644 index 000000000000..5e9f1c683b61 --- /dev/null +++ b/sys-cluster/openmosix-user/openmosix-user-0.3.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosix-user/openmosix-user-0.3.ebuild,v 1.1 2003/04/12 17:34:35 tantive Exp $ + +S=${WORKDIR}/openmosix-tools-${PV} +DESCRIPTION="User-land utilities for openMosix process migration (clustering) software" +SRC_URI="mirror://sourceforge/openmosix/openmosix-tools-${PV}.tgz" +HOMEPAGE="http://www.openmosix.com/" +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2 + >=sys-kernel/openmosix-sources-2.4.18" +RDEPEND="${DEPEND} + sys-apps/findutils + dev-lang/perl" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 -ppc -sparc -alpha" + +pkg_setup() { + if [ -z "`readlink /usr/src/linux|grep openmosix`" ]; then + eerror + eerror "Your linux kernel sources do not appear to be openmosix," + eerror "please check your /usr/src/linux symlink." + eerror + die + fi +} + +src_unpack() { + unpack ${A} + cd ${S} + cat Makefile | sed s/DIRS.*=/DIRS=autodiscovery/g > Makefile.tmp + mv Makefile.tmp Makefile + cat > configuration << EOF + +OPENMOSIX=/usr/src/linux +PROCDIR=/proc/hpc +MONNAME=mmon +CC=gcc +INSTALLDIR=/usr +CFLAGS=-I/m/include -I./ -I/usr/include -I\$(OPENMOSIX)/include ${CFLAGS} +INSTALL=/usr/bin/install +EOF +} + +src_compile() { + cd ${S} + make clean build +} + +src_install() { + dodir /bin + dodir /sbin + dodir /usr/share/doc + dodir /usr/share/man/man1 + make INSTALLDIR=${D}/usr \ + MANDIR=${D}usr/share/man \ + SYSCONFDIR=${D}/etc \ + BINDIR=${D}/bin \ + SBINDIR=${D}/sbin \ + RCDIR=${D}/etc/init.d \ + install + + dodoc COPYING README + rm ${D}/etc/init.d/openmosix + exeinto /etc/init.d + newexe ${FILESDIR}/openmosix.init openmosix + insinto /etc + rm ${D}/etc/openmosix.map + #Test if mosix.map is present, stub appropriate openmosix.map + #file + if test -e /etc/openmosix.map; then + einfo "Seems you already have a openmosix.map file, using it."; + elif test -e /etc/mosix.map; then + cp /etc/mosix.map ${WORKDIR}/openmosix.map; + doins ${WORKDIR}/openmosix.map; + else + doins ${FILESDIR}/openmosix.map; + fi +} + +pkg_postinst() { + einfo + einfo " To complete openMosix installation, edit /etc/openmosix.map and then type:" + einfo " # rc-update add openmosix default" + einfo " ...to add openMosix to the default runlevel. This particular version of" + einfo " openmosix-user has been designed to work with the linux-2.4.18-openmosix-r1" + einfo " or later kernel (>=sys-kernel/openmosix-sources-2.4.18)" + einfo +} |