From owner-freebsd-ruby@FreeBSD.ORG Sun Jun 23 03:40:01 2013 Return-Path: Delivered-To: ruby@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A027BA02 for ; Sun, 23 Jun 2013 03:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 943B71D24 for ; Sun, 23 Jun 2013 03:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r5N3e1Bn081476 for ; Sun, 23 Jun 2013 03:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r5N3e1Bw081475; Sun, 23 Jun 2013 03:40:01 GMT (envelope-from gnats) Date: Sun, 23 Jun 2013 03:40:01 GMT Message-Id: <201306230340.r5N3e1Bw081475@freefall.freebsd.org> To: ruby@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/179481: commit references a PR X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 03:40:01 -0000 The following reply was made to PR ports/179481; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179481: commit references a PR Date: Sun, 23 Jun 2013 03:36:37 +0000 (UTC) Author: swills Date: Sun Jun 23 03:33:41 2013 New Revision: 321608 URL: http://svnweb.freebsd.org/changeset/ports/321608 Log: - Make X11 dependency on ImageMagick optional PR: ports/179481 Submitted by: David Demelier Modified: head/graphics/rubygem-rmagick/Makefile (contents, props changed) Modified: head/graphics/rubygem-rmagick/Makefile ============================================================================== --- head/graphics/rubygem-rmagick/Makefile Sun Jun 23 02:26:26 2013 (r321607) +++ head/graphics/rubygem-rmagick/Makefile Sun Jun 23 03:33:41 2013 (r321608) @@ -8,10 +8,19 @@ MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby binding for ImageMagick -LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +OPTIONS_DEFINE= X11 +OPTIONS_DEFAULT= X11 + +.include + +.if ${PORT_OPTIONS:MX11} +LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick +.else +LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick-nox11 +.endif + .include _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"