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
|
2010-12-18 03:54:46 +01:00
|
|
|
PORTVERSION= 9.8c
|
1996-11-11 06:07:53 +01:00
|
|
|
CATEGORIES= editors
|
2005-07-31 13:08:06 +02:00
|
|
|
MASTER_SITES= ftp://dickey.his.com/vile/ \
|
|
|
|
ftp://invisible-island.net/vile/ \
|
2005-02-01 16:13:09 +01:00
|
|
|
ftp://ftp.phred.org/pub/vile/
|
2010-12-18 03:54:46 +01:00
|
|
|
DISTNAME= vile-9.8c
|
2002-01-13 20:09:49 +01:00
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2005-10-01 21:08:34 +02:00
|
|
|
PATCH_SITES= ${MASTER_SITES:S,vile/,vile/patches/,g}
|
2010-12-18 03:54:46 +01:00
|
|
|
PATCHFILES=
|
2003-10-09 11:54:54 +02:00
|
|
|
|
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
|
1996-11-17 08:01:32 +01:00
|
|
|
MAN1= vile.1
|
2010-08-03 13:25:46 +02:00
|
|
|
MAKE_JOBS_SAFE= yes
|
1995-04-24 05:38:32 +02:00
|
|
|
|
2007-05-29 18:55:40 +02:00
|
|
|
OPTIONS= FILTERS "Add support for loadable filters" OFF
|
2008-02-17 12:49:05 +01:00
|
|
|
OPTIONS+= ICONV "Add support for ICONV" OFF
|
2007-05-29 18:55:40 +02:00
|
|
|
OPTIONS+= PERL "Add support for perl functions" OFF
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
2002-01-13 20:09:49 +01:00
|
|
|
|
2008-02-17 12:49:05 +01:00
|
|
|
.if defined(WITH_ICONV)
|
|
|
|
CONFIGURE_ARGS+= --with-iconv
|
|
|
|
USE_ICONV= yes
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-iconv
|
2008-06-18 15:36:52 +02:00
|
|
|
CONFIGURE_ARGS+= --without-locale
|
2008-02-17 12:49:05 +01:00
|
|
|
.endif
|
|
|
|
|
2000-04-17 02:18:05 +02:00
|
|
|
.if defined(WITH_PERL)
|
2005-10-01 21:08:34 +02:00
|
|
|
CONFIGURE_ARGS+= --with-perl
|
2000-10-08 02:38:53 +02:00
|
|
|
PLIST= ${PKGDIR}/pkg-plist.perl
|
2007-05-29 18:55:40 +02:00
|
|
|
USE_PERL5= yes
|
1998-06-04 22:05:04 +02:00
|
|
|
.endif
|
|
|
|
|
2001-03-23 22:02:17 +01:00
|
|
|
.if defined(WITH_FILTERS)
|
2005-10-01 21:08:34 +02:00
|
|
|
CONFIGURE_ARGS+= --with-loadable-filters
|
2001-03-23 22:02:17 +01:00
|
|
|
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:
|
2008-06-17 13:50:58 +02:00
|
|
|
.if !defined(WITH_ICONV)
|
2008-02-17 12:49:05 +01:00
|
|
|
@${ECHO_MSG} "Choose the option ICONV if you want to make a vile which includes"
|
|
|
|
@${ECHO_MSG} "ICONV functionality"
|
|
|
|
.endif
|
2008-06-17 13:50:58 +02:00
|
|
|
.if !defined(WITH_PERL)
|
2007-05-29 18:55:40 +02:00
|
|
|
@${ECHO_MSG} "Choose the option 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
|
2008-06-17 13:50:58 +02:00
|
|
|
.if !defined(WITH_FILTERS)
|
2007-05-29 18:55:40 +02:00
|
|
|
@${ECHO_MSG} "Choose the option FILTERS if you want to make a vile which will"
|
2005-07-31 13:08:06 +02:00
|
|
|
@${ECHO_MSG} "dynamically load filters as needed."
|
2001-03-23 22:02:17 +01:00
|
|
|
.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
|
|
|
|
2007-05-29 18:55:40 +02:00
|
|
|
.include <bsd.port.post.mk>
|