diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-05 02:48:13 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-05 02:48:13 +0000 |
commit | 95932de744de3b7205cc57b18a1f2eb2d7e23b49 (patch) | |
tree | 1fd56af16ec1719f90447b3909059d84f3314d25 /editors/vim6 | |
parent | Move man page entry from PLIST to Makefile. Portlint. (diff) |
ln -> {LN}
Notes
Notes:
svn path=/head/; revision=13012
Diffstat (limited to 'editors/vim6')
-rw-r--r-- | editors/vim6/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/vim6/Makefile b/editors/vim6/Makefile index 2c302251ef03..e0aac8304624 100644 --- a/editors/vim6/Makefile +++ b/editors/vim6/Makefile @@ -4,7 +4,7 @@ # Date created: Sat June 29, 1996 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.37 1998/09/03 11:29:35 obrien Exp $ +# $Id: Makefile,v 1.25 1998/09/03 11:35:11 obrien Exp $ # DISTNAME= vim-5.3 @@ -20,11 +20,11 @@ DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} ${DISTNAME}-rt${EXTRACT_SUFX} MAINTAINER= obrien@FreeBSD.org .if defined(BATCH) -USE_PERL5= yes BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 \ python:${PORTSDIR}/lang/python LIB_DEPENDS= tcl80\\.1\\.2:${PORTSDIR}/lang/tcl80 RUN_DEPENDS= python:${PORTSDIR}/lang/python +USE_PERL5= yes .endif WRKSRC= ${WRKDIR}/${DISTNAME}/src @@ -49,8 +49,8 @@ pre-build: @(cd ${WRKSRC}; ${MAKE} distclean) post-install: - [ -e ${PREFIX}/bin/gvim ] || /bin/ln -s ${PREFIX}/bin/vim ${PREFIX}/bin/gvim + [ -e ${PREFIX}/bin/gvim ] || ${LN} -s ${PREFIX}/bin/vim ${PREFIX}/bin/gvim @${RM} -f ${PREFIX}/man/man1/etags.1 - @/bin/ln -sf ${PREFIX}/man/man1/ctags.1.gz ${PREFIX}/man/man1/etags.1.gz + @${LN} -sf ${PREFIX}/man/man1/ctags.1.gz ${PREFIX}/man/man1/etags.1.gz .include <bsd.port.mk> |