diff options
author | Michael Imhof <tantive@gentoo.org> | 2006-07-15 14:42:24 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2006-07-15 14:42:24 +0000 |
commit | f879a48365897c61071013b5aa2967315aba97fd (patch) | |
tree | 339690cf758b076b829794516083f42730242ff6 /sys-cluster | |
parent | Revision bump; Fixing bug #140444 / CVE-2006-3626 (thanks to Daniel Black for... (diff) | |
download | historical-f879a48365897c61071013b5aa2967315aba97fd.tar.gz historical-f879a48365897c61071013b5aa2967315aba97fd.tar.bz2 historical-f879a48365897c61071013b5aa2967315aba97fd.zip |
Removed old ebuild. Closes #140491.
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/openmosixview/ChangeLog | 8 | ||||
-rw-r--r-- | sys-cluster/openmosixview/files/digest-openmosixview-1.4-r1 | 1 | ||||
-rw-r--r-- | sys-cluster/openmosixview/openmosixview-1.4-r1.ebuild | 84 |
3 files changed, 6 insertions, 87 deletions
diff --git a/sys-cluster/openmosixview/ChangeLog b/sys-cluster/openmosixview/ChangeLog index 00e32076eb36..0ae2b1c5f934 100644 --- a/sys-cluster/openmosixview/ChangeLog +++ b/sys-cluster/openmosixview/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-cluster/openmosixview -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosixview/ChangeLog,v 1.9 2005/07/21 15:34:29 caleb Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosixview/ChangeLog,v 1.10 2006/07/15 14:42:24 tantive Exp $ + + 15 Jul 2006; Michael Imhof <tantive@gentoo.org> + -openmosixview-1.4-r1.ebuild: + Removed old ebuild. Closes #140491. 21 Jul 2005; Caleb Tennis <caleb@gentoo.org> openmosixview-1.4-r1.ebuild, openmosixview-1.5-r1.ebuild: diff --git a/sys-cluster/openmosixview/files/digest-openmosixview-1.4-r1 b/sys-cluster/openmosixview/files/digest-openmosixview-1.4-r1 deleted file mode 100644 index 85ec197ac0b0..000000000000 --- a/sys-cluster/openmosixview/files/digest-openmosixview-1.4-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 2e8fe16860cc9581194bf14bb4896b1d openmosixview-1.4.tar.gz 2935290 diff --git a/sys-cluster/openmosixview/openmosixview-1.4-r1.ebuild b/sys-cluster/openmosixview/openmosixview-1.4-r1.ebuild deleted file mode 100644 index 07ef255312e4..000000000000 --- a/sys-cluster/openmosixview/openmosixview-1.4-r1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosixview/openmosixview-1.4-r1.ebuild,v 1.6 2005/07/21 15:34:29 caleb Exp $ - -inherit toolchain-funcs - -S=${WORKDIR}/openmosixview-${PV} -DESCRIPTION="cluster-management GUI for OpenMosix" -SRC_URI="http://www.openmosixview.com/download/openmosixview-${PV}.tar.gz" -HOMEPAGE="http://www.openmosixview.com" -IUSE="" - -DEPEND="<x11-libs/qt-4 - >=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() { - cd ${WORKDIR} - unpack openmosixview-${PV}.tar.gz - - cat > configuration << EOF - # test which version of qt is installed - if [ -d /usr/qt/3 ]; then - QTDIR=/usr/qt/3; else - QTDIR=/usr/qt/2; - fi - CC=$(tc-getCC) -EOF -} - -src_compile() { - cd ${S} - autoconf || die - ./configure || die - make || die - for x in openmosixcollector openmosixanalyzer openmosixhistory openmosixprocs openmosixmigmon - do - cd ${S}/${x} - autoconf || die - ./configure || die - make || die - done -} - -src_install() { - dodir /usr/sbin - dodir /usr/local/bin - - make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die - for y in openmosixcollector openmosixanalyzer openmosixhistory openmosixprocs openmosixmigmon - do - cd ${S}/${y} - make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die - done - - dodoc COPYING README - - exeinto /etc/init.d - rm ${D}/etc/init.d/openmosixcollector - newexe ${FILESDIR}/openmosixcollector.init openmosixcollector -} - -pkg_postinst() { - einfo - einfo "Openmosixview will allow you to monitor all nodes in your cluster." - einfo - einfo "You will need ssh to all cluster-nodes without password." - einfo - einfo "To setup your other nodes you will have to copy the" - einfo "openmosixprocs binary onto each node" - einfo "(scp /usr/local/bin/openmosixprocs your_node:/usr/local/bin/openmosixprocs)" - einfo - einfo "Start openmosixcollector" - einfo "manually (/etc/init.d/openmosixcollector start) or" - einfo "automatically using rc-update" - einfo "(rc-update add openmosixcollector default)." - einfo - einfo "Run openmosixview by simply typing openmosixview." - einfo -} |