From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 25 10:00:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0138E106566C for ; Fri, 25 May 2012 10:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DEEE38FC14 for ; Fri, 25 May 2012 10:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4PA09CI098268 for ; Fri, 25 May 2012 10:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4PA09pT098267; Fri, 25 May 2012 10:00:09 GMT (envelope-from gnats) Date: Fri, 25 May 2012 10:00:09 GMT Message-Id: <201205251000.q4PA09pT098267@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rodrigo OSORIO Cc: Subject: Re: ports/166722: graphics/ufraw: port fails to build if " GTK" option is disabled and x11-toolkits/gtkimageview port is not installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rodrigo OSORIO List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 10:00:10 -0000 The following reply was made to PR ports/166722; it has been noted by GNATS. From: Rodrigo OSORIO To: bug-followup@FreeBSD.org Cc: bojan_petrovic@fastmail.fm Subject: Re: ports/166722: graphics/ufraw: port fails to build if "GTK" option is disabled and x11-toolkits/gtkimageview port is not installed Date: Fri, 25 May 2012 11:59:31 +0200 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Michael, Borjan Here is the Bojan fix with small changes. Also bump the portrevision. Thanks Bojan for you help. - rodrigo --d6Gm4EdcadzBjdND Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="ufraw.patch" diff -u graphics/ufraw/Makefile rodrigo/graphics/ufraw/Makefile --- graphics/ufraw/Makefile 2012-05-14 11:48:12.000000000 +0200 +++ graphics/ufraw/Makefile 2012-05-25 11:28:26.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= ufraw PORTVERSION= 0.18 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -80,6 +80,8 @@ .if defined(WITH_GTK) LIB_DEPENDS+= gtkimageview.0:${PORTSDIR}/x11-toolkits/gtkimageview PLIST_FILES+= bin/ufraw +.else +CONFIGURE_ARGS+= --without-gtk .endif .if defined(WITH_GNOME) --d6Gm4EdcadzBjdND--