1995-02-28 00:00:37 +01:00
|
|
|
# New ports collection makefile for: vile
|
1996-12-03 13:53:39 +01:00
|
|
|
# Date created: Wed Nov 26, 1996
|
1995-02-28 00:00:37 +01:00
|
|
|
# Whom: pgf
|
|
|
|
#
|
1999-08-25 07:57:29 +02:00
|
|
|
# $FreeBSD$
|
1995-02-28 00:00:37 +01:00
|
|
|
#
|
|
|
|
|
2000-04-14 02:25:54 +02:00
|
|
|
PORTNAME= vile
|
2003-10-09 11:54:54 +02:00
|
|
|
PORTVERSION= 9.4a
|
1996-11-11 06:07:53 +01:00
|
|
|
CATEGORIES= editors
|
2000-02-02 22:51:39 +01:00
|
|
|
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
|
2001-03-23 22:02:17 +01:00
|
|
|
ftp://dickey.his.com/vile/
|
2003-10-08 21:21:51 +02:00
|
|
|
DISTNAME= vile-9.4
|
2002-01-13 20:09:49 +01:00
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2003-10-09 11:54:54 +02:00
|
|
|
PATCH_SITES= ${MASTER_SITES:S,vile/,vile/patches/,g}
|
|
|
|
PATCHFILES= vile-9.4a.patch.gz
|
|
|
|
|
2002-08-16 09:17:55 +02:00
|
|
|
MAINTAINER= gj@FreeBSD.org
|
2003-03-06 12:02:59 +01:00
|
|
|
COMMENT= VI Like Emacs. a vi "workalike", with many additional features
|
1996-11-11 06:07:53 +01:00
|
|
|
|
1995-04-09 08:11:17 +02:00
|
|
|
MAKEFILE= makefile
|
|
|
|
GNU_CONFIGURE= yes
|
2002-11-05 02:46:48 +01:00
|
|
|
USE_PERL5= yes
|
1996-11-17 08:01:32 +01:00
|
|
|
MAN1= vile.1
|
1995-04-24 05:38:32 +02:00
|
|
|
|
2002-01-13 20:09:49 +01:00
|
|
|
.if defined(WITH_ALL)
|
|
|
|
WITH_FILTERS=1
|
|
|
|
WITH_PERL=1
|
|
|
|
.endif
|
|
|
|
|
2000-04-17 02:18:05 +02:00
|
|
|
.if defined(WITH_PERL)
|
1998-06-04 22:05:04 +02:00
|
|
|
CONFIGURE_ARGS= --with-perl
|
2000-10-08 02:38:53 +02:00
|
|
|
PLIST= ${PKGDIR}/pkg-plist.perl
|
1998-06-04 22:05:04 +02:00
|
|
|
.endif
|
|
|
|
|
2001-03-23 22:02:17 +01:00
|
|
|
.if defined(WITH_FILTERS)
|
|
|
|
CONFIGURE_ARGS+= --with-builtin-filters=all
|
|
|
|
PLIST= ${PKGDIR}/pkg-plist.filt
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_PERL) && defined(WITH_FILTERS)
|
|
|
|
PLIST= ${PKGDIR}/pkg-plist.perl+filt
|
|
|
|
.endif
|
|
|
|
|
1998-06-04 22:05:04 +02:00
|
|
|
pre-configure:
|
2000-04-17 02:18:05 +02:00
|
|
|
.if ! defined(WITH_PERL)
|
|
|
|
@${ECHO_MSG} "Define WITH_PERL if you want to make a vile which includes"
|
1999-08-27 23:14:04 +02:00
|
|
|
@${ECHO_MSG} "PERL functionality"
|
1998-06-04 22:05:04 +02:00
|
|
|
.endif
|
2001-03-23 22:02:17 +01:00
|
|
|
.if ! defined(WITH_FILTERS)
|
|
|
|
@${ECHO_MSG} "Define WITH_FILTERS if you want to make a vile which includes"
|
|
|
|
@${ECHO_MSG} "all filters in the binary"
|
|
|
|
.endif
|
1998-06-04 22:05:04 +02:00
|
|
|
|
1997-09-06 21:55:22 +02:00
|
|
|
post-install:
|
1998-06-04 22:05:04 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@if ! [ -d ${PREFIX}/share/doc/vile ]; then ${MKDIR} ${PREFIX}/share/doc/vile; fi
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${PREFIX}/share/doc/vile
|
|
|
|
.endif
|
|
|
|
@if ! [ -d ${PREFIX}/share/vile/macros ]; then ${MKDIR} ${PREFIX}/share/vile/macros; fi
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/macros/*.rc ${PREFIX}/share/vile/macros
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/macros/vile-pager ${PREFIX}/share/vile/macros
|
1999-08-27 23:14:04 +02:00
|
|
|
@${ECHO_MSG} "Look in ${PREFIX}/share/doc/vile for documentation."
|
|
|
|
@${ECHO_MSG} "Look in ${PREFIX}/share/vile/macros for macros."
|
1997-09-06 21:55:22 +02:00
|
|
|
|
1995-02-28 00:00:37 +01:00
|
|
|
.include <bsd.port.mk>
|