summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2003-09-03 08:28:46 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2003-09-03 08:28:46 +0000
commit6a1ca61c4427558599bea10ca688e9c10fc901e7 (patch)
treed5f8a8765235e82f8c0203d4505598ad8c714273 /x11-misc/x2vnc
parentSome cleanups (diff)
downloadhistorical-6a1ca61c4427558599bea10ca688e9c10fc901e7.tar.gz
historical-6a1ca61c4427558599bea10ca688e9c10fc901e7.tar.bz2
historical-6a1ca61c4427558599bea10ca688e9c10fc901e7.zip
Some cleanups
Diffstat (limited to 'x11-misc/x2vnc')
-rw-r--r--x11-misc/x2vnc/Manifest5
-rw-r--r--x11-misc/x2vnc/files/digest-x2vnc-1.5.1-r11
-rw-r--r--x11-misc/x2vnc/x2vnc-1.5.1-r1.ebuild38
3 files changed, 41 insertions, 3 deletions
diff --git a/x11-misc/x2vnc/Manifest b/x11-misc/x2vnc/Manifest
index 06075f44b25e..fe8b16edb24d 100644
--- a/x11-misc/x2vnc/Manifest
+++ b/x11-misc/x2vnc/Manifest
@@ -1,10 +1,9 @@
-MD5 b2ce36c3f2094e98276f08b3eb3ba706 patch 462
MD5 f4254958d3c8a6dc8268f1f1e52a0279 x2vnc-1.3.1.ebuild 613
MD5 7d84a4404758e521cb53c1ee365771cd x2vnc-1.4.ebuild 578
MD5 4a4dfffb81f99e5863ae5fdd950f9359 x2vnc-1.31.ebuild 592
-MD5 1564ba5b9d2fbc4f4137e15bb4b87e43 x2vnc-1.5.1-r1.ebuild 717
+MD5 d7dfa7d31c91be5d58e917506ef5ac1c x2vnc-1.5.1-r1.ebuild 827
MD5 5826bec719fc461abe3b331ae89a8a20 x2vnc-1.5.1.ebuild 591
-MD5 d88903e93ab26a2ad03bbf8b409a32e2 ChangeLog 1473
+MD5 11014d68dda6c9611ea041b536f913b2 ChangeLog 1678
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 6b71281d579f16e2b31cfb6b4c197131 files/digest-x2vnc-1.4 60
MD5 c2a74343b9025063716f8799fcd3b2b0 files/digest-x2vnc-1.5.1-r1 62
diff --git a/x11-misc/x2vnc/files/digest-x2vnc-1.5.1-r1 b/x11-misc/x2vnc/files/digest-x2vnc-1.5.1-r1
new file mode 100644
index 000000000000..d6f7ce72b973
--- /dev/null
+++ b/x11-misc/x2vnc/files/digest-x2vnc-1.5.1-r1
@@ -0,0 +1 @@
+MD5 aaa3e3bc1dd11531f28968025b24ed3c x2vnc-1.5.1.tar.gz 60887
diff --git a/x11-misc/x2vnc/x2vnc-1.5.1-r1.ebuild b/x11-misc/x2vnc/x2vnc-1.5.1-r1.ebuild
new file mode 100644
index 000000000000..a8cc165b3d9f
--- /dev/null
+++ b/x11-misc/x2vnc/x2vnc-1.5.1-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2vnc/x2vnc-1.5.1-r1.ebuild,v 1.1 2003/09/03 08:28:42 phosphan Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Control a remote computer running VNC from X"
+SRC_URI="http://www.hubbe.net/~hubbe/${P}.tar.gz"
+HOMEPAGE="http://www.hubbe.net/~hubbe/x2vnc.html"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~alpha ~sparc"
+
+DEPEND="virtual/x11
+ tcltk? ( dev-tcltk/expect )
+ >=sys-apps/sed-4"
+
+IUSE="tcltk"
+
+src_compile() {
+ econf
+ emake || die "make failed"
+}
+
+src_install () {
+
+ sed -i -e 's/$(\(...\)DIR)/$(DESTDIR)\/$(\1DIR)/
+ s/\(^INSTALL.*\)/\1 -D/' Makefile
+ make DESTDIR=${D} install || die
+
+ if [ `use tcltk` ]
+ then
+ dobin contrib/tkx2vnc
+ fi
+
+ dodoc ChangeLog README
+}
+
+