diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-31 05:29:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-31 05:29:35 +0000 |
commit | ec512999a11a1f6c34f838c757bdadac60b6be2c (patch) | |
tree | 6544374291b645954838a5517f294af478b119dd /x11-misc/x2vnc | |
parent | old (diff) | |
download | historical-ec512999a11a1f6c34f838c757bdadac60b6be2c.tar.gz historical-ec512999a11a1f6c34f838c757bdadac60b6be2c.tar.bz2 historical-ec512999a11a1f6c34f838c757bdadac60b6be2c.zip |
fix sed DEPEND #44817
Diffstat (limited to 'x11-misc/x2vnc')
-rw-r--r-- | x11-misc/x2vnc/files/digest-x2vnc-1.6 | 1 | ||||
-rw-r--r-- | x11-misc/x2vnc/x2vnc-1.6.1.ebuild | 28 | ||||
-rw-r--r-- | x11-misc/x2vnc/x2vnc-1.6.ebuild | 34 |
3 files changed, 8 insertions, 55 deletions
diff --git a/x11-misc/x2vnc/files/digest-x2vnc-1.6 b/x11-misc/x2vnc/files/digest-x2vnc-1.6 deleted file mode 100644 index d17af78167d9..000000000000 --- a/x11-misc/x2vnc/files/digest-x2vnc-1.6 +++ /dev/null @@ -1 +0,0 @@ -MD5 e4bb4dec31bc1b3b56d777bc365c9534 x2vnc-1.6.tar.gz 62295 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 } diff --git a/x11-misc/x2vnc/x2vnc-1.6.ebuild b/x11-misc/x2vnc/x2vnc-1.6.ebuild deleted file mode 100644 index b32e5a03c1e2..000000000000 --- a/x11-misc/x2vnc/x2vnc-1.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# 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.ebuild,v 1.10 2004/07/15 00:56:41 agriffis 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" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 alpha sparc amd64" - -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 - make DESTDIR=${D} install || die - - if use tcltk - then - dobin contrib/tkx2vnc - fi - - dodoc ChangeLog README -} |