diff options
Diffstat (limited to 'editors/nedit/Makefile')
-rw-r--r-- | editors/nedit/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/nedit/Makefile b/editors/nedit/Makefile new file mode 100644 index 00000000000..07c27a4843f --- /dev/null +++ b/editors/nedit/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1 1998/06/02 22:33:16 tron Exp $ + +DISTNAME= nedit_source +PKGNAME= nedit-5.0.2 +CATEGORIES= editors +MASTER_SITES= ftp://ftp.fnal.gov/pub/nedit/v5_0_2/ + +MAINTAINER= tron@netbsd.org + +REQUIRES_MOTIF= yes +USE_X11= yes + +NO_WRKSUBDIR= yes +NO_CONFIGURE= yes +ALL_TARGET= linux_nedit + +MAN1= nc.1 nedit.1 + +do-install: +.for PROGRAM in nc nedit + ${INSTALL_PROGRAM} ${WRKSRC}/source/${PROGRAM} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PROGRAM}.man ${PREFIX}/man/man1/${PROGRAM}.1 +.endfor + ${MKDIR} ${PREFIX}/share/doc/nedit + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/nedit + +.include "../../mk/bsd.pkg.mk" |