From: Lars Wendler Date: Thu, 19 Jan 2017 02:43:30 +0000 (+0100) Subject: net-print/cups: Revbump to fix cupsd startup error with USE="-kerberos". X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7ee57377c41da4814963ba9a162d03bc466448d8;p=gentoo.git net-print/cups: Revbump to fix cupsd startup error with USE="-kerberos". This fixes Gentoo bug #606472. Package-Manager: Portage-2.3.3, Repoman-2.3.1 --- diff --git a/net-print/cups/cups-2.2.2.ebuild b/net-print/cups/cups-2.2.2-r1.ebuild similarity index 99% rename from net-print/cups/cups-2.2.2.ebuild rename to net-print/cups/cups-2.2.2-r1.ebuild index 047d637b6b20..0e8b61de1195 100644 --- a/net-print/cups/cups-2.2.2.ebuild +++ b/net-print/cups/cups-2.2.2-r1.ebuild @@ -145,6 +145,12 @@ pkg_setup() { } src_prepare() { + if ! use kerberos ; then + PATCHES+=( + "${FILESDIR}/${PN}-2.2.2-no_kerberos_config.patch" + ) + fi + default # Remove ".SILENT" rule for verbose output (bug 524338). diff --git a/net-print/cups/files/cups-2.2.2-no_kerberos_config.patch b/net-print/cups/files/cups-2.2.2-no_kerberos_config.patch new file mode 100644 index 000000000000..a26b3995c52c --- /dev/null +++ b/net-print/cups/files/cups-2.2.2-no_kerberos_config.patch @@ -0,0 +1,57 @@ +Don't add kerberos policies into cupsd config when no kerberos support was +compiled in. + +https://bugs.gentoo.org/606472 + +--- cups-2.2.2/conf/cupsd.conf.in ++++ cups-2.2.2/conf/cupsd.conf.in +@@ -134,49 +134,3 @@ + Order deny,allow + + +- +-# Set the kerberized printer/job policies... +- +- # Job/subscription privacy... +- JobPrivateAccess default +- JobPrivateValues default +- SubscriptionPrivateAccess default +- SubscriptionPrivateValues default +- +- # Job-related operations must be done by the owner or an administrator... +- +- AuthType Negotiate +- Order deny,allow +- +- +- +- AuthType Negotiate +- Require user @OWNER @SYSTEM +- Order deny,allow +- +- +- # All administration operations require an administrator to authenticate... +- +- AuthType Default +- Require user @SYSTEM +- Order deny,allow +- +- +- # All printer operations require a printer operator to authenticate... +- +- AuthType Default +- Require user @CUPS_DEFAULT_PRINTOPERATOR_AUTH@ +- Order deny,allow +- +- +- # Only the owner or an administrator can cancel or authenticate a job... +- +- AuthType Negotiate +- Require user @OWNER @CUPS_DEFAULT_PRINTOPERATOR_AUTH@ +- Order deny,allow +- +- +- +- Order deny,allow +- +-