diff options
author | leot <leot@pkgsrc.org> | 2017-09-03 11:30:54 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2017-09-03 11:30:54 +0000 |
commit | 6faed674c2b4e94619dc5c01dae4c024a534d118 (patch) | |
tree | 56c9ad64d50b0879be8c341d156c9a92c59378e9 /print/cups/Makefile | |
parent | 454c0f516d3570901a7abc1220398baf33fee091 (diff) | |
download | pkgsrc-6faed674c2b4e94619dc5c01dae4c024a534d118.tar.gz |
Update print/cups to 2.2.4
pkgsrc changes:
- Pass --with-exe-file-perm=0755 to configure in order to be able to strip
executables and shared objects (the cups' default is 0555 and that's also
inconsistent with pkgsrc's BINMODE)
Changes:
CHANGES IN CUPS V2.2.4
----------------------
- The scheduler did not remove old job files (Issue #4987)
- cupsEnumDests did not return early when all printers had been discovered
(Issue #4989)
- The CUPS build system now supports cross-compilation (Issue #4897)
- Added a new CUPS Programming Manual to replace the aging API documentation.
- Added the `cupsAddIntegerOption` and `cupsGetIntegerOption` functions
(Issue #4992)
- The `cupsGetDests` and `cupsCreateJob` functions now support Bonjour printers
(Issue #4993)
- Added a USB quirk rule for Lexmark E260dn printers (Issue #4994)
- Fixed a potential buffer overflow in the `cupstestppd` utility (Issue #4996)
- IPP Everywhere improvements (Issue #4998)
- Fixed the "cancel all jobs" function in the web interface for several
languages (Issue #4999)
- Fixed issues with local queues (Issue #5003, Issue #5008, Issue #5009)
- The `lpstat` command now supports a `-e` option to enumerate local printers
(either previously added or on the network) that can be accessed
(Issue #5005)
- The `lp` and `lpr` commands now support printing to network printers that
haven't yet been added (Issue #5006)
- Fixed a typo in the mime.types file.
- Fixed a bug in the Spanish web interface template (Issue #5016)
- The `cupsEnumDests*` and `cupsGetDest*` functions now report the value of the
"printer-is-temporary" Printer Status attribute (Issue #5028)
- Added Chinese localization (Issue #5029)
- The `cupsCheckDestSupported` function did not support `NULL` values
(Issue #5031)
- Fixed some issues in the RPM spec file (Issue #5032)
- The `cupsConnectDest` function now supports the `CUPS_DEST_FLAGS_DEVICE` flag
for explicitly connecting to the device (printer) associated with the
destination.
- The `SSLOptions` directive in "client.conf" and "cupsd.conf" now supports
`DenyCBC` and `DenyTLS1.0` options (Issue #5037)
Diffstat (limited to 'print/cups/Makefile')
-rw-r--r-- | print/cups/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index d67b496ad2c..a60ba6db52d 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.249 2017/08/20 23:55:54 jlam Exp $ +# $NetBSD: Makefile,v 1.250 2017/09/03 11:30:54 leot Exp $ -DISTNAME= cups-2.2.3-source +DISTNAME= cups-2.2.4-source PKGNAME= ${DISTNAME:S/-source//} -PKGREVISION= 2 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_GITHUB:=apple/} @@ -32,6 +31,7 @@ CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups CONFIGURE_ARGS+= --with-cups-user=${CUPS_USER} CONFIGURE_ARGS+= --with-cups-group=${CUPS_GROUP} CONFIGURE_ARGS+= --with-system-groups=${CUPS_SYSTEM_GROUPS:Q} +CONFIGURE_ARGS+= --with-exe-file-perm=0755 CONFIGURE_ARGS+= --enable-libpaper CONFIGURE_ARGS+= --enable-libtool CONFIGURE_ARGS+= --enable-ssl @@ -145,7 +145,7 @@ post-extract: ${CP} ${FILESDIR}/cups.pam ${WRKDIR}/cups.pam post-install: - set -e; for file in LICENSE.txt README.txt; do \ + set -e; for file in LICENSE.txt README.md; do \ ${INSTALL_DATA} ${WRKSRC}/$${file} \ ${DESTDIR}${DOCDIR}/$${file}; \ done |