summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-10-31 05:29:35 +0000
committerMike Frysinger <vapier@gentoo.org>2004-10-31 05:29:35 +0000
commit5e2e614681c85ae73f7113c3345da4fdf460089b (patch)
tree7cdff1dcdf90039307771d463a6b09acb3268e6c /x11-misc/x2vnc/x2vnc-1.6.1.ebuild
parentold (Manifest recommit) (diff)
downloadgentoo-2-5e2e614681c85ae73f7113c3345da4fdf460089b.tar.gz
gentoo-2-5e2e614681c85ae73f7113c3345da4fdf460089b.tar.bz2
gentoo-2-5e2e614681c85ae73f7113c3345da4fdf460089b.zip
fix sed DEPEND #44817
Diffstat (limited to 'x11-misc/x2vnc/x2vnc-1.6.1.ebuild')
-rw-r--r--x11-misc/x2vnc/x2vnc-1.6.1.ebuild28
1 files changed, 8 insertions, 20 deletions
diff --git a/x11-misc/x2vnc/x2vnc-1.6.1.ebuild b/x11-misc/x2vnc/x2vnc-1.6.1.ebuild
index 45fe3c66fdb6..422ec1210dd2 100644
--- a/x11-misc/x2vnc/x2vnc-1.6.1.ebuild
+++ b/x11-misc/x2vnc/x2vnc-1.6.1.ebuild
@@ -1,34 +1,22 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2vnc/x2vnc-1.6.1.ebuild,v 1.4 2004/10/19 09:05:44 absinthe Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2vnc/x2vnc-1.6.1.ebuild,v 1.5 2004/10/31 05:29:35 vapier Exp $
DESCRIPTION="Control a remote computer running VNC from X"
-SRC_URI="http://fredrik.hubbe.net/${PN}/${P}.tar.gz"
HOMEPAGE="http://fredrik.hubbe.net/x2vnc.html"
+SRC_URI="http://fredrik.hubbe.net/${PN}/${P}.tar.gz"
+
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="x86 ~alpha sparc amd64"
+KEYWORDS="alpha amd64 sparc x86"
+IUSE="tcltk"
DEPEND="virtual/x11
tcltk? ( dev-tcltk/expect )"
-IUSE="tcltk"
-
-src_compile() {
- econf || die "econf failed"
- emake || die "make failed"
-}
-
-src_install () {
-
- dodir /usr/share
- dodir /usr/bin
+src_install() {
+ dodir /usr/share /usr/bin
make DESTDIR=${D} install || die
-
- if use tcltk
- then
- dobin contrib/tkx2vnc
- fi
-
+ use tcltk && dobin contrib/tkx2vnc
dodoc ChangeLog README
}