The new lang/clang33 port installs it's binaries as clang33 and clang++33 which causes libtool to fail for various ports and ask for a "--tag" flag because it seems to detect tag based on the binary name it was called with. We already have a patch in our libtool port for that but it does not honor clang33 yet so I streamlined the patch to be similar to gcc also support further clang versions. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->autotools Over to maintainer (via the GNATS Auto Assign Tool)
Responsible Changed From-To: autotools->decke maintainer timeout
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 _______________________________________________ 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"
State Changed From-To: open->closed Committed. Thanks!