blob: 15753e0b9d7368b571056b984aae0efda2555b96 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# New ports collection makefile for: xvile
# Date created: Wed Nov 26, 1996
# Whom: pgf
#
# $FreeBSD$
#
PORTNAME= xvile
PORTVERSION= 9.6e
CATEGORIES= editors
MASTER_SITES= ftp://invisible-island.net/vile/ \
ftp://dickey.his.com/vile/ \
ftp://ftp.phred.org/pub/vile/
DISTNAME= vile-9.6
EXTRACT_SUFX= .tgz
PATCH_SITES= ${MASTER_SITES:S,vile/,vile/patches/,g}
PATCHFILES= vile-9.6a.patch.gz \
vile-9.6b.patch.gz \
vile-9.6c.patch.gz \
vile-9.6d.patch.gz \
vile-9.6e.patch.gz
MAINTAINER= gj@FreeBSD.org
COMMENT= VI Like Emacs, X11 version -- a fully "X aware" vi work-alike
USE_XLIB= yes
MAKEFILE= makefile
GNU_CONFIGURE= yes
USE_PERL5= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--with-libdir-path=${PREFIX}/lib/xvile \
--datadir=${PREFIX}/share/xvile \
--x-includes=${X11BASE}/include \
--x-libraries=${X11BASE}/lib
MAN1= xvile.1
OPTIONS= FILTERS "Add support for loadable filters" OFF
OPTIONS+= ICONV "Add support for ICONV" OFF
OPTIONS+= MENUS "Add support for menus" OFF
OPTIONS+= PERL "Add support for perl functions" OFF
OPTIONS+= XAW3D "Use XAW3D to get a 3D effect" OFF
.include <bsd.port.pre.mk>
pre-configure:
.if ! defined(WITH_ICONV)
@${ECHO_MSG} "Choose the option ICONV if you want to make an xvile which includes"
@${ECHO_MSG} "ICONV functionality"
.endif
.if ! defined(WITH_MENUS)
@${ECHO_MSG} "To use xvile with menus, choose the option MENUS,"
@${ECHO_MSG} "which will also turn on Xaw. If you have Xaw3d, you can use it"
@${ECHO_MSG} "by also choosing the option XAW3D."
.endif
.if ! defined(WITH_PERL)
@${ECHO_MSG} "To use xvile with PERL, choose the option PERL."
.endif
.if ! defined(WITH_FILTERS)
@${ECHO_MSG} "Choose the option FILTERS if you want to make an xvile which will"
@${ECHO_MSG} "dynamically load filters as needed."
.endif
.if defined(WITH_ICONV)
CONFIGURE_ARGS+= --with-iconv
USE_ICONV= yes
.else
CONFIGURE_ARGS+= --without-iconv
.endif
.if defined(WITH_MENUS)
CONFIGURE_ARGS+= --with-screen=Xaw
.if defined(WITH_XAW3D)
LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
CONFIGURE_ARGS+= --with-Xaw3d
.endif
.else
CONFIGURE_ARGS+= --with-screen=x11
.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-loadable-filters
PLIST= ${PKGDIR}/pkg-plist.filt
.endif
.if defined(WITH_PERL) && defined(WITH_FILTERS)
PLIST= ${PKGDIR}/pkg-plist.perl+filt
.endif
post-install:
.if !defined(NOPORTDOCS)
@if ! [ -d ${PREFIX}/share/doc/xvile ]; then ${MKDIR} ${PREFIX}/share/doc/xvile; fi
${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${PREFIX}/share/doc/xvile
.endif
@if ! [ -d ${PREFIX}/share/xvile/macros ]; then ${MKDIR} ${PREFIX}/share/xvile/macros; fi
${INSTALL_DATA} ${WRKSRC}/macros/*.rc ${PREFIX}/share/xvile/macros
${INSTALL_SCRIPT} ${WRKSRC}/macros/vile-pager ${PREFIX}/share/xvile/macros
@${ECHO_MSG} "Look in ${PREFIX}/share/doc/xvile for documentation."
@${ECHO_MSG} "Look in ${PREFIX}/share/xvile/macros for macros."
.include <bsd.port.post.mk>
|