blob: 37873fd1f4ed181984290690190b8ee0c7f573a2 (
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
|
# $NetBSD: Makefile,v 1.22 2001/02/16 14:40:53 wiz Exp $
# FreeBSD Id: Makefile,v 1.13 1997/09/06 19:55:09 gj Exp
DISTNAME= vile-9.0
CATEGORIES= editors
MASTER_SITES= ftp://ftp.clark.net/pub/dickey/vile/ \
ftp://ftp.uni-trier.de/pub/unix/editor/vile/ \
ftp://ftp.phred.org/pub/vile/
EXTRACT_SUFX= .tgz
MAINTAINER= packages@netbsd.org
COMMENT= VI Like Emacs. a vi "workalike", with many additional features
USE_PERL5= # defined
USE_CURSES= # 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
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
MAKEFILE= makefile
INSTALL_TARGET= install install-perl
DATADIR= ${PREFIX}/share/vile
FILTERDIR= ${PREFIX}/libexec/vile
EGDIR= ${PREFIX}/share/examples/vile
post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/perl/vileget ${PREFIX}/bin/vileget
@${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 "../../mk/bsd.prefs.mk"
.if ${NEED_NCURSES} == "YES"
CPPFLAGS+= -DHAVE_NCURSES_H
CONFIGURE_ARGS+= --with-screen=ncurses
.endif
.include "../../mk/bsd.pkg.mk"
|