[131700] trunk/dports/lang

jeremyhu at macports.org jeremyhu at macports.org
Thu Jan 15 19:08:17 PST 2015


Revision: 131700
          https://trac.macports.org/changeset/131700
Author:   jeremyhu at macports.org
Date:     2015-01-15 19:08:17 -0800 (Thu, 15 Jan 2015)
Log Message:
-----------
llvm: Obsolete llvm-2.9 through 3.0 and related ports

Modified Paths:
--------------
    trunk/dports/lang/dragonegg-3.0/Portfile
    trunk/dports/lang/dragonegg-3.1/Portfile
    trunk/dports/lang/llvm-2.9/Portfile
    trunk/dports/lang/llvm-3.0/Portfile
    trunk/dports/lang/llvm-3.1/Portfile

Removed Paths:
-------------
    trunk/dports/lang/dragonegg-3.0/files/
    trunk/dports/lang/dragonegg-3.1/files/
    trunk/dports/lang/llvm-2.9/files/
    trunk/dports/lang/llvm-3.0/files/
    trunk/dports/lang/llvm-3.1/files/

Modified: trunk/dports/lang/dragonegg-3.0/Portfile
===================================================================
--- trunk/dports/lang/dragonegg-3.0/Portfile	2015-01-16 02:47:18 UTC (rev 131699)
+++ trunk/dports/lang/dragonegg-3.0/Portfile	2015-01-16 03:08:17 UTC (rev 131700)
@@ -2,145 +2,25 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup select        1.0
+PortGroup               obsolete 1.0
 
+set new_version         3.4
+
 set llvm_version        3.0
-set llvm_version_no_dot 30
+version                 ${llvm_version}
+revision                9
+epoch                   1
 name                    dragonegg-${llvm_version}
 
-subport                 ${name}-gcc-4.5 {
-    revision            6
-    set gcc_version     4.5
-    set gcc_version_no_dot 45
-}
-subport                 ${name}-gcc-4.6 {
-    revision            7
-    set gcc_version     4.6
-    set gcc_version_no_dot 46
-}
+subport                 ${name}-gcc-4.5 { set gcc_version 4.5 }
+subport                 ${name}-gcc-4.6 { set gcc_version 4.6 }
 
-dist_subdir             llvm
 categories              lang
 platforms               darwin
-maintainers             jeremyhu openmaintainer
 license                 GPL-2
 
-description             DragonEgg is a LLVM plug-in for GCC
-long_description        DragonEgg replaces GCC optimizers and code generators \
-                        by the LLVM optimizing infrastructure. It supersedes \
-                        llvm-gcc.
-
-homepage                http://dragonegg.llvm.org/
-
 if {${subport} eq ${name}} {
-version                 ${llvm_version}
-epoch                   1
-revision                8
-
-distfiles
-
-set gcc_version         4.6
-
-depends_run             port:${name}-gcc-${gcc_version}
-
-use_configure           no
-build                   {}
-destroot {
-    # For base
-    foreach binary {gcc cpp c++ g++ gcj gcov gfortran} {
-        ln -s dragonegg-${llvm_version}-${binary}-mp-${gcc_version} ${destroot}${prefix}/bin/dragonegg-${llvm_version}-${binary}
-    }
-}
-
+    replaced_by dragonegg-${new_version}
 } else {
-
-depends_lib             port:llvm-${llvm_version} port:gcc${gcc_version_no_dot}
-depends_run             port:gcc_select
-
-# gcc needs to match our arch, not the other way around
-# We build +universal just fine in order to support whatever arch gcc is
-depends_skip_archcheck-append gcc${gcc_version_no_dot}
-
-#fetch.type              svn
-#svn.revision            146339
-#version                 ${llvm_version}-r${svn.revision}
-#worksrcdir              trunk
-#svn.url                 http://llvm.org/svn/llvm-project/dragonegg/trunk
-
-version                 ${llvm_version}
-epoch                   1
-master_sites            http://llvm.org/releases/${version}/
-extract.suffix          .tar.gz
-distfiles               dragonegg-${version}${extract.suffix}
-worksrcdir              dragonegg-${version}.src
-checksums           sha1    9be8f055df814e56ea3585156da8c7e457f2cd7b \
-                    rmd160  93aa8a463b6b5e1fb9cc1ee0a7c4d310a78ea64f \
-                    sha256  72df1fd2e901b254ab8d1b5e7b93c7104751a613aca531f1483f9a637a5f6827
-
-platform darwin {
-    if {${os.major} >= 13} {
-        depends_lib
-        depends_run
-        pre-fetch {
-            ui_error "$name is not supported on Mavericks or later."
-            error "unsupported platform"
-        }
-    }
+    replaced_by dragonegg-${new_version}-gcc-${gcc_version}
 }
-
-pre-fetch {
-    ui_msg "Please remember to keep dragonegg and llvm in phase by updating llvm-${llvm_version} first."
-}
-
-use_configure no
-
-select.group    gcc
-select.file     ${worksrcpath}/dragonegg-${llvm_version}-gcc${gcc_version_no_dot}
-
-build.target
-
-# g++-4.0 fails to build some of the newer C++ for ppc
-# Intel looks ok, but I prefer using gcc-4.2 for consistency
-compiler.blacklist gcc-4.0
-
-patchfiles revision.patch missing-includes.patch
-
-post-extract {
-    file copy ${filespath}/dragonegg-select ${select.file}
-    reinplace "s:LLVM_VERSION:${llvm_version}:" ${select.file}
-    reinplace "s:GCC_VERSION:${gcc_version}:" ${select.file}
-}
-
-variant universal {
-    post-patch {
-        reinplace "/-MD -MP/d" ${worksrcpath}/Makefile
-    }
-}
-
-set cxx_stdlibflags {}
-if {[string match *clang* ${configure.cxx}]} {
-    set cxx_stdlibflags -stdlib=${configure.cxx_stdlib}
-}
-build.env-append \
-    LLVM_CONFIG=${prefix}/bin/llvm-config-mp-${llvm_version} \
-    GCC=${prefix}/bin/gcc-mp-${gcc_version} \
-    CC="${configure.cc} ${configure.cppflags} ${configure.cflags} [get_canonical_archflags cc]" \
-    CXX="${configure.cxx} ${configure.cppflags} ${configure.cxxflags} ${cxx_stdlibflags} [get_canonical_archflags cxx]"
-
-destroot {
-    xinstall -m 755 -d ${destroot}${prefix}/libexec/dragonegg
-    xinstall -m 755 ${worksrcpath}/dragonegg.so ${destroot}${prefix}/libexec/dragonegg/llvm${llvm_version_no_dot}gcc${gcc_version_no_dot}.so
-
-    foreach binary {gcc cpp c++ g++ gcj gcov gfortran} {
-        set path ${destroot}${prefix}/bin/dragonegg-${llvm_version}-${binary}-mp-${gcc_version}
-        xinstall -m 755 ${filespath}/dragonegg-gcc ${path}
-        reinplace "s:PLUGIN:${prefix}/libexec/dragonegg/llvm${llvm_version_no_dot}gcc${gcc_version_no_dot}.so:" ${path}
-        reinplace "s:PREFIX:${prefix}:" ${path}
-        reinplace "s:GCC_VERSION:${gcc_version}:" ${path}
-        reinplace "s:BINARY:${binary}:" ${path}
-    }
-}
-
-}
-
-livecheck.type          none

