27470e1676
* print/ghostscript{7,8,9,9-agpl}-base Installs Ghostscript binary, libgs, and related files. These ports do not depend on X11 libraries (i.e. x11* devices are not available). USES=ghostscript will set dependency on one of them depending on GHOSTSCRIPT_DEFAULT. The default device is set to "display" or "bbox". * print/ghostscript{7,8,9,9-agpl}-x11 Installs a shared library which provides X11 support to the installed Ghostscript binaries. x11* devices will be enabled when the library is available. This depends on *-base (RUN_DEPENDS). USES=ghostscript:x11 will set dependency on one of them. - Fix integer overflow reported as CVE-2015-3228. - Update Uses/ghostscript.mk: * Add x11 keyword. nox11 keyword is now obsolete. * Use packagename in *_DEPENDS line to prevent relationship between -base and -x11 packages from being broken. - Fix x11/nox11 keyword and bump PORTREVISION in ports using USES=ghostscript to update dependency of pre-compiled packages.
30 lines
802 B
Makefile
30 lines
802 B
Makefile
# Created by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= epsonepl
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 5
|
|
CATEGORIES= print
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/GS-IJS%20Plugin%20v${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}ijs-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Printer filter for EPSON EPL-5700L etc
|
|
|
|
LIB_DEPENDS= libijs.so:${PORTSDIR}/print/libijs
|
|
|
|
USES= ghostscript:run uidfix tar:tgz
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile
|
|
SUB_FILES= pkg-message
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC} && ${LS} ijs* | ${GREP} -v ${PORTNAME} | ${XARGS} ${RM}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.conf.sample \
|
|
${STAGEDIR}${PREFIX}/etc
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.apsfilter ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|