summaryrefslogtreecommitdiff
path: root/print/adobeps-win/Makefile
diff options
context:
space:
mode:
authorjlam <jlam>2003-05-28 08:25:06 +0000
committerjlam <jlam>2003-05-28 08:25:06 +0000
commit5a36171f0e97c93a4c1f87ed0311701d6e04c72d (patch)
treeb056310d01e68d78e03450ceb42cfcafc08c2073 /print/adobeps-win/Makefile
parentef04f0390fd17c1521e992297b2d0ae5cc4a0775 (diff)
downloadpkgsrc-5a36171f0e97c93a4c1f87ed0311701d6e04c72d.tar.gz
Initial import of adobeps-win-1.0.6:
Adobe PostScript printer drivers for MS Windows 9x/NT to use CUPS as a networked PostScript RIP (raster image processor), handling printfiles from all client platforms in a uniform way, and enabling clients to consolidate on a single PostScript driver, even for many different target printers.
Diffstat (limited to 'print/adobeps-win/Makefile')
-rw-r--r--print/adobeps-win/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/print/adobeps-win/Makefile b/print/adobeps-win/Makefile
new file mode 100644
index 00000000000..b05d1964294
--- /dev/null
+++ b/print/adobeps-win/Makefile
@@ -0,0 +1,42 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/05/28 08:25:06 jlam Exp $
+
+DISTNAME= winsteng
+PKGNAME= adobeps-win-1.0.6
+CATEGORIES= print
+MASTER_SITES= ftp://ftp.adobe.com/pub/adobe/printerdrivers/win/1.x/
+EXTRACT_SUFX= .exe
+
+MAINTAINER= jlam@netbsd.org
+HOMEPAGE= http://www.adobe.com/products/printerdrivers/windows.html
+COMMENT= Adobe PostScript MS Windows drivers for CUPS/Samba
+
+BUILD_DEPENDS+= cabextract-[0-9]*:../../archivers/cabextract
+
+DIST_SUBDIR= ${PKGNAME_NOREV}
+WRKSRC= ${WRKDIR}
+EXTRACT_CMD= ${LOCALBASE}/bin/cabextract ${DOWNLOADED_DISTFILE}
+NO_CONFIGURE= yes
+NO_BUILD= yes
+
+NTFILES= ADOBEPS5.DLL ADOBEPSU.DLL ADOBEPSU.HLP DEFPRTR2.PPD
+9XFILES= ADFONTS.MFM ADOBEPS4.DRV ADOBEPS4.HLP ICONLIB.DLL PSMON.DLL
+DRIVERDIR= ${PREFIX}/share/cups/drivers
+
+post-extract:
+ cd ${WRKSRC}; for dir in WinNT Windows; do \
+ ( cd $$dir; for file in *; do \
+ cap=`${ECHO} $$file | ${TR} '[a-z]' '[A-Z]'`; \
+ ${MV} $$file $$cap; \
+ done ); \
+ done
+
+do-install:
+ ${INSTALL_DATA_DIR} ${DRIVERDIR}
+ for file in ${NTFILES}; do \
+ ${INSTALL_DATA} ${WRKSRC}/WinNT/$$file ${DRIVERDIR}; \
+ done
+ for file in ${9XFILES}; do \
+ ${INSTALL_DATA} ${WRKSRC}/Windows/$$file ${DRIVERDIR}; \
+ done
+
+.include "../../mk/bsd.pkg.mk"