aboutsummaryrefslogtreecommitdiffstats
path: root/editors/vile/Makefile
blob: e9b33a19d02d669d58d1bec006403b27b6e21898 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# New ports collection makefile for:    vile
# Date created:         Wed Nov 26, 1996
# Whom:                 pgf
#
# $FreeBSD$
#

PORTNAME=   vile
PORTVERSION=    9.3g
CATEGORIES= editors
MASTER_SITES=   ftp://ftp.phred.org/pub/vile/ \
        ftp://dickey.his.com/vile/
DISTNAME=   vile-9.3
EXTRACT_SUFX=   .tgz

PATCH_SITES=    ${MASTER_SITES:S,vile/,vile/patches/,g}
PATCHFILES= vile-9.3a.patch.gz \
        vile-9.3b.patch.gz \
        vile-9.3c.patch.gz \
        vile-9.3d.patch.gz \
        vile-9.3e.patch.gz \
        vile-9.3f.patch.gz \
        vile-9.3g.patch.gz

MAINTAINER= gj@FreeBSD.org

MAKEFILE=   makefile
GNU_CONFIGURE=  yes
MAN1=       vile.1

.if defined(WITH_ALL)
WITH_FILTERS=1
WITH_PERL=1
.endif

.if defined(WITH_PERL)
CONFIGURE_ARGS= --with-perl
PLIST=      ${PKGDIR}/pkg-plist.perl
USE_PERL5=  yes
.endif

.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

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
.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

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>