From owner-svn-ports-head@FreeBSD.ORG Thu Feb 20 20:16:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DFF47A7; Thu, 20 Feb 2014 20:16:45 +0000 (UTC) Received: from mail-yh0-x232.google.com (mail-yh0-x232.google.com [IPv6:2607:f8b0:4002:c01::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ABFAC1A57; Thu, 20 Feb 2014 20:16:44 +0000 (UTC) Received: by mail-yh0-f50.google.com with SMTP id 29so1294657yhl.9 for ; Thu, 20 Feb 2014 12:16:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=yFCmrotrXY4bl7rFtKlwebXvRbBsfWdXafNuDwu2k3Y=; b=VHAp/tessUjFWaw6tN4Lo3els6GcsjHKocc9KA+Zd++elgG2Qq0kyfeWbLefXBS7V1 9PH5DnLGzwVOsH8bO1jEmN+Tj8H+tDirkos4I9c9nR4axEv3VwQVvWsqIInRDMaw13IW B2E7ABf1cQmDstP3Oo91o5lYzfTNcH/CgDeAdaru+WJtiGO8/6ER0jn2+O8kR6M5pkH8 f4bUWznjRNUtZByv9d2pPrp8X3dKQVB23ei+DL23RUA6so3D8z7dp03uQlBz/64mU/Rb icM9ZCLEPxvslmgZHf3V2UeYidaVAd46EiquLHr8Tv83ZmHhbRBrQaf5whs1XVzSkzT4 JQ5A== X-Received: by 10.236.133.46 with SMTP id p34mr5691922yhi.157.1392927403750; Thu, 20 Feb 2014 12:16:43 -0800 (PST) Received: from [10.30.11.4] ([186.233.159.61]) by mx.google.com with ESMTPSA id m21sm10872124yhl.9.2014.02.20.12.16.15 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Feb 2014 12:16:42 -0800 (PST) Sender: =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= Message-ID: <53066291.6020003@freebsd.org> Date: Thu, 20 Feb 2014 17:16:17 -0300 From: "Danilo E. Gondolfo" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Brooks Davis Subject: Re: svn commit: r345162 - head/devel/ccons References: <201402192326.s1JNQ95R021875@svn.freebsd.org> <20140220035814.GA94224@lor.one-eyed-alien.net> In-Reply-To: <20140220035814.GA94224@lor.one-eyed-alien.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 20 Feb 2014 20:16:45 -0000 On 02/20/14 00:58, Brooks Davis wrote: > On Wed, Feb 19, 2014 at 11:26:09PM +0000, Danilo Egea Gondolfo wrote: >> Author: danilo >> Date: Wed Feb 19 23:26:09 2014 >> New Revision: 345162 >> URL: http://svnweb.freebsd.org/changeset/ports/345162 >> QAT: https://qat.redports.org/buildarchive/r345162/ >> >> Log: >> - Add libclang.so to LIB_DEPENDS >> >> Modified: >> head/devel/ccons/Makefile >> >> Modified: head/devel/ccons/Makefile >> ============================================================================== >> --- head/devel/ccons/Makefile Wed Feb 19 22:31:37 2014 (r345161) >> +++ head/devel/ccons/Makefile Wed Feb 19 23:26:09 2014 (r345162) >> @@ -3,6 +3,7 @@ >> >> PORTNAME= ccons >> PORTVERSION= r251 >> +PORTREVISION= 1 >> CATEGORIES= devel >> MASTER_SITES= GOOGLE_CODE >> >> @@ -14,7 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE >> >> BUILD_DEPENDS= llvm-config33:${PORTSDIR}/devel/llvm33 \ >> clang++33:${PORTSDIR}/lang/clang33 >> -LIB_DEPENDS= libncurses.so:${PORTSDIR}/devel/ncurses >> +LIB_DEPENDS= libncurses.so:${PORTSDIR}/devel/ncurses \ >> + libclang.so:${PORTSDIR}/lang/clang33 > > In practice I don't think will be a problem[0], but multiple ports provide > a libclang.so and they are not interoperable so you should depend on > something versioned. For now I'd probably do > > RUN_DEPENDS= clang++33:${PORTSDIR}/lang/clang33 I agree. Thanks! Danilo. > > -- Brooks > > [0] Packages will get the right dependency and the build dependency on > clang++33 will ensure it is installed in typical port setups. >