summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-07-06 15:37:58 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-07-06 15:37:58 +0000
commit5d7cc2487f75bb05560c9763331511e427b9afbb (patch)
tree0aeceb8f74adfdb5107abf2c5704f60aa4407f81 /sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild
parentupdate gcc-3.1 fix (diff)
downloadgentoo-2-5d7cc2487f75bb05560c9763331511e427b9afbb.tar.gz
gentoo-2-5d7cc2487f75bb05560c9763331511e427b9afbb.tar.bz2
gentoo-2-5d7cc2487f75bb05560c9763331511e427b9afbb.zip
repoman cleanups -- everyone join in :)
Diffstat (limited to 'sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild')
-rw-r--r--sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild b/sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild
deleted file mode 100644
index 1bb6601c189c..000000000000
--- a/sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/openmosix-user/openmosix-user-0.1.3.ebuild,v 1.4 2002/05/27 17:27:39 drobbins Exp $
-
-S=${WORKDIR}/openMosixUserland-${PV}
-DESCRIPTION="User-land utilities for openMosix process migration (clustering) software"
-SRC_URI="mirror://sourceforge/openmosix/openMosixUserland-${PV}.tgz"
-HOMEPAGE="http://www.openmosix.com"
-RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2"
-DEPEND="$RDEPEND ~sys-kernel/openmosix-sources-2.4.17_pre3 sys-apps/findutils sys-devel/perl"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- 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
- #use perl, find and xargs to convert /usr/man references to /usr/share/man (FHS)
- find . -iname Makefile | xargs perl -pi.orig -e "s:INSTALLDIR\)/man:INSTALLDIR)/share/man:g"
-}
-
-src_compile() {
- cd ${S}
- make clean build man
-}
-
-src_install () {
- make INSTALLDIR=${D}/usr install
- dodoc COPYING README
- exeinto /etc/init.d
- newexe ${FILESDIR}/openmosix.init openmosix
- insinto /etc
- #stub mosix.map file
- doins ${FILESDIR}/mosix.map
-}
-
-pkg_postinst() {
- echo
- echo " To complete openMosix installation, edit /etc/mosix.map and then type:
- echo "# rc-update add openmosix default
- echo " ...to add openMosix to the default runlevel. This particular version of"
- echo " openmosix-user has been designed to work with the 2.4.17-pre3-openmosix"
- echo " kernel (sys-kernel/openmosix-sources-2.4.17_pre3.)"
- echo
-}