diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2001-06-29 01:24:16 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2001-06-29 01:24:16 +0000 |
commit | 4192492b5f9aac16e6024c8c6e7ed6cde62a6c45 (patch) | |
tree | 48b8f14d7a3322979b0f63622aacb9c6752afd55 /net-misc | |
parent | Added sys-apps/lsof. (diff) | |
download | historical-4192492b5f9aac16e6024c8c6e7ed6cde62a6c45.tar.gz historical-4192492b5f9aac16e6024c8c6e7ed6cde62a6c45.tar.bz2 historical-4192492b5f9aac16e6024c8c6e7ed6cde62a6c45.zip |
New ebuild (vnc). Note that my imake fix is a real hack!
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/vnc/files/digest-vnc-3.3.3-r2 | 1 | ||||
-rw-r--r-- | net-misc/vnc/vnc-3.3.3-r2.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/net-misc/vnc/files/digest-vnc-3.3.3-r2 b/net-misc/vnc/files/digest-vnc-3.3.3-r2 new file mode 100644 index 000000000000..cff5bbab901c --- /dev/null +++ b/net-misc/vnc/files/digest-vnc-3.3.3-r2 @@ -0,0 +1 @@ +MD5 6fc83e1b6153d3252649953267713f17 vnc-3.3.3r2_unixsrc.tgz diff --git a/net-misc/vnc/vnc-3.3.3-r2.ebuild b/net-misc/vnc/vnc-3.3.3-r2.ebuild new file mode 100644 index 000000000000..0f9f872ba1bb --- /dev/null +++ b/net-misc/vnc/vnc-3.3.3-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Grant Goodyear <g2boojum@hotmail.com> +# /home/cvsroot/gentoo-x86/skel.build,v 1.2 2001/02/15 18:17:31 achim Exp + +#P= +A="vnc-3.3.3r2_unixsrc.tgz" +S=${WORKDIR}/vnc_unixsrc +DESCRIPTION="" +SRC_URI="http://www.uk.research.att.com/vnc/dist/${A}" +HOMEPAGE="http://www.uk.research.att.com/vnc/index.html" + +DEPEND="" + +src_compile() { + + cd ${S} + cd Xvnc/config/cf + mv Imake.cf Imake.cf.orig + #insist that the machine is an i386 for the Xvnc build + sed -e '/#ifdef linux/a\# define i386' Imake.cf.orig > Imake.cf + cd ${S} + try xmkmf + try make World + cd Xvnc + try make World + +} + +src_install () { + + cd ${S} + mkdir -p ${D}/usr/bin + try ./vncinstall ${D}/usr/bin + +} + |