blob: a937808793e92a786336a4b0f22c185c50a59044 (
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
|
# $NetBSD: Makefile,v 1.21 2005/11/03 21:24:29 rillig Exp $
#
DISTNAME= vigor-0.016
PKGREVISION= 2
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vigor/}
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://vigor.sourceforge.net/
COMMENT= nvi with excessive online "help"
CONFLICTS+= nvi-[0-9]*
GNU_CONFIGURE= yes
CONFIGURE_DIRS= build
CONFIGURE_ENV+= TCLCONFIG_SH=${TCLCONFIG_SH:Q}
CONFIGURE_ENV+= vi_cv_path_shell=${TOOLS_SH:Q}
CONFIGURE_ARGS+=--with-x
# --enable-perlinterp \
# --disable-curses \
# --disable-db \
# --disable-re
USE_TOOLS+= sh
BUILD_DIRS= ${CONFIGURE_DIRS}
.include "../../lang/tcl/buildlink3.mk"
.include "../../x11/tk/buildlink3.mk"
.if exists(/usr/include/sys/queue.h)
# this file obscures the system header
post-patch:
${RM} -f ${WRKSRC}/include/sys/queue.h
.endif
post-build:
nroff -mandoc ${WRKSRC}/docs/USD.doc/vi.man/vi.1 >${WRKSRC}/docs/USD.doc/vi.man/vi.0
.include "../../mk/bsd.pkg.mk"
|