blob: c41ae9b2b80897716cdcf3b58971d022eeca837f (
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
|
# $NetBSD: Makefile,v 1.79 2022/08/23 08:52:37 wiz Exp $
DISTNAME= vile-9.8w
CATEGORIES= editors
MASTER_SITES= https://invisible-island.net/archives/vile/current/
MASTER_SITES+= ftp://ftp.invisible-island.net/vile/current/
MASTER_SITES+= https://invisible-mirror.net/archives/vile/current/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://invisible-island.net/vile/
COMMENT= VI Like Emacs. a vi "workalike", with many additional features
LICENSE= gnu-gpl-v2
.include "options.mk"
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-perl
CONFIGURE_ARGS+= --datadir=${PREFIX}/share
CONFIGURE_ARGS+= --with-libdir-path=${FILTERDIR:Q}
USE_TOOLS+= perl:run
REPLACE_PERL= perl/vileget
CPPFLAGS.NetBSD+= -DMISSING_EXTERN_ENVIRON
MAKE_FILE= makefile
INSTALL_TARGET= install install-doc install-perl
FILTERDIR= ${PREFIX}/libexec/vile
EGDIR= ${PREFIX}/share/examples/vile
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
set -e; \
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 ${DESTDIR}${EGDIR}; \
done
.include "../../lang/perl5/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|