blob: 9cd40c5264c1c178bec074c1bff066a3771c1b88 (
plain)
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
|
# $NetBSD: Makefile,v 1.37 2003/07/17 21:35:15 grant Exp $
# FreeBSD Id: Makefile,v 1.13 1997/09/06 19:58:03 gj Exp
#
DISTNAME= vile-9.3
PKGNAME= xvile-9.3
CATEGORIES= editors
MASTER_SITES= ftp://dickey.his.com/vile/ \
ftp://invisible-island.net/vile/
EXTRACT_SUFX= .tgz
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= VI Like Emacs, X11 version -- a fully "X aware" vi work-alike
USE_BUILDLINK2= # defined
USE_X11BASE= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --with-perl
CONFIGURE_ARGS+= --datadir=${DATADIR}
CONFIGURE_ARGS+= --with-libdir-path=${FILTERDIR}
# Until the source catches up to the current Perl API, we need PERL_POLLUTE
# to look like an older perl.
CPPFLAGS+= -DPERL_POLLUTE=1
MAKEFILE= makefile
INSTALL_TARGET= install install-perl
DATADIR= ${PREFIX}/share/xvile
FILTERDIR= ${PREFIX}/libexec/xvile
EGDIR= ${PREFIX}/share/examples/xvile
.include "../../mk/bsd.prefs.mk"
.if defined(XAW_TYPE) && (${XAW_TYPE} == "3d" || ${XAW_TYPE} == "xpm")
CONFIGURE_ARGS+= --with-screen=Xaw3d
CONFIGURE_ARGS+= --with-Xaw3d
.else
XAW_TYPE= standard
CONFIGURE_ARGS+= --with-screen=Xaw
.endif
CONFIGURE_ARGS+= --with-xpm
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/perl/vileget ${PREFIX}/bin/xvileget
${INSTALL_DATA_DIR} ${EGDIR}
for f in filters/spell.rc filters/filters.rc \
macros/digraphs.rc macros/pictmode.rc \
macros/manpage.rc visvile/visvile.rc; do \
${INSTALL_DATA} ${WRKSRC}/$$f ${EGDIR}; \
done
.include "../../graphics/xpm/buildlink2.mk"
.include "../../lang/perl5/buildlink2.mk"
.include "../../mk/xaw.buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|