Modified: trunk/dports/lang/dragonegg-3.1/Portfile
===================================================================
--- trunk/dports/lang/dragonegg-3.1/Portfile	2015-01-16 02:47:18 UTC (rev 131699)
+++ trunk/dports/lang/dragonegg-3.1/Portfile	2015-01-16 03:08:17 UTC (rev 131700)
@@ -2,151 +2,26 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup select        1.0
+PortGroup               obsolete 1.0
 
+set new_version         3.4
+
 set llvm_version        3.1
-set llvm_version_no_dot 31
+version                 ${llvm_version}
+revision                9
+epoch                   1
 name                    dragonegg-${llvm_version}
 
-subport                 ${name}-gcc-4.5 {
-    revision            6
-    set gcc_version     4.5
-    set gcc_version_no_dot 45
-}
-subport                 ${name}-gcc-4.6 {
-    revision            7
-    set gcc_version     4.6
-    set gcc_version_no_dot 46
-}
-subport                 ${name}-gcc-4.7 {
-    revision            8
-    set gcc_version     4.7
-    set gcc_version_no_dot 47
-}
+subport                 ${name}-gcc-4.5 { set gcc_version 4.5 }
+subport                 ${name}-gcc-4.6 { set gcc_version 4.6 }
+subport                 ${name}-gcc-4.7 { set gcc_version 4.7 }
 
-dist_subdir             llvm
 categories              lang
 platforms               darwin
-maintainers             jeremyhu openmaintainer
 license                 GPL-2
 
-description             DragonEgg is a LLVM plug-in for GCC
-long_description        DragonEgg replaces GCC optimizers and code generators \
-                        by the LLVM optimizing infrastructure. It supersedes \
-                        llvm-gcc.
-
-homepage                http://dragonegg.llvm.org/
-
 if {${subport} eq ${name}} {
-version                 ${llvm_version}
-epoch                   1
-revision                5
-
-distfiles
-
-set gcc_version         4.6
-
-depends_run             port:${name}-gcc-${gcc_version}
-
-use_configure           no
-build                   {}
-destroot {
-    # For base
-    foreach binary {gcc cpp c++ g++ gcj gcov gfortran} {
-        ln -s dragonegg-${llvm_version}-${binary}-mp-${gcc_version} ${destroot}${prefix}/bin/dragonegg-${llvm_version}-${binary}
-    }
-}
-
+    replaced_by dragonegg-${new_version}
 } else {
-
-depends_lib             port:llvm-${llvm_version} port:gcc${gcc_version_no_dot}
-depends_run             port:gcc_select
-
-# gcc needs to match our arch, not the other way around
-# We build +universal just fine in order to support whatever arch gcc is
-depends_skip_archcheck-append gcc${gcc_version_no_dot}
-
-#fetch.type              svn
-#svn.revision            155781
-#version                 ${llvm_version}-r${svn.revision}
-#worksrcdir              trunk
-#svn.url                 http://llvm.org/svn/llvm-project/dragonegg/trunk
-#worksrcdir              release_31
-#svn.url                 http://llvm.org/svn/llvm-project/dragonegg/branches/release_31
-
-version                 ${llvm_version}
-epoch                   1
-master_sites            http://llvm.org/releases/${version}/
-extract.suffix          .tar.gz
-distname                dragonegg-${version}.src
-checksums           sha1    98e865f16c76bddb3f6969c733042677e306d63c \
-                    rmd160  303e98f4d33f87fe018505a03ae1265d3c5a080c \
-                    sha256  a11d1379fab772bc4a747e6f5c6a27acf5fe03f27b5a152af67f63d5fbc4a876
-
-platform darwin {
-    if {${os.major} >= 13} {
-        depends_lib
-        depends_run
-        pre-fetch {
-            ui_error "$name is not supported on Mavericks or later."
-            error "unsupported platform"
-        }
-    }
+    replaced_by dragonegg-${new_version}-gcc-${gcc_version}
 }
-
-pre-fetch {
-    ui_msg "Please remember to keep dragonegg and llvm in phase by updating llvm-${llvm_version} first."
-}
-
-use_configure no
-
-select.group    gcc
-select.file     ${worksrcpath}/dragonegg-${llvm_version}-gcc${gcc_version_no_dot}
-
-build.target
-
-# g++-4.0 fails to build some of the newer C++ for ppc
-# Intel looks ok, but I prefer using gcc-4.2 for consistency
-compiler.blacklist gcc-4.0
-
-patchfiles missing-includes.patch cstring.patch
-
-post-extract {
-    file copy ${filespath}/dragonegg-select ${select.file}
-    reinplace "s:LLVM_VERSION:${llvm_version}:" ${select.file}
-    reinplace "s:GCC_VERSION:${gcc_version}:" ${select.file}
-}
-
-variant universal {
-    post-patch {
-        reinplace "/-MD -MP/d" ${worksrcpath}/Makefile
-    }
-}
-
-set cxx_stdlibflags {}
-if {[string match *clang* ${configure.cxx}]} {
-    set cxx_stdlibflags -stdlib=${configure.cxx_stdlib}
-}
-build.env-append \
-    LLVM_CONFIG=${prefix}/bin/llvm-config-mp-${llvm_version} \
-    GCC=${prefix}/bin/gcc-mp-${gcc_version} \
-    CC="${configure.cc} ${configure.cppflags} ${configure.cflags} [get_canonical_archflags cc]" \
-    CXX="${configure.cxx} ${configure.cppflags} ${configure.cxxflags} ${cxx_stdlibflags} [get_canonical_archflags cxx]"
-
-destroot {
-    xinstall -m 755 -d ${destroot}${prefix}/libexec/dragonegg
-    xinstall -m 755 ${worksrcpath}/dragonegg.so ${destroot}${prefix}/libexec/dragonegg/llvm${llvm_version_no_dot}gcc${gcc_version_no_dot}.so
-
-    foreach binary {gcc cpp c++ g++ gcj gcov gfortran} {
-        set path ${destroot}${prefix}/bin/dragonegg-${llvm_version}-${binary}-mp-${gcc_version}
-        xinstall -m 755 ${filespath}/dragonegg-gcc ${path}
-        reinplace "s:PLUGIN:${prefix}/libexec/dragonegg/llvm${llvm_version_no_dot}gcc${gcc_version_no_dot}.so:" ${path}
-        reinplace "s:PREFIX:${prefix}:" ${path}
-        reinplace "s:GCC_VERSION:${gcc_version}:" ${path}
-        reinplace "s:BINARY:${binary}:" ${path}
-    }
-}
-
-}
-
-livecheck.type          none

Modified: trunk/dports/lang/llvm-2.9/Portfile
===================================================================
--- trunk/dports/lang/llvm-2.9/Portfile	2015-01-16 02:47:18 UTC (rev 131699)
+++ trunk/dports/lang/llvm-2.9/Portfile	2015-01-16 03:08:17 UTC (rev 131700)
@@ -1,343 +1,22 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup select        1.0
+PortGroup               obsolete 1.0
 
+set new_version         3.4
+
 set llvm_version        2.9
