diff options
author | 2003-08-07 12:38:08 +0000 | |
---|---|---|
committer | 2003-08-07 12:38:08 +0000 | |
commit | 87269882f87f6313b03304e5701e5059356b2322 (patch) | |
tree | ef937d995c60ae3ac4e400896723f216fb7c2556 /net-misc/tightvnc/tightvnc-1.2.9.ebuild | |
parent | version bump (diff) | |
download | historical-87269882f87f6313b03304e5701e5059356b2322.tar.gz historical-87269882f87f6313b03304e5701e5059356b2322.tar.bz2 historical-87269882f87f6313b03304e5701e5059356b2322.zip |
version bump
Diffstat (limited to 'net-misc/tightvnc/tightvnc-1.2.9.ebuild')
-rw-r--r-- | net-misc/tightvnc/tightvnc-1.2.9.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/net-misc/tightvnc/tightvnc-1.2.9.ebuild b/net-misc/tightvnc/tightvnc-1.2.9.ebuild new file mode 100644 index 000000000000..bb5c94f609c0 --- /dev/null +++ b/net-misc/tightvnc/tightvnc-1.2.9.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.9.ebuild,v 1.1 2003/08/07 12:35:29 aliz Exp $ + +inherit eutils + +IUSE="java tcpd" + +S="${WORKDIR}/vnc_unixsrc" +DESCRIPTION="A great client/server software package allowing remote network access to graphical desktops." +SRC_URI="mirror://sourceforge/vnc-tight/${P}_unixsrc.tar.bz2" +HOMEPAGE="http://www.tightvnc.com/" + +KEYWORDS="~x86 ~ppc ~sparc ~alpha" +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=x11-base/xfree-4.2.1 + ~media-libs/jpeg-6b + sys-libs/zlib + tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 ) + !net-misc/vnc" + +RDEPEND="${DEPEND} + dev-lang/perl + java? ( || ( >=virtual/jdk-1.3.1 >=virtual/jre-1.3.1 ) )" + +src_unpack() { + unpack ${A} && cd ${S} + epatch ${FILESDIR}/tightvnc-${PVR}-gentoo.diff + epatch ${FILESDIR}/${P}-gentoo.security.patch +} + +src_compile() { + xmkmf -a || die "xmkmf failed" + + make CDEBUGFLAGS="$CFLAGS" World || die "make World failed" + cd Xvnc && ./configure || die "Configure failed." + + if use tcpd; then + make EXTRA_LIBRARIES="-lwrap -lnss_nis" CDEBUGFLAGS="$CFLAGS" EXTRA_DEFINES="-DUSE_LIBWRAP=1" + else + make CDEBUGFLAGS="$CFLAGS" + fi +} + +src_install() { + # the web based interface and the java viewer need the java class files + insinto /usr/share/tightvnc/classes ; doins classes/* + + dodir /usr/share/man/man1 /usr/bin + ./vncinstall ${D}/usr/bin ${D}/usr/share/man || die "vncinstall failed" + + dodoc ChangeLog README WhatsNew + use java && dodoc ${FILESDIR}/README.JavaViewer + newdoc vncviewer/README README.vncviewer +} |