mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# New ports collection makefile for: vile
|
|
# Date created: Wed Nov 26, 1996
|
|
# Whom: pgf
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vile
|
|
PORTVERSION= 9.1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
|
|
ftp://id.wing.net/pub/pgf/vile/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= gj@freebsd.org
|
|
|
|
MAKEFILE= makefile
|
|
GNU_CONFIGURE= yes
|
|
MAN1= vile.1
|
|
|
|
.if defined(WITH_PERL)
|
|
CONFIGURE_ARGS= --with-perl
|
|
PLIST= ${PKGDIR}/pkg-plist.perl
|
|
USE_PERL5= yes
|
|
.endif
|
|
|
|
pre-configure:
|
|
.if ! defined(WITH_PERL)
|
|
@${ECHO_MSG} "Define WITH_PERL if you want to make a vile which includes"
|
|
@${ECHO_MSG} "PERL functionality"
|
|
.endif
|
|
|
|
post-install:
|
|
.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
|
|
.if defined(WITH_PERL)
|
|
${INSTALL_DATA} ${WRKSRC}/*.doc ${PREFIX}/share/doc/vile
|
|
.endif
|
|
@${ECHO_MSG} "Look in ${PREFIX}/share/doc/vile for documentation."
|
|
@${ECHO_MSG} "Look in ${PREFIX}/share/vile/macros for macros."
|
|
|
|
.include <bsd.port.mk>
|