diff options
-rw-r--r-- | editors/elvis-x11/DESCR | 10 | ||||
-rw-r--r-- | editors/elvis-x11/Makefile | 18 |
2 files changed, 28 insertions, 0 deletions
diff --git a/editors/elvis-x11/DESCR b/editors/elvis-x11/DESCR new file mode 100644 index 00000000000..61bed61e878 --- /dev/null +++ b/editors/elvis-x11/DESCR @@ -0,0 +1,10 @@ +This is the X11 GUI version of Elvis. It includes the console version, as well. + +Elvis - written by Steve Kirkendall is a very powerful vi/ex clone providing +a remarkable number of bells and whistles like: + + * Syntax Highlighting. + * Multiple files in multiple windows. + * Browse modes for LaTeX (rather experimental), HTML and MAN pages. + * Networking support (http and ftp). + * GUI frontends for some of its platforms. diff --git a/editors/elvis-x11/Makefile b/editors/elvis-x11/Makefile new file mode 100644 index 00000000000..2195b4d92e6 --- /dev/null +++ b/editors/elvis-x11/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/01/20 21:17:22 recht Exp $ +# + +.include "../elvis/Makefile.common" + +PKGNAME= elvis-x11-2.2.0 +COMMENT= GUI for elvis, includes console elvis + +CONFLICTS+= elvis-[0-9]* + +USE_X11= YES +CONFIGURE_ARGS+= --with-x=yes +CONFIGURE_ARGS+= --with-xft + +MAKEFLAGS+= CC="${CC} -I${LOCALBASE}/include/freetype2 ${CFLAGS}" + +.include "../../fonts/Xft2/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |