diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-11 17:07:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-11 17:07:47 +0000 |
commit | cd599da8fcd1ec950433843a7833b5c965916308 (patch) | |
tree | fd19ad6f2c1addaf31f24d5746db17f915d77f0a /net-misc/vnc | |
parent | digests for both files -- the main tarball and the optional tarball (diff) | |
download | gentoo-2-cd599da8fcd1ec950433843a7833b5c965916308.tar.gz gentoo-2-cd599da8fcd1ec950433843a7833b5c965916308.tar.bz2 gentoo-2-cd599da8fcd1ec950433843a7833b5c965916308.zip |
cleaned up syntax and dependency information
Diffstat (limited to 'net-misc/vnc')
-rw-r--r-- | net-misc/vnc/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/vnc/vnc-3.3.3-r2.ebuild | 18 |
2 files changed, 16 insertions, 10 deletions
diff --git a/net-misc/vnc/ChangeLog b/net-misc/vnc/ChangeLog index 7d2d968f75d9..65e5aeaff17c 100644 --- a/net-misc/vnc/ChangeLog +++ b/net-misc/vnc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/vnc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/ChangeLog,v 1.1 2002/02/01 21:53:36 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/ChangeLog,v 1.2 2002/04/11 17:07:47 seemant Exp $ + + 11 Apr 2002; Seemant Kulleen <seemant@gentoo.org> vnc-3.3.3-r2.ebuild : + + Added X as a dependency since xmkmf is required for compilation, and that is + provided by X (and openmotif, but that is pointless). Also, brought ebuild's + syntax up to date. No revision bump necessary. *vnc-3.3.3-r2 (1 Feb 2002) diff --git a/net-misc/vnc/vnc-3.3.3-r2.ebuild b/net-misc/vnc/vnc-3.3.3-r2.ebuild index 5850a5edb72e..e916d030587a 100644 --- a/net-misc/vnc/vnc-3.3.3-r2.ebuild +++ b/net-misc/vnc/vnc-3.3.3-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 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 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/vnc-3.3.3-r2.ebuild,v 1.5 2001/10/06 15:30:16 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/vnc-3.3.3-r2.ebuild,v 1.6 2002/04/11 17:07:47 seemant Exp $ #P= @@ -12,7 +12,7 @@ DESCRIPTION="" SRC_URI="http://www.uk.research.att.com/vnc/dist/${A}" HOMEPAGE="http://www.uk.research.att.com/vnc/index.html" -DEPEND="" +DEPEND="virtual/x11" src_compile() { @@ -25,18 +25,18 @@ src_compile() { #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 + xmkmf || die #FIXME: my dirty little fix to fix imake brain damage - try make Makefiles - try make depend + make Makefiles || die + make depend || die cp ${FILESDIR}/vncviewer-makefile-3.3.3r2 ${S}/vncviewer/Makefile - try make all + make all || die #FIXME: Xvnc build doesn't respect user CFLAGS settings cd Xvnc - try make World + make World || die } @@ -44,7 +44,7 @@ src_install () { cd ${S} mkdir -p ${D}/usr/bin - try ./vncinstall ${D}/usr/bin + ./vncinstall ${D}/usr/bin || die } |