diff options
Diffstat (limited to 'print/mp/Makefile')
-rw-r--r-- | print/mp/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/print/mp/Makefile b/print/mp/Makefile new file mode 100644 index 00000000000..c762d43a6da --- /dev/null +++ b/print/mp/Makefile @@ -0,0 +1,35 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/10/28 19:52:26 kim Exp $ +# + +DISTNAME= mp +PKGNAME= mp-3.4.0 +CATEGORIES= print +MASTER_SITES= http://java.sun.com/people/richb/RichApps/mp/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= kim@tac.nyc.ny.us +HOMEPAGE= http://java.sun.com/people/richb/ + +WRKSRC= ${WRKDIR}/mpdist + +NO_CONFIGURE= yes + +USE_X11= yes + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +EXTRALIBS= -lsocket -lnsl -lgen +.else +BSD_PRINT= -DBSD_PRINT +.endif + +ALL_TARGET= mp PREFIX=${PREFIX} X11BASE=${X11BASE} CC='${CC}' \ + BSD_PRINT=${BSD_PRINT} EXTRALIBS='${EXTRALIBS}' + +INSTALL_TARGET= install-mp PREFIX=${PREFIX} + +pre-patch: + cp ${WRKSRC}/Makefile.dist ${WRKSRC}/Makefile + +.include "../../mk/bsd.pkg.mk" |