blob: 517f8f49b3133ae1c6cf2e2d89efce7b2f4df694 (
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
|
# $NetBSD: Makefile,v 1.10 2003/03/29 12:40:46 jmmv Exp $
#
DISTNAME= vigor-0.016
WRKSRC= ${WRKDIR}/${DISTNAME}/build
CATEGORIES= editors
MASTER_SITES= http://www.red-bean.com:8080/
MAINTAINER= hubertf@netbsd.org
HOMEPAGE= http://www.red-bean.com/~joelh/vigor/
COMMENT= nvi with excessive online "help"
CONFLICTS+= nvi-[0-9]*
USE_X11= yes
USE_BUILDLINK2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-x
# --enable-perlinterp \
# --disable-curses \
# --disable-db \
# --disable-re
CONFIGURE_ENV+= ADDCPPFLAGS=" -I${LOCALBASE}/include \
-I${LOCALBASE}/include" \
ADDLDFLAGS=" -L${LOCALBASE}/lib"
.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 "../../x11/tk/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|