From owner-cvs-all@FreeBSD.ORG Thu Jan 4 22:49:03 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C493E16A40F; Thu, 4 Jan 2007 22:49:03 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AA4D113C465; Thu, 4 Jan 2007 22:49:03 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l04Mn3Rb047782; Thu, 4 Jan 2007 22:49:03 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l04Mn3XP047781; Thu, 4 Jan 2007 22:49:03 GMT (envelope-from mezz) Message-Id: <200701042249.l04Mn3XP047781@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 4 Jan 2007 22:49:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/libgnomecups Makefile pkg-plist ports/print/libgnomecups/files patch-20_parse-dot-cups-lpoptions patch-21_fix-islocal patch-22_ignore-ipp-not-found patch-23_replace-set-printer-attrs patch-24_mem-leak patch-25_browsed_ppds ports/print/gnome-cups-manager Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jan 2007 22:49:04 -0000 mezz 2007-01-04 22:49:03 UTC FreeBSD ports repository Modified files: print/libgnomecups Makefile pkg-plist print/gnome-cups-manager Makefile pkg-plist Added files: print/libgnomecups/files patch-20_parse-dot-cups-lpoptions patch-21_fix-islocal patch-22_ignore-ipp-not-found patch-23_replace-set-printer-attrs patch-24_mem-leak patch-25_browsed_ppds print/gnome-cups-manager/files patch-24_printer_properties_name_entry patch-25_properties_on_add patch-26_remove-no-cups-dialog patch-27_dont-request-additional-attributes patch-change_uri_fix patch-gutenprint_driver_name patch-password_field_garbage patch-select_eintr_crash patch-ui_edit_name_description patch-ui_startbox patch-ui_tooltip Log: Took a lot of nice patches from Ubuntu Linux to make both of ports work better with the current version of CUPS. Also, many improvements. Fix a bit in the plist. Bump thePORTREVISION. libgnomecups: -------------------- * patch-20_parse-dot-cups-lpoptions: Parse ~/.cups/lpoptions. * patch-21_fix-islocal: Check whether the printer URI starts with http://, ipp://, or smb:// to test whether its local or not. * patch-22_ignore-ipp-not-found: Do not warn on stderr in case of IPP_NOT_FOUND. * patch-23_replace-set-printer-attrs: Replace IPP_SET_PRINTER_ATTRIBUTES with CUPS_ADD_MODIFY_PRINTER. * patch-24_mem-leak: Fix memory leak in gnome_cups_request_add_requested_attributes(). * patch-25_browsed_ppds: Fix PPD retrieval for printers picked up with cups browsing. -------------------- gnome-cups-manager: -------------------- * patch-24_printer_properties_name_entry: Doesn't allow changing of printer names, but the GUI pretends to. * patch-25_properties_on_add: Don't open up a printer properties on a fresh add of a printer. CUPS isn't synced yet, so it causes problems. * patch-26_remove-no-cups-dialog: Don't show a dialog when CUPS isn't found. * patch-27_dont-request-additional-attributes: Avoid calling gnome_cups_request_add_requested_attributes() since CUPS returns all attributes by defaults anyway. * patch-change_uri_fix: Fix the URI change. * patch-gutenprint_driver_name: Do not crash if a PPD file name does not contain a '/'. * patch-password_field_garbage: When editing SMB connection attributes, do not set the password input field to the value of 'resource' (which is 'smb'). We do not get the password in cleartext, so just leave the field blank. * patch-select_eintr_crash: Do not bail out if select() fails with EINTR, which is a valid case. * patch-ui_edit_name_description: Add gnome-cups-add step to change printer name, description, and location. * patch-ui_startbox: Improvement on startup, run progress bar in the first startup to scan the printer database. * patch-ui_tooltip: Adjust tooltip for cups network printer installation. -------------------- PR: ports/106972 Reported by: Werner Tested by: Werner Revision Changes Path 1.28 +1 -1 ports/print/gnome-cups-manager/Makefile 1.1 +41 -0 ports/print/gnome-cups-manager/files/patch-24_printer_properties_name_entry (new) 1.1 +14 -0 ports/print/gnome-cups-manager/files/patch-25_properties_on_add (new) 1.1 +24 -0 ports/print/gnome-cups-manager/files/patch-26_remove-no-cups-dialog (new) 1.1 +15 -0 ports/print/gnome-cups-manager/files/patch-27_dont-request-additional-attributes (new) 1.1 +25 -0 ports/print/gnome-cups-manager/files/patch-change_uri_fix (new) 1.1 +62 -0 ports/print/gnome-cups-manager/files/patch-gutenprint_driver_name (new) 1.1 +11 -0 ports/print/gnome-cups-manager/files/patch-password_field_garbage (new) 1.1 +12 -0 ports/print/gnome-cups-manager/files/patch-select_eintr_crash (new) 1.1 +624 -0 ports/print/gnome-cups-manager/files/patch-ui_edit_name_description (new) 1.1 +112 -0 ports/print/gnome-cups-manager/files/patch-ui_startbox (new) 1.1 +794 -0 ports/print/gnome-cups-manager/files/patch-ui_tooltip (new) 1.12 +33 -3 ports/print/gnome-cups-manager/pkg-plist 1.20 +1 -1 ports/print/libgnomecups/Makefile 1.1 +14 -0 ports/print/libgnomecups/files/patch-20_parse-dot-cups-lpoptions (new) 1.1 +17 -0 ports/print/libgnomecups/files/patch-21_fix-islocal (new) 1.1 +12 -0 ports/print/libgnomecups/files/patch-22_ignore-ipp-not-found (new) 1.1 +36 -0 ports/print/libgnomecups/files/patch-23_replace-set-printer-attrs (new) 1.1 +23 -0 ports/print/libgnomecups/files/patch-24_mem-leak (new) 1.1 +50 -0 ports/print/libgnomecups/files/patch-25_browsed_ppds (new) 1.7 +28 -2 ports/print/libgnomecups/pkg-plist