diff options
Diffstat (limited to 'editors/xvile/Makefile')
-rw-r--r-- | editors/xvile/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/editors/xvile/Makefile b/editors/xvile/Makefile new file mode 100644 index 00000000000..f5a89d5db06 --- /dev/null +++ b/editors/xvile/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: xvile +# Version required: 7.2 +# Date created: Wed Nov 26, 1996 +# Whom: pgf +# +# FreeBSD Id: Makefile,v 1.13 1997/09/06 19:58:03 gj Exp +# + +DISTNAME= vile-7.2 +PKGNAME= xvile-7.2 +CATEGORIES= editors +MASTER_SITES= ftp://ftp.clark.net/pub/dickey/vile/ \ + ftp://id.wing.net/pub/pgf/vile/ +EXTRACT_SUFX= .tgz + +MAINTAINER= gj@freebsd.org + +MAKEFILE= makefile +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-screen=${SCREEN_TYPE} +MAN1= xvile.1 + +pre-configure: + @echo "To use xvile with menus, set the environment variable USE_MENUS" + +.if defined(USE_MENUS) +SCREEN_TYPE= Xaw +.else +SCREEN_TYPE= x11 +.endif + +post-install: + @echo "You might want to copy the *.rc files from the source tree before" + @echo "doing \`make clean'." +.if defined(USE_MENUS) + @echo "And also take a look at README.MENU !" +.endif + +.include <bsd.port.mk> |