22c256a3a5
Version 0.016 (May 2 19:36) * Enable Version 0.015 (Mar 25 15:17) * Disable by default built-in curses, db, and re libraries. Most OS's these days have proper libraries for these, and I was seeing conflicts (particularly on SuSE under Vigor 0.014). This may break things on some other OS's, probably older ones. If so, try using --enable-curses --enable-db --enable-re on the command line. Version 0.014 (Feb 8 14:50) * Remove the hack to the EULA that produced the Jumping Vigor Bug. Version 0.013 (Feb 5 11:53) * Fix to configure.in: it looked for Tcl on Debian systems when it was supposed to look for Tk. Version 0.012 (Feb 4 00:28) * Updated EULA, made dialog box move along with assistant Version 0.011 (Feb 2 00:10) * Look for libtcl8.2 etc (as opposed to libtcl82 etc); handle select() calls prior to assistant initialization
32 lines
763 B
Makefile
32 lines
763 B
Makefile
# $NetBSD: Makefile,v 1.8 2001/11/15 23:40:32 hubertf Exp $
|
|
#
|
|
|
|
DISTNAME= vigor-0.016
|
|
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"
|
|
|
|
DEPENDS+= tk>=8.3.2:../../x11/tk
|
|
|
|
CONFLICTS+= nvi-[0-9]*
|
|
|
|
USE_X11= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/build
|
|
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"
|
|
|
|
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"
|