diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-07-10 11:18:00 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-07-10 11:18:00 +0000 |
commit | 23d26958b335513ac87fae5dd1c156ba8efba07c (patch) | |
tree | 28e017a3ccae9215337079a3bc589625a7a5e935 /sys-cluster | |
parent | Should close #24198. (diff) | |
download | historical-23d26958b335513ac87fae5dd1c156ba8efba07c.tar.gz historical-23d26958b335513ac87fae5dd1c156ba8efba07c.tar.bz2 historical-23d26958b335513ac87fae5dd1c156ba8efba07c.zip |
Should close #24198.
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/xpvm/Manifest | 2 | ||||
-rw-r--r-- | sys-cluster/xpvm/files/digest-xpvm-1.2.5-r1 | 1 | ||||
-rw-r--r-- | sys-cluster/xpvm/xpvm-1.2.5-r1.ebuild | 64 |
3 files changed, 66 insertions, 1 deletions
diff --git a/sys-cluster/xpvm/Manifest b/sys-cluster/xpvm/Manifest index 97e2a364e668..c184faaa96e2 100644 --- a/sys-cluster/xpvm/Manifest +++ b/sys-cluster/xpvm/Manifest @@ -1,5 +1,5 @@ MD5 f98f1e822673bb15499b1a1f0f4046cb xpvm-1.2.5.ebuild 1516 -MD5 52d5fec6ed95a0c58402d0eadc077dd8 ChangeLog 376 +MD5 747127579edb7df7dfed8a75818b8462 ChangeLog 527 MD5 c27701d17dc82621b8d26122015fc9f0 xpvm-1.2.5-r1.ebuild 1437 MD5 4844e6d445655538fdc6b850dc33e539 files/xpvm-1.2.5-gentoo.diff 2910 MD5 915d49a269c55c9d68cf0d7d30f1b272 files/digest-xpvm-1.2.5 63 diff --git a/sys-cluster/xpvm/files/digest-xpvm-1.2.5-r1 b/sys-cluster/xpvm/files/digest-xpvm-1.2.5-r1 new file mode 100644 index 000000000000..b9694694f22c --- /dev/null +++ b/sys-cluster/xpvm/files/digest-xpvm-1.2.5-r1 @@ -0,0 +1 @@ +MD5 7b20143cb2ff61e3cb28baf8f9cb2770 XPVM.src.1.2.5.tgz 196004 diff --git a/sys-cluster/xpvm/xpvm-1.2.5-r1.ebuild b/sys-cluster/xpvm/xpvm-1.2.5-r1.ebuild new file mode 100644 index 000000000000..2e232483a25c --- /dev/null +++ b/sys-cluster/xpvm/xpvm-1.2.5-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +S=${WORKDIR}/${P} +DESCRIPTION="XPVM: A graphical console and monitor for PVM" +SRC_URI="http://www.netlib.org/pvm3/xpvm/XPVM.src.1.2.5.tgz" +HOMEPAGE="http://www.csm.ornl.gov/pvm/pvm_home.html" +IUSE="" + +DEPEND=">=sys-cluster/pvm-3.4.1-r1 + =dev-lang/tcl-8.3.4 + =dev-lang/tk-8.3.4" +RDEPEND="" + +SLOT="0" +KEYWORDS="~x86" +LICENSE="LGPL-2" + +src_unpack() { + unpack ${A} + patch -p0 <${FILESDIR}/xpvm-1.2.5-gentoo.diff || die +} + +src_compile() { + cd ${WORKDIR}/xpvm + + export PVM_ROOT="/usr/local/pvm3" + export PVM_ARCH="LINUX" + export XPVM_ROOT=${WORKDIR}"/xpvm" + + emake xpvm || die +} + +src_install() { + cd ${WORKDIR}/xpvm + dodir ${PVM_ROOT}"/xpvm" + dodir ${PVM_ROOT}"/bin/"${PVM_ARCH} + dodir "/usr/bin" + + export XPVM_ROOT=${PVM_ROOT}"/xpvm" + + #create symlinks to xpvm binary + dosym ${XPVM_ROOT}"/src/"${PVM_ARCH}"/xpvm" ${PVM_ROOT}"/bin/"${PVM_ARCH}"/xpvm" + dosym ${XPVM_ROOT}"/src/"${PVM_ARCH}"/xpvm" "/usr/bin/xpvm" + + #install headers and libs and binary + export PVM_ROOT=${D}"/usr/local/pvm3" + cp ${WORKDIR}/xpvm ${PVM_ROOT} -r + + #environment variables: + touch 97xpvm + echo XPVM_ROOT=/usr/local/pvm3/xpvm/src >>97xpvm + insinto /etc/env.d + doins 97xpvm + + dodoc README +} + +pkg_postinst() { + ewarn "Environment Variables have changed. Do not forget to reboot or perform" + ewarn "source /etc/profile before using xpvm !" +} + |