1a88e77001
* the syntax used for sed is not compatible with all sed implementations, so depend on gsed and use it on all platforms * before this, foo2qpdl-wrapper & co. would be searching for CMS and other files in ${DESTDIR}${PREFIX} instead of ${PREFIX} * also install crd files (needed for functioning CMS) PKGREVISION bumped. Ok@ wiz
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2015/07/28 16:42:03 rumko Exp $
|
|
#
|
|
|
|
DISTNAME= foo2zjs
|
|
PKGNAME= ${DISTNAME}-20120516
|
|
PKGREVISION= 1
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://foo2zjs.rkkda.com/
|
|
|
|
MAINTAINER= imil@NetBSD.org
|
|
HOMEPAGE= http://foo2zjs.rkkda.com/
|
|
COMMENT= Printer driver for Zenographics ZjStream wire protocol
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= gmake groff gsed:run
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
|
INSTALLATION_DIRS+= share/foo2zjs share/foomatic/ppd/foo2zjs
|
|
|
|
DEPENDS+= foomatic-filters-cups>=3.0:../../print/foomatic-filters-cups
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_MESSAGE.paths= Fix PREFIX.
|
|
SUBST_FILES.paths= Makefile icc2ps/Makefile
|
|
SUBST_SED.paths= -e "s,@PREFIX@,${DESTDIR}${PREFIX},"
|
|
SUBST_SED.paths+= -e "s,@PKGMANDIR@,${DESTDIR}${PREFIX}/${PKGMANDIR},"
|
|
SUBST_SED.paths+= -e "s,@RUNPREFIX@,${PREFIX},"
|
|
SUBST_STAGE.paths= post-patch
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${GMAKE} ${PROGS}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${GMAKE} install-prog install-man install-crd
|
|
# cheaper than upstream's "portable" Makefile
|
|
${INSTALL_DATA} ${WRKSRC}/PPD/*.ppd \
|
|
${DESTDIR}${PREFIX}/share/foomatic/ppd/foo2zjs
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|