From owner-svn-ports-head@FreeBSD.ORG Wed Jun 10 00:43:13 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D4DF3C9; Wed, 10 Jun 2015 00:43:13 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B8B218FE; Wed, 10 Jun 2015 00:43:13 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5A0hDbY031629; Wed, 10 Jun 2015 00:43:13 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5A0hCHv031624; Wed, 10 Jun 2015 00:43:12 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201506100043.t5A0hCHv031624@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 10 Jun 2015 00:43:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389015 - head/print/cups-base X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2015 00:43:13 -0000 Author: jkim Date: Wed Jun 10 00:43:11 2015 New Revision: 389015 URL: https://svnweb.freebsd.org/changeset/ports/389015 Log: CUPS 2.x does not support OpenSSL any more. Switch to GNU TLS by default. MFH: 2015Q2 Modified: head/print/cups-base/Makefile head/print/cups-base/pkg-descr head/print/cups-base/pkg-descr.client head/print/cups-base/pkg-descr.image head/print/cups-base/pkg-plist Modified: head/print/cups-base/Makefile ============================================================================== --- head/print/cups-base/Makefile Tue Jun 9 23:41:41 2015 (r389014) +++ head/print/cups-base/Makefile Wed Jun 10 00:43:11 2015 (r389015) @@ -15,6 +15,9 @@ COMMENT= Common UNIX Printing System: ${ LICENSE= GPLv2 +LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ + libgcrypt.so:${PORTSDIR}/security/libgcrypt + CONFLICTS= LPRng-[0-9]* UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} @@ -37,7 +40,7 @@ CONFIGURE_ARGS+= --localstatedir=/var --with-domainsocket=${CUPS_SOCKET} \ --with-cachedir=${CUPS_CACHEDIR} \ --with-pam-module="unix" \ - --enable-ssl + --enable-gnutls CUPS_CACHEDIR?= /var/db/cups CUPS_SPOOLDIR= /var/spool/cups @@ -51,23 +54,20 @@ GROUPS= cups USERS= cups # UNIQUENAME must be set before bsd.port.pre.mk so OPTIONSFILE can be included -OPTIONS_SINGLE= SSL -OPTIONS_SINGLE_SSL= GNUTLS OPENSSL -OPTIONS_DEFAULT= OPENSSL OPTIONS_SUB= yes .if defined(CUPS_CLIENT) -PORTREVISION= 0 +PORTREVISION= 1 LICENSE= LGPL21 CUPS_SUFFIX= -client OPTIONS_RADIO= ZEROCONF OPTIONS_RADIO_ZEROCONF= AVAHI MDNSRESPONDER OPTIONS_DEFAULT+= MDNSRESPONDER .elif defined(CUPS_IMAGE) -PORTREVISION= 0 +PORTREVISION= 1 CUPS_SUFFIX= -image LICENSE= LGPL21 .else -PORTREVISION= 0 +PORTREVISION= 1 CUPS_SUFFIX= -base # No DOCS option. Files are needed by web interface. OPTIONS_DEFINE= DBUS ICONS LIBPAPER LIBUSB PAM XDG_OPEN @@ -128,17 +128,6 @@ PLIST_SUB+= OVERWRITE="@comment " CONFIGURE_ARGS+= --with-printcap=${PREFIX}/etc/printcap .endif -.if ${PORT_OPTIONS:MGNUTLS} -CONFIGURE_ARGS+= --disable-openssl --enable-gnutls -LIB_DEPENDS+= libgcrypt.so:${PORTSDIR}/security/libgcrypt \ - libgnutls.so:${PORTSDIR}/security/gnutls -.endif - -.if ${PORT_OPTIONS:MOPENSSL} -USE_OPENSSL= yes -CONFIGURE_ARGS+= --disable-gnutls --enable-openssl -.endif - # Don't use CONFIGURE_ARGS+=--without-* to disable web interpreters because it # will set the path of the interpreter to "no" and set it's existence to TRUE. .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) Modified: head/print/cups-base/pkg-descr ============================================================================== --- head/print/cups-base/pkg-descr Tue Jun 9 23:41:41 2015 (r389014) +++ head/print/cups-base/pkg-descr Wed Jun 10 00:43:11 2015 (r389015) @@ -17,7 +17,5 @@ non-PostScript printers. Sample drivers that use these filters. This software is available in the cups-pstoraster port. -LICENSE: GPL2 or later with exception to link with OpenSSL - WWW: http://www.cups.org/ [original text by greid@ukug.uk.freebsd.org] Modified: head/print/cups-base/pkg-descr.client ============================================================================== --- head/print/cups-base/pkg-descr.client Tue Jun 9 23:41:41 2015 (r389014) +++ head/print/cups-base/pkg-descr.client Wed Jun 10 00:43:11 2015 (r389015) @@ -1,5 +1,3 @@ This provides libcups for applications to access CUPS. -LICENSE: LGPL2 or later with exception to link with OpenSSL - WWW: http://www.cups.org/ Modified: head/print/cups-base/pkg-descr.image ============================================================================== --- head/print/cups-base/pkg-descr.image Tue Jun 9 23:41:41 2015 (r389014) +++ head/print/cups-base/pkg-descr.image Wed Jun 10 00:43:11 2015 (r389015) @@ -1,5 +1,3 @@ This provides libcupsimage for applications to process CUPS raster files. -LICENSE: LGPL2 or later with exception to link with OpenSSL - WWW: http://www.cups.org/ Modified: head/print/cups-base/pkg-plist ============================================================================== --- head/print/cups-base/pkg-plist Tue Jun 9 23:41:41 2015 (r389014) +++ head/print/cups-base/pkg-plist Wed Jun 10 00:43:11 2015 (r389015) @@ -42,7 +42,9 @@ lib/libcupsmime.so.1 lib/libcupsppdc.so lib/libcupsppdc.so.1 libexec/cups/backend/http +libexec/cups/backend/https libexec/cups/backend/ipp +libexec/cups/backend/ipps libexec/cups/backend/lpd libexec/cups/backend/snmp libexec/cups/backend/socket