From owner-freebsd-gnome@FreeBSD.ORG Mon Feb 11 06:07:38 2008 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB7816A468 for ; Mon, 11 Feb 2008 06:07:38 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from QMTA08.emeryville.ca.mail.comcast.net (qmta08.emeryville.ca.mail.comcast.net [76.96.30.80]) by mx1.freebsd.org (Postfix) with ESMTP id B084713C474 for ; Mon, 11 Feb 2008 06:07:38 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from OMTA07.emeryville.ca.mail.comcast.net ([76.96.30.59]) by QMTA08.emeryville.ca.mail.comcast.net with comcast id o2c51Y0081GXsucA80Ge00; Mon, 11 Feb 2008 05:51:28 +0000 Received: from kirby.cyberbotx.com ([68.43.195.82]) by OMTA07.emeryville.ca.mail.comcast.net with comcast id o5rd1Y0021n8LeU8T00000; Mon, 11 Feb 2008 05:51:38 +0000 X-Authority-Analysis: v=1.0 c=1 a=R5MmMdKxbcoA:10 a=7kiTle3lKNtkRwzPy_EA:9 a=ynMthG0nP-bDATSQUygA:7 a=zBjs4c8p2UJzX7N65_11S14rwgIA:4 a=SV7veod9ZcQA:10 a=M3PvEdNFSBYA:10 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id D3453C180; Mon, 11 Feb 2008 00:51:36 -0500 (EST) To: FreeBSD-gnats-submit@freebsd.org From: Naram Qashat X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20080211055136.D3453C180@kirby.cyberbotx.com> Date: Mon, 11 Feb 2008 00:51:36 -0500 (EST) Cc: gnome@FreeBSD.org Subject: [PATCH] print/libgnomeprint: Respect if user wants to disable CUPS X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Feb 2008 06:07:38 -0000 >Submitter-Id: current-users >Originator: Naram Qashat >Organization: >Confidential: no >Synopsis: [PATCH] print/libgnomeprint: Respect if user wants to disable CUPS >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.3-RELEASE i386 >Environment: System: FreeBSD kirby.cyberbotx.com 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Wed Jan 23 16:14:04 EST 2008 >Description: - Respect if the user has defined WITHOUT_CUPS when they want to disable CUPS within libgnomeprint. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- libgnomeprint-2.18.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/print/libgnomeprint/Makefile /kirby/shared/ports/libgnomeprint/Makefile --- /usr/ports/print/libgnomeprint/Makefile 2008-01-31 09:56:02.000000000 -0500 +++ /kirby/shared/ports/libgnomeprint/Makefile 2008-02-11 00:50:24.000000000 -0500 @@ -41,7 +41,7 @@ .include -.if defined(WITH_CUPS) || exists(${LOCALBASE}/lib/libcups.so) +.if defined(WITH_CUPS) || (exists(${LOCALBASE}/lib/libcups.so) && !defined(WITHOUT_GUPS)) CONFIGURE_ARGS+= --with-cups LIB_DEPENDS+= gnomecups-1.0:${PORTSDIR}/print/libgnomecups PLIST_SUB+= CUPS:="" --- libgnomeprint-2.18.3.patch ends here ---