summaryrefslogtreecommitdiff
path: root/print/mp/Makefile
diff options
context:
space:
mode:
authorkim <kim@pkgsrc.org>1999-10-28 19:52:26 +0000
committerkim <kim@pkgsrc.org>1999-10-28 19:52:26 +0000
commitc675825f5265ce4277bb9c7c676af6e7c5bb0028 (patch)
tree1610f92de8b25462a81916fcf0bad2fe6a953a9c /print/mp/Makefile
parentde560624fc3597b8422881d6cacb4c22d9754685 (diff)
downloadpkgsrc-c675825f5265ce4277bb9c7c676af6e7c5bb0028.tar.gz
The mp program will pretty print various files for you. It can be used
in conjunction with a mail reading utility for producing a pretty print of your mail items. It can be used with a news reading tool to pretty print news articles. Digests can also be printed, and this version can pretty print ordinary ASCII files as well. Support for personal organiser printing was added into the last released version. There are numerous configuration options to allow you to adjust the way mp generates it's output. [Note: mptool and mimep must be created as additional packages.]
Diffstat (limited to 'print/mp/Makefile')
-rw-r--r--print/mp/Makefile35
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"