aboutsummaryrefslogtreecommitdiffstats
path: root/editors/vile/Makefile
blob: a6a85272b4d183201e78a9a1e16676f9bfd79375 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# New ports collection makefile for:    vile
# Version required:     8.2
# Date created:         Wed Nov 26, 1996
# Whom:                 pgf
#
# $FreeBSD$
#

DISTNAME=   vile-8.2
CATEGORIES= editors
MASTER_SITES=   ftp://ftp.clark.net/pub/dickey/vile/ \
        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(USE_PERL)
CONFIGURE_ARGS= --with-perl
PLIST=      ${PKGDIR}/PLIST.perl
USE_PERL5=  yes
.endif

pre-configure:
.if ! defined(USE_PERL)
    @echo "Define USE_PERL if you want to make a vile which includes"
    @echo "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(USE_PERL)
    ${INSTALL_DATA} ${WRKSRC}/*.doc ${PREFIX}/share/doc/vile
.endif
    @echo "Look in ${PREFIX}/share/doc/vile for documentation."
    @echo "Look in ${PREFIX}/share/vile/macros for macros."

.include <bsd.port.mk>