From owner-svn-ports-head@FreeBSD.ORG Sun Sep 1 13:02:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3A0B9803; Sun, 1 Sep 2013 13:02:57 +0000 (UTC) (envelope-from decke@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26C302A77; Sun, 1 Sep 2013 13:02:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r81D2vAv001889; Sun, 1 Sep 2013 13:02:57 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r81D2uWx001887; Sun, 1 Sep 2013 13:02:56 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201309011302.r81D2uWx001887@svn.freebsd.org> From: Bernhard Froehlich Date: Sun, 1 Sep 2013 13:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325855 - in head/devel/libtool: . files 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.14 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: Sun, 01 Sep 2013 13:02:57 -0000 Author: decke Date: Sun Sep 1 13:02:56 2013 New Revision: 325855 URL: http://svnweb.freebsd.org/changeset/ports/325855 Log: - Add support for lang/clang33 from ports which installs it's binaries as clang33 and clang++33. Right now libtool fails for various ports and aks for a "--tag" flag because it tries to detect tag based on the binary name but doesn't know about clang33. PR: ports/179809 Submitted by: myself Approved by: maintainer timeout (9 weeks) Modified: head/devel/libtool/Makefile (contents, props changed) head/devel/libtool/files/patch-libltdl_config_ltmain.sh (contents, props changed) Modified: head/devel/libtool/Makefile ============================================================================== --- head/devel/libtool/Makefile Sun Sep 1 12:58:10 2013 (r325854) +++ head/devel/libtool/Makefile Sun Sep 1 13:02:56 2013 (r325855) @@ -7,6 +7,7 @@ PORTNAME?= libtool PORTVERSION= 2.4.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool Modified: head/devel/libtool/files/patch-libltdl_config_ltmain.sh ============================================================================== --- head/devel/libtool/files/patch-libltdl_config_ltmain.sh Sun Sep 1 12:58:10 2013 (r325854) +++ head/devel/libtool/files/patch-libltdl_config_ltmain.sh Sun Sep 1 13:02:56 2013 (r325855) @@ -4,8 +4,8 @@ $opt_debug + + # FreeBSD-specific: where we install compilers with non-standard names -+ tag_compilers_CC="*cc cc* *gcc gcc* clang" -+ tag_compilers_CXX="*c++ c++* *g++ g++* clang++" ++ tag_compilers_CC="*cc cc* *gcc gcc* clang*" ++ tag_compilers_CXX="*c++ c++* *g++ g++* clang++*" + base_compiler=`set -- "$@"; echo $1` + + # If $tagname isn't set, then try to infer if the default "CC" tag applies