-revision                14
+version                 ${llvm_version}
+revision                15
+epoch                   1
 name                    llvm-${llvm_version}
 subport                 clang-${llvm_version} {}
-set suffix              mp-${llvm_version}
-set sub_prefix          ${prefix}/libexec/llvm-${llvm_version}
-dist_subdir             llvm
 categories              lang
 platforms               darwin
 license                 NCSA
-maintainers             jeremyhu larryv
 
-platform darwin {
-    if {${os.major} >= 13} {
-        depends_lib
-        depends_run
-        pre-fetch {
-            ui_error "$name is not supported on Mavericks or later."
-            error "unsupported platform"
-        }
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    homepage            http://llvm.org/
-    description         llvm is a next generation compiler infrastructure
-    long_description    The LLVM Core libraries provide a modern source- and \
-                        target-independent optimizer, along with code \
-                        generation support for many popular CPUs (as well as \
-                        some less common ones!) These libraries are built \
-                        around a well specified code representation known as \
-                        the LLVM intermediate representation ("LLVM IR").
-
-    depends_lib         port:libffi
-    depends_run         bin:perl:perl5 port:llvm_select
-} elseif {${subport} == "clang-${llvm_version}"} {
-    homepage            http://clang.llvm.org/
-    description         C, C++, Objective C and Objective C++ compiler
-    long_description    Clang is an "LLVM native" C/C++/Objective-C compiler, \
-                        which aims to deliver amazingly fast compiles (e.g. \
-                        about 3x faster than GCC when compiling Objective-C \
-                        code in a debug configuration), extremely useful error \
-                        and warning messages and to provide a platform for \
-                        building great source level tools. The included Clang \
-                        Static Analyzer is a tool that automatically finds bugs in \
-                        your code, and is a great example of the sort of tool \
-                        that can be built using the Clang frontend as a \
-                        library to parse C/C++ code.
-
-    depends_lib         port:llvm-${llvm_version} port:libffi
-    depends_run         port:clang_select port:ld64
-    depends_extract     bin:svn:subversion
-    depends_build       port:cctools
-    depends_skip_archcheck-append cctools ld64 subversion
-
-    default_variants    +analyzer
-}
-
-#fetch.type              svn
-#svn.revision            163481
-#set compiler_rt_rev     ${svn.revision}
-#set libcxx_rev          ${svn.revision}
-#version                 ${llvm_version}-r${svn.revision}
-#worksrcdir              trunk
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/trunk
-#worksrcdir              release_31
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/branches/release_31
-#default_variants-append +assertions
-
-version                 ${llvm_version}
-set compiler_rt_rev     128674
-set libcxx_rev          ${compiler_rt_rev}
-epoch                   1
-master_sites            http://llvm.org/releases/${version}
-extract.suffix          .tgz
-distfiles               llvm-${version}${extract.suffix}
-worksrcdir              llvm-${version}
-
-checksums               llvm-${version}${extract.suffix} \
-                        sha1    500f587f840199ac53c4fc7572839d08fa9d9123 \
-                        rmd160  caeaa067fda1eb34196b356a087645f83731cfb7 \
-                        sha256  661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779 \
-                        clang-${version}${extract.suffix} \
-                        sha1    5fd3b5cec050ec12858c1602b23cf096282ad4a4 \
-                        rmd160  4ab79cbd0e2ad25a2272e6ee2fbbf546818dbd73 \
-                        sha256  70c41f3f782a71cbaa7bc8d6ea29fce4263ad3e8558dfecc6dc11cdef17909df
-
-patchfiles      install_target.patch \
-                0001-Add-a-few-missing-template-keywords.patch \
-                tiger-shlib.patch \
-                0003-Include-pthread.h-before-we-use-pthread_self-pthread.patch
-
-patch.pre_args  -p1
-
 if {${subport} == "clang-${llvm_version}"} {
-    if {${distfiles} != ""} {
-        distfiles-append     clang-${version}${extract.suffix}
-    }
-
-    patchfiles-append   tiger-shlib-clang.patch \
-                        scan-build-PR-35006.patch \
-                        0002-include-clang-AST-StmtIterator.h-std-pair-should-be-.patch
-
-    build.target        clang-only
-    destroot.target     install-clang
+    replaced_by clang-${new_version}
+} else {
+    replaced_by llvm-${new_version}
 }
-
-build.env-append        VERBOSE=1 \
-                        REQUIRES_RTTI=1
-destroot.env-append     VERBOSE=1 \
-                        REQUIRES_RTTI=1
-configure.cppflags
-configure.ldflags
-configure.pre_args-delete --prefix=${prefix}
-configure.args          --enable-bindings=none --enable-libffi --enable-shared --enable-jit \
-                        --enable-optimized --disable-profiling --enable-pic \
-                        --enable-debug-symbols --disable-debug-runtime \
-                        --prefix="${sub_prefix}"
-
-if {${subport} == "llvm-${llvm_version}"} {
-    select.group        llvm
-    select.file         ${filespath}/mp-${subport}
-} elseif {${subport} == "clang-${llvm_version}"} {
-    select.group        clang
-    select.file         ${filespath}/mp-${subport}
-}
-
-# g++-4.0 fails to build some of the newer C++ for ppc
-# Intel looks ok, but I prefer using gcc-4.2 for consistency
-compiler.blacklist gcc-4.0
-
-variant universal {
-    build.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-    destroot.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-
-    post-extract {
-        # workaround a bug in Apple's shipped gcc driver-driver, patched in
-        # ours with driverdriver-num_infiles.patch
-        if {${configure.compiler} == "gcc-4.0" ||
-            ${configure.compiler} == "gcc-4.2" ||
-            ${configure.compiler} == "llvm-gcc-4.2"} {
-            system "echo \"static int ___ignoreme;\" > ${worksrcpath}/tools/llvm-shlib/ignore.c"
-        }
-    }
-}
-
-variant assertions description "Enable assertions for error detection (has performance impacts, especially on JIT)" {
-    configure.args-append --enable-assertions
-}
-
-platform darwin {
-    if {${build_arch} eq "i386"} {
-        configure.pre_args-append --build=i686-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc"} {
-        configure.pre_args-append --build=powerpc-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc64"} {
-        configure.pre_args-append --build=powerpc64-apple-darwin${os.major}
-    } else {
-        configure.pre_args-append --build=${build_arch}-apple-darwin${os.major}
-    }
-
-    if {[string match "*ppc*" [get_canonical_archs]]} {
-        # http://trac.macports.org/ticket/33987
-        configure.args-append --with-optimize-option=-Os
-    }
-}
-
-platform darwin 8 {
-    # Tiger's DevTools make has issues with the nested ifs in compiler-rt
-    depends_run-append      port:gmake
-    build.cmd               ${prefix}/bin/gmake
-
-    post-configure {
-        reinplace "/^RPATH/s/=.*/=/" ${worksrcpath}/Makefile.config
-    }
-}
-
-post-extract {
-    if {${subport} == "clang-${llvm_version}"} {
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/trunk clang"
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/branches/release_30 clang"
-        file rename ${workpath}/clang-${llvm_version} ${worksrcpath}/tools/clang
-
-        system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt"
-        #system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/branches/release_30 compiler-rt"
-        #file rename ${workpath}/compiler-rt-${llvm_version} ${worksrcpath}/projects/compiler-rt
-
-        #system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/trunk libcxx"
-        #system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/branches/release_30 libcxx"
-        #file rename ${workpath}/libcxx-${llvm_version} ${worksrcpath}/projects/libcxx
-    }
-}
-
-post-patch {
-    if {${subport} == "llvm-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33207
-        reinplace "/LLVMINTERP/s/-lli/-lli-${suffix}/" ${worksrcpath}/tools/llvm-ld/llvm-ld.cpp
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33272
-        if {![variant_isset arm_runtime]} {
-            reinplace {/^RuntimeLibrary.darwin.Configs/ s/arm[^ ]* *//g} ${worksrcpath}/tools/clang/runtime/Makefile
-            reinplace {/^SubDirs/ s/arm//} ${worksrcpath}/projects/compiler-rt/lib/Makefile.mk
-            reinplace {/^UniversalArchs/ s/arm[^ )]* *//g} ${worksrcpath}/projects/compiler-rt/make/platform/clang_darwin.mk
-            reinplace {/^Configs/ s/arm[^ )]* *//g} ${worksrcpath}/projects/compiler-rt/make/platform/clang_darwin.mk
-        }
- 
-        reinplace {s/VERBOSE := 0/VERBOSE := 1/} ${worksrcpath}/projects/compiler-rt/make/config.mk
-    }
-}
-
-post-destroot {
-    file mkdir ${destroot}${prefix}/share/doc
-    file rename ${destroot}${sub_prefix}/docs/llvm ${destroot}${prefix}/share/doc/${subport}
-
-    foreach bin [glob ${destroot}${sub_prefix}/bin/*] {
-        set bin_filename [string map "${sub_prefix} ${prefix}" ${bin}]-${suffix}
-        set exec_path [string map "${destroot}${sub_prefix} ${sub_prefix}" ${bin}]
-
-        xinstall -m 755 "${filespath}/llvm-bin" "${bin_filename}"
-        reinplace "s:EXEC_PATH:${exec_path}:" "${bin_filename}"
-    }
-
-    if {${subport} == "llvm-${llvm_version}"} {
-        foreach man [glob ${destroot}${sub_prefix}/share/man/man1/*.1] {
-            set basename [string map "${destroot}${sub_prefix}/share/man/man1/ {}" ${man}]
-            file rename ${man} ${destroot}${prefix}/share/man/man1/[string map ".1 -${suffix}.1" ${basename}]
-        }
-
-        foreach liba [glob ${destroot}${sub_prefix}/lib/*dylib] {
-            set liba_nodr [string map "${destroot} {}" ${liba}]
-            system "install_name_tool -id ${liba_nodr} ${liba}"
-
-            foreach libb [glob ${destroot}${sub_prefix}/lib/*dylib] {
-                set libb_base [string map "${destroot}${sub_prefix}/lib/ {}" ${libb}]
-                set libb_nodr [string map "${destroot} {}" ${libb}]
-
-                system "install_name_tool -change @executable_path/../lib/${libb_base} ${libb_nodr} ${liba}"
-            }
-        }
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        #system "ditto ${worksrcpath}/projects/libcxx/include ${destroot}${sub_prefix}/lib/c++/v1"
-
-        # http://trac.macports.org/ticket/33207
-        ln -s ${prefix}/libexec/ld64/ld ${destroot}${sub_prefix}/bin/ld
-
-        system "install_name_tool -id ${sub_prefix}/lib/libclang.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}svn.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}svn.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    variant ocaml description {Enable generation of OCaml binding} {
-        depends_lib-append   port:ocaml
-
-        configure.args-delete --enable-bindings=none
-        configure.args-append --enable-bindings=ocaml
-
-        destroot.args-append  OVERRIDE_libdir=${sub_prefix}/lib
-    }
-} elseif {${subport} == "clang-${llvm_version}"} {
-    variant arm_runtime description {Build and install the arm runtime for iOS development (requires iOS SDK)} {}
-
-    # The iOS SDK was shipped with all Xcode releases after 4.0
-    if {[info exists xcodeversion] && [vercmp "4.0" ${xcodeversion}] <= 0} {
-       default_variants-append +arm_runtime
-    }
-
-    set pythonver ""
-    set pythonverdot ""
-
-    if {![variant_isset python25] && ![variant_isset python26]} {
-        default_variants-append +python27
-    }
-
-    variant python25 conflicts python26 python27 description {Use python 2.5} {
-        set pythonver 25
-        set pythonverdot 2.5
-        depends_build-append port:python25
-    }
-
-    variant python26 conflicts python25 python27 description {Use python 2.6} {
-        set pythonver 26
-        set pythonverdot 2.6
-        depends_build-append port:python26
-    }
-
-    variant python27 conflicts python25 python26 description {Use python 2.7} {
-        set pythonver 27
-        set pythonverdot 2.7
-        depends_build-append port:python27
-    }
-
-    variant analyzer description {Install clang static analyzer} {
-        if {[string equal "${pythonver}" ""]} {
-            ui_error "You must select a python variant to use the clang static analyzer (+analyzer)"
-            error "Invalid variant combination"
-        }
-
-        depends_run-append port:perl5 port:python${pythonver}
-
-        post-patch {
-            reinplace "s|/usr/bin/env perl|${prefix}/bin/perl5|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/ccc-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/c++-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/scan-build
-            reinplace "s|/usr/bin/env python|${prefix}/bin/python${pythonverdot}|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/set-xcode-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-view/scan-view
-        }
-
-        post-destroot {
-            file mkdir ${destroot}${sub_prefix}/libexec
-            file copy ${worksrcpath}/tools/clang/tools/scan-build ${destroot}${sub_prefix}/libexec/scan-build
-            file copy ${worksrcpath}/tools/clang/tools/scan-view ${destroot}${sub_prefix}/libexec/scan-view
-
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-build/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/Resources/.svn
-
-            ln -s ${sub_prefix}/libexec/scan-build/scan-build ${destroot}${sub_prefix}/bin/scan-build
-            ln -s ${sub_prefix}/libexec/scan-view/scan-view ${destroot}${sub_prefix}/bin/scan-view
-            ln -s ${sub_prefix}/bin ${destroot}${sub_prefix}/libexec/scan-build/bin
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-build-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-build:" "${destroot}${prefix}/bin/scan-build-${suffix}"
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-view-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-view:" "${destroot}${prefix}/bin/scan-view-${suffix}"
-        }
-    }
-}
-
-livecheck.type          none

Modified: trunk/dports/lang/llvm-3.0/Portfile
===================================================================
--- trunk/dports/lang/llvm-3.0/Portfile	2015-01-16 02:47:18 UTC (rev 131699)
+++ trunk/dports/lang/llvm-3.0/Portfile	2015-01-16 03:08:17 UTC (rev 131700)
@@ -1,340 +1,22 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup select        1.0
+PortGroup               obsolete 1.0
 
-set llvm_version        3.0
-revision                13
+set new_version         3.4
+
+set llvm_version        2.9
+version                 ${llvm_version}
+revision                14
+epoch                   1
 name                    llvm-${llvm_version}
 subport                 clang-${llvm_version} {}
-set suffix              mp-${llvm_version}
-set sub_prefix          ${prefix}/libexec/llvm-${llvm_version}
-dist_subdir             llvm
 categories              lang
 platforms               darwin
 license                 NCSA
-maintainers             jeremyhu larryv
 
-platform darwin {
-    if {${os.major} >= 13} {
-        depends_lib
-        depends_run
-        pre-fetch {
-            ui_error "$name is not supported on Mavericks or later."
-            error "unsupported platform"
-        }
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    homepage            http://llvm.org/
-    description         llvm is a next generation compiler infrastructure
-    long_description    The LLVM Core libraries provide a modern source- and \
-                        target-independent optimizer, along with code \
-                        generation support for many popular CPUs (as well as \
-                        some less common ones!) These libraries are built \
-                        around a well specified code representation known as \
-                        the LLVM intermediate representation ("LLVM IR").
-
-    depends_lib         port:libffi
-    depends_run         bin:perl:perl5 port:llvm_select
-} elseif {${subport} == "clang-${llvm_version}"} {
-    homepage            http://clang.llvm.org/
-    description         C, C++, Objective C and Objective C++ compiler
-    long_description    Clang is an "LLVM native" C/C++/Objective-C compiler, \
-                        which aims to deliver amazingly fast compiles (e.g. \
-                        about 3x faster than GCC when compiling Objective-C \
-                        code in a debug configuration), extremely useful error \
-                        and warning messages and to provide a platform for \
-                        building great source level tools. The included Clang \
-                        Static Analyzer is a tool that automatically finds bugs in \
-                        your code, and is a great example of the sort of tool \
-                        that can be built using the Clang frontend as a \
-                        library to parse C/C++ code.
-
-    depends_lib         port:llvm-${llvm_version} port:libffi
-    depends_run         port:clang_select port:ld64
-    depends_extract     bin:svn:subversion
-    depends_build       port:cctools
-    depends_skip_archcheck-append cctools ld64 subversion
-
-    default_variants    +analyzer
-}
-
-#fetch.type              svn
-#svn.revision            163481
-#set compiler_rt_rev     ${svn.revision}
-#set libcxx_rev          ${svn.revision}
-#version                 ${llvm_version}-r${svn.revision}
-#worksrcdir              trunk
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/trunk
-#worksrcdir              release_31
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/branches/release_31
-#default_variants-append +assertions
-
-version                 ${llvm_version}
-set compiler_rt_rev     142041
-set libcxx_rev          ${compiler_rt_rev}
-epoch                   1
-master_sites            http://llvm.org/releases/${version}
-extract.suffix          .tar.gz
-distfiles               llvm-${version}${extract.suffix}
-worksrcdir              llvm-${version}.src
-
-checksums               llvm-${version}${extract.suffix} \
-                        sha1    b683e7294fcf69887c0d709025d4640f5dca755b \
-                        rmd160  85211cafbed1c5d838ac54669017b5298613f975 \
-                        sha256  519eb11d3499ce99c6ffdb8718651fc91425ed7690eac91c8d6853474f7c0477 \
-                        clang-${version}${extract.suffix} \
-                        sha1    1fa11f07f957bd9c9de003d1b5a7a9ba1e0055e4 \
-                        rmd160  640b309116db4357627c0b81ebba5dab824d9eeb \
-                        sha256  b64e72da356d7c3428cfd7ac620d49ec042c84eaee13c26024879f555f4e126d
-
-patchfiles      install_target.patch \
-                0001-Add-a-few-missing-template-keywords.patch \
-                tiger-shlib.patch
-
-patch.pre_args  -p1
-
 if {${subport} == "clang-${llvm_version}"} {
-    if {${distfiles} != ""} {
-        distfiles-append     clang-${version}${extract.suffix}
-    }
-
-    patchfiles-append    tiger-shlib-clang.patch scan-build-PR-35006.patch \
-                         remove-chown-libcxx.patch \
-                         snowleopard-cmath.patch
-
-    build.target        clang-only
-    destroot.target     install-clang
+    replaced_by clang-${new_version}
+} else {
+    replaced_by llvm-${new_version}
 }
-
-build.env-append        VERBOSE=1 \
-                        REQUIRES_RTTI=1
-destroot.env-append     VERBOSE=1 \
-                        REQUIRES_RTTI=1
-configure.cppflags
-configure.ldflags
-configure.pre_args-delete --prefix=${prefix}
-configure.args          --enable-bindings=none --enable-libffi --enable-shared --enable-jit \
-                        --enable-optimized --disable-profiling --enable-pic \
-                        --enable-debug-symbols --disable-debug-runtime \
-                        --prefix="${sub_prefix}"
-
-if {${subport} == "llvm-${llvm_version}"} {
-    select.group        llvm
-    select.file         ${filespath}/mp-${subport}
-} elseif {${subport} == "clang-${llvm_version}"} {
-    select.group        clang
-    select.file         ${filespath}/mp-${subport}
-}
-
-# g++-4.0 fails to build some of the newer C++ for ppc
-# Intel looks ok, but I prefer using gcc-4.2 for consistency
-compiler.blacklist gcc-4.0
-
-variant universal {
-    build.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-    destroot.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-
-    post-extract {
-        # workaround a bug in Apple's shipped gcc driver-driver, patched in
-        # ours with driverdriver-num_infiles.patch
-        if {${configure.compiler} == "gcc-4.0" ||
-            ${configure.compiler} == "gcc-4.2" ||
-            ${configure.compiler} == "llvm-gcc-4.2"} {
-            system "echo \"static int ___ignoreme;\" > ${worksrcpath}/tools/llvm-shlib/ignore.c"
-        }
-    }
-}
-
-variant assertions description "Enable assertions for error detection (has performance impacts, especially on JIT)" {
-    configure.args-append --enable-assertions
-}
-
-platform darwin {
-    if {${build_arch} eq "i386"} {
-        configure.pre_args-append --build=i686-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc"} {
-        configure.pre_args-append --build=powerpc-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc64"} {
-        configure.pre_args-append --build=powerpc64-apple-darwin${os.major}
-    } else {
-        configure.pre_args-append --build=${build_arch}-apple-darwin${os.major}
-    }
-
-    if {[string match "*ppc*" [get_canonical_archs]]} {
-        # http://trac.macports.org/ticket/33987
-        configure.args-append --with-optimize-option=-Os
-    }
-}
-
-platform darwin 8 {
-    # Tiger's DevTools make has issues with the nested ifs in compiler-rt
-    depends_run-append      port:gmake
-    build.cmd               ${prefix}/bin/gmake
-
-    post-configure {
-        reinplace "/^RPATH/s/=.*/=/" ${worksrcpath}/Makefile.config
-    }
-}
-
-post-extract {
-    if {${subport} == "clang-${llvm_version}"} {
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/trunk clang"
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/branches/release_30 clang"
-        file rename ${workpath}/clang-${llvm_version}.src ${worksrcpath}/tools/clang
-
-        #system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt"
-        system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/branches/release_30 compiler-rt"
-        #file rename ${workpath}/compiler-rt-${llvm_version}.src ${worksrcpath}/projects/compiler-rt
-
-        system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/trunk libcxx"
-        #system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/branches/release_30 libcxx"
-        #file rename ${workpath}/libcxx-${llvm_version}.src ${worksrcpath}/projects/libcxx
-    }
-}
-
-post-patch {
-    if {${subport} == "llvm-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33207
-        reinplace "/LLVMINTERP/s/-lli/-lli-${suffix}/" ${worksrcpath}/tools/llvm-ld/llvm-ld.cpp
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33272
-        if {![variant_isset arm_runtime]} {
-            reinplace {/^SubDirs/ s/arm//} ${worksrcpath}/projects/compiler-rt/lib/Makefile.mk
-            reinplace {/^UniversalArchs/ s/arm[^ )]* *//g} ${worksrcpath}/projects/compiler-rt/make/platform/clang_darwin.mk
-        }
- 
-        reinplace {s/VERBOSE := 0/VERBOSE := 1/} ${worksrcpath}/projects/compiler-rt/make/config.mk
-    }
-}
-
-post-destroot {
-    file mkdir ${destroot}${prefix}/share/doc
-    file rename ${destroot}${sub_prefix}/docs/llvm ${destroot}${prefix}/share/doc/${subport}
-
-    foreach bin [glob ${destroot}${sub_prefix}/bin/*] {
-        set bin_filename [string map "${sub_prefix} ${prefix}" ${bin}]-${suffix}
-        set exec_path [string map "${destroot}${sub_prefix} ${sub_prefix}" ${bin}]
-
-        xinstall -m 755 "${filespath}/llvm-bin" "${bin_filename}"
-        reinplace "s:EXEC_PATH:${exec_path}:" "${bin_filename}"
-    }
-
-    if {${subport} == "llvm-${llvm_version}"} {
-        foreach man [glob ${destroot}${sub_prefix}/share/man/man1/*.1] {
-            set basename [string map "${destroot}${sub_prefix}/share/man/man1/ {}" ${man}]
-            file rename ${man} ${destroot}${prefix}/share/man/man1/[string map ".1 -${suffix}.1" ${basename}]
-        }
-
-        foreach liba [glob ${destroot}${sub_prefix}/lib/*dylib] {
-            set liba_nodr [string map "${destroot} {}" ${liba}]
-            system "install_name_tool -id ${liba_nodr} ${liba}"
-
-            foreach libb [glob ${destroot}${sub_prefix}/lib/*dylib] {
-                set libb_base [string map "${destroot}${sub_prefix}/lib/ {}" ${libb}]
-                set libb_nodr [string map "${destroot} {}" ${libb}]
-
-                system "install_name_tool -change @executable_path/../lib/${libb_base} ${libb_nodr} ${liba}"
-            }
-        }
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        system "ditto ${worksrcpath}/projects/libcxx/include ${destroot}${sub_prefix}/lib/c++/v1"
-
-        # http://trac.macports.org/ticket/33207
-        ln -s ${prefix}/libexec/ld64/ld ${destroot}${sub_prefix}/bin/ld
-
-        system "install_name_tool -id ${sub_prefix}/lib/libclang.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}svn.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}svn.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    variant ocaml description {Enable generation of OCaml binding} {
-        depends_lib-append   port:ocaml
-
-        configure.args-delete --enable-bindings=none
-        configure.args-append --enable-bindings=ocaml
-
-        destroot.args-append  OVERRIDE_libdir=${sub_prefix}/lib
-    }
-} elseif {${subport} == "clang-${llvm_version}"} {
-    variant arm_runtime description {Build and install the arm runtime for iOS development (requires iOS SDK)} {}
-
-    # The iOS SDK was shipped with all Xcode releases after 4.0
-    if {[info exists xcodeversion] && [vercmp "4.0" ${xcodeversion}] <= 0} {
-       default_variants-append +arm_runtime
-    }
-
-    set pythonver ""
-    set pythonverdot ""
-
-    if {![variant_isset python25] && ![variant_isset python26]} {
-        default_variants-append +python27
-    }
-
-    variant python25 conflicts python26 python27 description {Use python 2.5} {
-        set pythonver 25
-        set pythonverdot 2.5
-        depends_build-append port:python25
-    }
-
-    variant python26 conflicts python25 python27 description {Use python 2.6} {
-        set pythonver 26
-        set pythonverdot 2.6
-        depends_build-append port:python26
-    }
-
-    variant python27 conflicts python25 python26 description {Use python 2.7} {
-        set pythonver 27
-        set pythonverdot 2.7
-        depends_build-append port:python27
-    }
-
-    variant analyzer description {Install clang static analyzer} {
-        if {[string equal "${pythonver}" ""]} {
-            ui_error "You must select a python variant to use the clang static analyzer (+analyzer)"
-            error "Invalid variant combination"
-        }
-
-        depends_run-append port:perl5 port:python${pythonver}
-
-        post-patch {
-            reinplace "s|/usr/bin/env perl|${prefix}/bin/perl5|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/ccc-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/c++-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/scan-build
-            reinplace "s|/usr/bin/env python|${prefix}/bin/python${pythonverdot}|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/set-xcode-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-view/scan-view
-        }
-
-        post-destroot {
-            file mkdir ${destroot}${sub_prefix}/libexec
-            file copy ${worksrcpath}/tools/clang/tools/scan-build ${destroot}${sub_prefix}/libexec/scan-build
-            file copy ${worksrcpath}/tools/clang/tools/scan-view ${destroot}${sub_prefix}/libexec/scan-view
-
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-build/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/Resources/.svn
-
-            ln -s ${sub_prefix}/libexec/scan-build/scan-build ${destroot}${sub_prefix}/bin/scan-build
-            ln -s ${sub_prefix}/libexec/scan-view/scan-view ${destroot}${sub_prefix}/bin/scan-view
-            ln -s ${sub_prefix}/bin ${destroot}${sub_prefix}/libexec/scan-build/bin
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-build-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-build:" "${destroot}${prefix}/bin/scan-build-${suffix}"
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-view-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-view:" "${destroot}${prefix}/bin/scan-view-${suffix}"
-        }
-    }
-}
-
-livecheck.type          none

Modified: trunk/dports/lang/llvm-3.1/Portfile
===================================================================
--- trunk/dports/lang/llvm-3.1/Portfile	2015-01-16 02:47:18 UTC (rev 131699)
+++ trunk/dports/lang/llvm-3.1/Portfile	2015-01-16 03:08:17 UTC (rev 131700)
@@ -1,344 +1,22 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup select        1.0
+PortGroup               obsolete 1.0
 
+set new_version         3.4
+
 set llvm_version        3.1
-revision                8
+version                 ${llvm_version}
+revision                9
+epoch                   1
 name                    llvm-${llvm_version}
 subport                 clang-${llvm_version} {}
-set suffix              mp-${llvm_version}
-set sub_prefix          ${prefix}/libexec/llvm-${llvm_version}
-dist_subdir             llvm
 categories              lang
 platforms               darwin
 license                 NCSA
-maintainers             jeremyhu larryv
 
-platform darwin {
-    if {${os.major} >= 13} {
-        depends_lib
-        depends_run
-        pre-fetch {
-            ui_error "$name is not supported on Mavericks or later."
-            error "unsupported platform"
-        }
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    homepage            http://llvm.org/
-    description         llvm is a next generation compiler infrastructure
-    long_description    The LLVM Core libraries provide a modern source- and \
-                        target-independent optimizer, along with code \
-                        generation support for many popular CPUs (as well as \
-                        some less common ones!) These libraries are built \
-                        around a well specified code representation known as \
-                        the LLVM intermediate representation ("LLVM IR").
-
-    depends_lib         port:libffi
-    depends_run         bin:perl:perl5 port:llvm_select
-} elseif {${subport} == "clang-${llvm_version}"} {
-    homepage            http://clang.llvm.org/
-    description         C, C++, Objective C and Objective C++ compiler
-    long_description    Clang is an "LLVM native" C/C++/Objective-C compiler, \
-                        which aims to deliver amazingly fast compiles (e.g. \
-                        about 3x faster than GCC when compiling Objective-C \
-                        code in a debug configuration), extremely useful error \
-                        and warning messages and to provide a platform for \
-                        building great source level tools. The included Clang \
-                        Static Analyzer is a tool that automatically finds bugs in \
-                        your code, and is a great example of the sort of tool \
-                        that can be built using the Clang frontend as a \
-                        library to parse C/C++ code.
-
-    depends_lib         port:llvm-${llvm_version} port:libffi
-    depends_run         port:clang_select port:ld64
-    depends_extract     bin:svn:subversion
-    depends_build       port:cctools
-    depends_skip_archcheck-append cctools ld64 subversion
-
-    default_variants    +analyzer
-}
-
-#fetch.type              svn
-#svn.revision            163481
-#set compiler_rt_rev     ${svn.revision}
-#set libcxx_rev          ${svn.revision}
-#version                 ${llvm_version}-r${svn.revision}
-#worksrcdir              trunk
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/trunk
-#worksrcdir              release_31
-#svn.url                 http://llvm.org/svn/llvm-project/llvm/branches/release_31
-#default_variants-append +assertions
-
-version                 ${llvm_version}
-set compiler_rt_rev     156798
-set libcxx_rev          ${compiler_rt_rev}
-epoch                   1
-master_sites            http://llvm.org/releases/${version}
-extract.suffix          .tar.gz
-distfiles               llvm-${version}.src${extract.suffix}
-worksrcdir              llvm-${version}.src
-
-checksums               llvm-${version}.src${extract.suffix} \
-                        sha1    234c96e73ef81aec9a54da92fc2a9024d653b059 \
-                        rmd160  ceb0ef36ab6109da7a8568b04de759752dbee5a7 \
-                        sha256  1ea05135197b5400c1f88d00ff280d775ce778f8f9ea042e25a1e1e734a4b9ab \
-                        clang-${version}.src${extract.suffix} \
-                        sha1    19f33b187a50d22fda2a6f9ed989699a9a9efd62 \
-                        rmd160  5ae09d3d69d4f1e50e07f6bf3474da96e6a84feb \
-                        sha256  ff63e215dcd3e2838ffdea38502f8d35bab17e487f3c3799579961e452d5a786 \
-                        compiler-rt-${version}.src${extract.suffix} \
-                        sha1    62b7646eee6c81f3078ea398fee160b264b5bd84 \
-                        rmd160  c09239db5e798396b34d98f3ffdb9b4f2456b84e \
-                        sha256  1bd4624e7465b05ea713198f19c1c235bae2d35a411c15a4648300bc74294f5c
-
-patchfiles      install_target.patch \
-                tiger.patch \
-                tiger-shlib.patch
-
-patch.pre_args  -p1
-
 if {${subport} == "clang-${llvm_version}"} {
-    if {${distfiles} != ""} {
-        distfiles-append     clang-${version}.src${extract.suffix} compiler-rt-${version}.src${extract.suffix}
-    }
-
-    patchfiles-append    tiger-shlib-clang.patch tiger-libclang.patch scan-build-PR-35006.patch \
-                         0001-PR12597-Remove-chown-R-root-wheel-from-the-makefile.patch \
-                         snowleopard-cmath.patch
-
-    build.target        clang-only
-    destroot.target     install-clang
+    replaced_by clang-${new_version}
+} else {
+    replaced_by llvm-${new_version}
 }
-
-build.env-append        VERBOSE=1 \
-                        REQUIRES_RTTI=1
-destroot.env-append     VERBOSE=1 \
-                        REQUIRES_RTTI=1
-configure.cppflags
-configure.ldflags
-configure.pre_args-delete --prefix=${prefix}
-configure.args          --enable-bindings=none --enable-libffi --enable-shared --enable-jit \
-                        --enable-optimized --disable-profiling --enable-pic \
-                        --enable-debug-symbols --disable-debug-runtime \
-                        --prefix="${sub_prefix}"
-
-if {${subport} == "llvm-${llvm_version}"} {
-    select.group        llvm
-    select.file         ${filespath}/mp-${subport}
-} elseif {${subport} == "clang-${llvm_version}"} {
-    select.group        clang
-    select.file         ${filespath}/mp-${subport}
-}
-
-# g++-4.0 fails to build some of the newer C++ for ppc
-# Intel looks ok, but I prefer using gcc-4.2 for consistency
-compiler.blacklist gcc-4.0
-
-variant universal {
-    build.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-    destroot.env-append \
-        UNIVERSAL=1 \
-        UNIVERSAL_ARCH="[get_canonical_archs]"
-
-    post-extract {
-        # workaround a bug in Apple's shipped gcc driver-driver, patched in
-        # ours with driverdriver-num_infiles.patch
-        if {${configure.compiler} == "gcc-4.0" ||
-            ${configure.compiler} == "gcc-4.2" ||
-            ${configure.compiler} == "llvm-gcc-4.2"} {
-            system "echo \"static int ___ignoreme;\" > ${worksrcpath}/tools/llvm-shlib/ignore.c"
-        }
-    }
-}
-
-variant assertions description "Enable assertions for error detection (has performance impacts, especially on JIT)" {
-    configure.args-append --enable-assertions
-}
-
-platform darwin {
-    if {${build_arch} eq "i386"} {
-        configure.pre_args-append --build=i686-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc"} {
-        configure.pre_args-append --build=powerpc-apple-darwin${os.major}
-    } elseif {${build_arch} eq "ppc64"} {
-        configure.pre_args-append --build=powerpc64-apple-darwin${os.major}
-    } else {
-        configure.pre_args-append --build=${build_arch}-apple-darwin${os.major}
-    }
-
-    if {[string match "*ppc*" [get_canonical_archs]]} {
-        # http://trac.macports.org/ticket/33987
-        configure.args-append --with-optimize-option=-Os
-    }
-}
-
-platform darwin 8 {
-    # Tiger's DevTools make has issues with the nested ifs in compiler-rt
-    depends_run-append      port:gmake
-    build.cmd               ${prefix}/bin/gmake
-
-    post-configure {
-        reinplace "/^RPATH/s/=.*/=/" ${worksrcpath}/Makefile.config
-    }
-}
-
-post-extract {
-    if {${subport} == "clang-${llvm_version}"} {
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/trunk clang"
-        #system "cd ${worksrcpath}/tools && svn co -r ${svn.revision} http://llvm.org/svn/llvm-project/cfe/branches/release_31 clang"
-        file rename ${workpath}/clang-${llvm_version}.src ${worksrcpath}/tools/clang
-
-        #system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt"
-        #system "cd ${worksrcpath}/projects && svn co -r ${compiler_rt_rev} http://llvm.org/svn/llvm-project/compiler-rt/branches/release_31 compiler-rt"
-        file rename ${workpath}/compiler-rt-${llvm_version}.src ${worksrcpath}/projects/compiler-rt
-
-        system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/trunk libcxx"
-        #system "cd ${worksrcpath}/projects && svn co -r ${libcxx_rev} http://llvm.org/svn/llvm-project/libcxx/branches/release_31 libcxx"
-        #file rename ${workpath}/libcxx-${llvm_version}.src ${worksrcpath}/projects/libcxx
-    }
-}
-
-post-patch {
-    if {${subport} == "llvm-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33207
-        reinplace "/LLVMINTERP/s/-lli/-lli-${suffix}/" ${worksrcpath}/tools/llvm-ld/llvm-ld.cpp
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        # http://trac.macports.org/ticket/33272
-        if {![variant_isset arm_runtime]} {
-            reinplace {/^SubDirs/ s/arm//} ${worksrcpath}/projects/compiler-rt/lib/Makefile.mk
-            reinplace {/^UniversalArchs/ s/arm[^ )]* *//g} ${worksrcpath}/projects/compiler-rt/make/platform/clang_darwin.mk
-        }
- 
-        reinplace {s/VERBOSE := 0/VERBOSE := 1/} ${worksrcpath}/projects/compiler-rt/make/config.mk
-    }
-}
-
-post-destroot {
-    file mkdir ${destroot}${prefix}/share/doc
-    file rename ${destroot}${sub_prefix}/docs/llvm ${destroot}${prefix}/share/doc/${subport}
-
-    foreach bin [glob ${destroot}${sub_prefix}/bin/*] {
-        set bin_filename [string map "${sub_prefix} ${prefix}" ${bin}]-${suffix}
-        set exec_path [string map "${destroot}${sub_prefix} ${sub_prefix}" ${bin}]
-
-        xinstall -m 755 "${filespath}/llvm-bin" "${bin_filename}"
-        reinplace "s:EXEC_PATH:${exec_path}:" "${bin_filename}"
-    }
-
-    if {${subport} == "llvm-${llvm_version}"} {
-        foreach man [glob ${destroot}${sub_prefix}/share/man/man1/*.1] {
-            set basename [string map "${destroot}${sub_prefix}/share/man/man1/ {}" ${man}]
-            file rename ${man} ${destroot}${prefix}/share/man/man1/[string map ".1 -${suffix}.1" ${basename}]
-        }
-
-        foreach liba [glob ${destroot}${sub_prefix}/lib/*dylib] {
-            set liba_nodr [string map "${destroot} {}" ${liba}]
-            system "install_name_tool -id ${liba_nodr} ${liba}"
-
-            foreach libb [glob ${destroot}${sub_prefix}/lib/*dylib] {
-                set libb_base [string map "${destroot}${sub_prefix}/lib/ {}" ${libb}]
-                set libb_nodr [string map "${destroot} {}" ${libb}]
-
-                system "install_name_tool -change @executable_path/../lib/${libb_base} ${libb_nodr} ${liba}"
-            }
-        }
-    } elseif {${subport} == "clang-${llvm_version}"} {
-        system "ditto ${worksrcpath}/projects/libcxx/include ${destroot}${sub_prefix}/lib/c++/v1"
-
-        # http://trac.macports.org/ticket/33207
-        ln -s ${prefix}/libexec/ld64/ld ${destroot}${sub_prefix}/bin/ld
-
-        system "install_name_tool -id ${sub_prefix}/lib/libclang.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}svn.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}svn.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-        system "install_name_tool -change @executable_path/../lib/libLLVM-${llvm_version}.dylib ${sub_prefix}/lib/libLLVM-${llvm_version}.dylib ${destroot}${sub_prefix}/lib/libclang.dylib"
-    }
-}
-
-if {${subport} == "llvm-${llvm_version}"} {
-    variant ocaml description {Enable generation of OCaml binding} {
-        depends_lib-append   port:ocaml
-
-        configure.args-delete --enable-bindings=none
-        configure.args-append --enable-bindings=ocaml
-
-        destroot.args-append  OVERRIDE_libdir=${sub_prefix}/lib
-    }
-} elseif {${subport} == "clang-${llvm_version}"} {
-    variant arm_runtime description {Build and install the arm runtime for iOS development (requires iOS SDK)} {}
-
-    # The iOS SDK was shipped with all Xcode releases after 4.0
-    if {[info exists xcodeversion] && [vercmp "4.0" ${xcodeversion}] <= 0} {
-       default_variants-append +arm_runtime
-    }
-
-    set pythonver ""
-    set pythonverdot ""
-
-    if {![variant_isset python25] && ![variant_isset python26]} {
-        default_variants-append +python27
-    }
-
-    variant python25 conflicts python26 python27 description {Use python 2.5} {
-        set pythonver 25
-        set pythonverdot 2.5
-        depends_build-append port:python25
-    }
-
-    variant python26 conflicts python25 python27 description {Use python 2.6} {
-        set pythonver 26
-        set pythonverdot 2.6
-        depends_build-append port:python26
-    }
-
-    variant python27 conflicts python25 python26 description {Use python 2.7} {
-        set pythonver 27
-        set pythonverdot 2.7
-        depends_build-append port:python27
-    }
-
-    variant analyzer description {Install clang static analyzer} {
-        if {[string equal "${pythonver}" ""]} {
-            ui_error "You must select a python variant to use the clang static analyzer (+analyzer)"
-            error "Invalid variant combination"
-        }
-
-        depends_run-append port:perl5 port:python${pythonver}
-
-        post-patch {
-            reinplace "s|/usr/bin/env perl|${prefix}/bin/perl5|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/ccc-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/c++-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-build/scan-build
-            reinplace "s|/usr/bin/env python|${prefix}/bin/python${pythonverdot}|g" \
-                ${worksrcpath}/tools/clang/tools/scan-build/set-xcode-analyzer \
-                ${worksrcpath}/tools/clang/tools/scan-view/scan-view
-        }
-
-        post-destroot {
-            file mkdir ${destroot}${sub_prefix}/libexec
-            file copy ${worksrcpath}/tools/clang/tools/scan-build ${destroot}${sub_prefix}/libexec/scan-build
-            file copy ${worksrcpath}/tools/clang/tools/scan-view ${destroot}${sub_prefix}/libexec/scan-view
-
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-build/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/.svn
-            file delete -force ${destroot}${sub_prefix}/libexec/scan-view/Resources/.svn
-
-            ln -s ${sub_prefix}/libexec/scan-build/scan-build ${destroot}${sub_prefix}/bin/scan-build
-            ln -s ${sub_prefix}/libexec/scan-view/scan-view ${destroot}${sub_prefix}/bin/scan-view
-            ln -s ${sub_prefix}/bin ${destroot}${sub_prefix}/libexec/scan-build/bin
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-build-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-build:" "${destroot}${prefix}/bin/scan-build-${suffix}"
-
-            xinstall -m 755 "${filespath}/llvm-bin" "${destroot}${prefix}/bin/scan-view-${suffix}"
-            reinplace "s:EXEC_PATH:${sub_prefix}/bin/scan-view:" "${destroot}${prefix}/bin/scan-view-${suffix}"
-        }
-    }
-}
-
-livecheck.type          none
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150115/effa9f04/attachment-0001.html>


More information about the macports-changes mailing list