diff options
author | spz <spz@pkgsrc.org> | 2017-02-13 06:11:34 +0000 |
---|---|---|
committer | spz <spz@pkgsrc.org> | 2017-02-13 06:11:34 +0000 |
commit | 6674107cbb6a16fe2186f236c82ee40935d9a987 (patch) | |
tree | 792490935b8e360949ca55a1f8442809a4a88740 | |
parent | 2e807c33c8bf97e94a8d606abde4a545c4280caa (diff) | |
download | pkgsrc-6674107cbb6a16fe2186f236c82ee40935d9a987.tar.gz |
Pullup ticket #5199 - requested by leot
print/cups-filters: build fix
Revisions pulled up:
- print/cups-filters/Makefile 1.62
-------------------------------------------------------------------
Module Name: pkgsrc
Committed By: markd
Date: Thu Jan 19 10:19:26 UTC 2017
Modified Files:
pkgsrc/print/cups-filters: Makefile
Log Message:
Fix path to pdftpps.
mv cups-browsed.conf from correct post install location.
To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 pkgsrc/print/cups-filters/Makefile
-rw-r--r-- | print/cups-filters/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/print/cups-filters/Makefile b/print/cups-filters/Makefile index 7a652ee7b35..e6f86f52b98 100644 --- a/print/cups-filters/Makefile +++ b/print/cups-filters/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.60 2016/12/19 08:49:00 wiz Exp $ +# $NetBSD: Makefile,v 1.60.2.1 2017/02/13 06:11:34 spz Exp $ DISTNAME= cups-filters-1.13.1 ++PKGREVISION= 1 CATEGORIES= print MASTER_SITES= http://openprinting.org/download/cups-filters/ EXTRACT_SUFX= .tar.xz @@ -39,6 +40,7 @@ CONFIGURE_ARGS+= --with-rclevels="" CONFIGURE_ARGS+= --disable-ldap CONFIGURE_ARGS+= --disable-mutool CONFIGURE_ARGS+= --with-shell=${TOOLS_PATH.bash} +CONFIGURE_ARGS+= --with-pdftops-path=${PREFIX}/bin/pdftops INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples/cups-filters @@ -46,7 +48,7 @@ CONF_FILES= ${PREFIX}/share/examples/cups-filters/fonts/conf.d/99pdftoopvp.conf CONF_FILES+= ${PREFIX}/share/examples/cups-filters/cups-browsed.conf ${PKG_SYSCONFDIR}/cups/cups-browsed.conf post-install: - ${MV} ${DESTDIR}${PREFIX}/etc/cups/cups-browsed.conf ${DESTDIR}${PREFIX}/share/examples/cups-filters/cups-browsed.conf + ${MV} ${DESTDIR}${PKG_SYSCONFDIR}/cups/cups-browsed.conf ${DESTDIR}${PREFIX}/share/examples/cups-filters/cups-browsed.conf .include "../../devel/glib2/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" |