diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2017-07-14 14:15:11 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2017-07-14 14:15:11 +0000 |
commit | 4934b4116e8bedd51afe5061728fd1e45a2aaa9a (patch) | |
tree | 45ce8e55b0b4976ac1e5a1a0f70ed9c5dac05b47 /print/epson-inkjet-printer-201401w/Makefile | |
parent | bc1e93a03536cf1d67f6eeb667627f58798579ae (diff) |
Notes
Diffstat (limited to 'print/epson-inkjet-printer-201401w/Makefile')
-rw-r--r-- | print/epson-inkjet-printer-201401w/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/print/epson-inkjet-printer-201401w/Makefile b/print/epson-inkjet-printer-201401w/Makefile new file mode 100644 index 000000000000..cfcdeb923ba2 --- /dev/null +++ b/print/epson-inkjet-printer-201401w/Makefile @@ -0,0 +1,53 @@ +# $FreeBSD$ + +PORTNAME= epson-inkjet-printer-201401w +PORTVERSION= 1.0.0 +CATEGORIES= print +MASTER_SITES= https://download3.ebz.epson.net/dsc/f/03/00/03/45/41/d95c03482376873661d7a8d4c165b385cd082cf3/:amd64 \ + https://download3.ebz.epson.net/dsc/f/03/00/03/45/41/0c527f1eef727e350302db951a45d31319ee501b/:i386 +DISTFILES_amd64=${DISTNAME}-1lsb3.2.x86_64.rpm:amd64 +DISTFILES_i386= ${DISTNAME}-1lsb3.2.i486.rpm:i386 + +MAINTAINER= hello@blubee.me +COMMENT= CUPS filter for Seiko Epson Color Ink Jet Printers + +LICENSE= EPSON LGPL21 +LICENSE_COMB= multi +LICENSE_NAME_EPSON= SEIKO EPSON CORPORATION SOFTWARE LICENSE AGREEMENT +LICENSE_FILE_EPSON= ${WRKSRC}/opt/${PORTNAME}/doc/COPYING.EPSON +LICENSE_FILE_LGPL21= ${WRKSRC}/opt/${PORTNAME}/doc/COPYING.LIB +LICENSE_PERMS_EPSON= none + +RUN_DEPENDS= ${LOCALBASE}/libexec/cups/filter/gstoraster:print/cups-filters + +RESTRICTED= License does not allow redistribution + +NO_BUILD= yes +NO_WRKSUBDIR= yes +PLIST_SUB= LINUXBASE=${LINUXBASE} \ + PORTNAME=${PORTNAME} +USES= linux +USE_LINUX= cups-libs jpeg + +.include <bsd.port.pre.mk> + +.if ${LINUX_ARCH} == i386 +PLIST_SUB+= LIBDIR=lib +.elif ${LINUX_ARCH} == x86_64 +PLIST_SUB+= LIBDIR=lib64 +.endif + +post-extract: + @${GUNZIP_CMD} ${WRKSRC}/opt/${PORTNAME}/ppds/Epson/*.ppd.gz + +post-patch: + @${SED} -i '' '/^\*cupsFilter:/s,/opt/,${LINUXBASE}&,' \ + ${WRKSRC}/opt/${PORTNAME}/ppds/Epson/*.ppd + +do-install: + ${MKDIR} ${STAGEDIR}${LINUXBASE} + ${CP} -Rp ${WRKSRC}/opt ${STAGEDIR}${LINUXBASE} + ${MKDIR} ${STAGEDIR}${PREFIX}/share/cups/model/ + ${LN} -sf ${LINUXBASE}/opt/${PORTNAME}/ppds/Epson ${STAGEDIR}${PREFIX}/share/cups/model/Epson-201401w + +.include <bsd.port.post.mk> |