diff options
author | Steve Price <steve@FreeBSD.org> | 1999-01-07 06:35:14 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-01-07 06:35:14 +0000 |
commit | a50f73322dfd84ac4632041853c01d34a2e519bf (patch) | |
tree | cc60fb7ed7586746c62db94fd2da9cfb0ce98b0b /net/vnc | |
parent | 38151bf19e9d193ee98102d4efd1ef019833f8f1 (diff) | |
download | ports-a50f73322dfd84ac4632041853c01d34a2e519bf.tar.gz ports-a50f73322dfd84ac4632041853c01d34a2e519bf.zip |
Notes
Diffstat (limited to 'net/vnc')
-rw-r--r-- | net/vnc/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net/vnc/Makefile b/net/vnc/Makefile index b16d9fededc9..395e405c624b 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -3,7 +3,7 @@ # Date created: 24 February 1998 # Whom: msmith # -# $Id: Makefile,v 1.7 1998/11/21 07:27:39 steve Exp $ +# $Id: Makefile,v 1.8 1998/12/23 01:43:12 steve Exp $ # DISTNAME= vnc-3.3.2r3_unixsrc @@ -20,7 +20,7 @@ USE_PERL5= YES EXTRACT_ONLY= vnc-3.3.2r3_unixsrc.tgz IGNOREFILES= ${DISTFILES} -NO_WRKSUBDIR= YES +WRKSRC= ${WRKDIR}/vnc_unixsrc USE_IMAKE= YES NO_INSTALL_MANPAGES= YES @@ -30,19 +30,19 @@ ALL_TARGET= World # We have to frob a few things, and we want our own permissions, so it's easier # to do the install ourselves. post-install: - ${INSTALL_PROGRAM} ${WRKDIR}/Xvnc/programs/Xserver/Xvnc ${PREFIX}/bin/Xvnc - ${INSTALL_PROGRAM} ${WRKDIR}/vncviewer/vncviewer ${PREFIX}/bin/vncviewer - ${INSTALL_PROGRAM} ${WRKDIR}/vncpasswd/vncpasswd ${PREFIX}/bin/vncpasswd + ${INSTALL_PROGRAM} ${WRKSRC}/Xvnc/programs/Xserver/Xvnc ${PREFIX}/bin/Xvnc + ${INSTALL_PROGRAM} ${WRKSRC}/vncviewer/vncviewer ${PREFIX}/bin/vncviewer + ${INSTALL_PROGRAM} ${WRKSRC}/vncpasswd/vncpasswd ${PREFIX}/bin/vncpasswd ${SED} -e s%/usr/local/vnc/classes%${PREFIX}/share/vnc/classes% \ -e s%^\#!/usr/bin/perl%\#!${PERL}% \ - < ${WRKDIR}/vncserver \ - > ${WRKDIR}/vncserver.local - ${INSTALL_SCRIPT} ${WRKDIR}/vncserver.local ${PREFIX}/bin/vncserver + < ${WRKSRC}/vncserver \ + > ${WRKSRC}/vncserver.local + ${INSTALL_SCRIPT} ${WRKSRC}/vncserver.local ${PREFIX}/bin/vncserver # The documentation comes with bogus ownerships; this is a little leaky security-wise ${MKDIR} ${PREFIX}/share/doc/vnc tar -C ${PREFIX}/share/doc/vnc -xzf ${DISTDIR}/vnc-3.3.2_doc.tgz chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/vnc # Go install Java classes ${MKDIR} ${PREFIX}/share/vnc - ${CP} -R ${WRKDIR}/classes ${PREFIX}/share/vnc + ${CP} -R ${WRKSRC}/classes ${PREFIX}/share/vnc .include <bsd.port.mk> |