pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
lldb-git: remove stale file
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Fri Nov 20 02:24:29 2015 +0100
Changeset: 095eeeae094b9d45be5b466b300e11a1c674425c
Removed Files:
lldb-git/Makefile.common
Log Message:
lldb-git: remove stale file
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=095eeeae094b9d45be5b466b300e11a1c674425c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
lldb-git/Makefile.common | 108 -----------------------------------------------
1 file changed, 108 deletions(-)
diffs:
diff --git a/lldb-git/Makefile.common b/lldb-git/Makefile.common
deleted file mode 100644
index 0f07129..0000000
--- a/lldb-git/Makefile.common
+++ /dev/null
@@ -1,108 +0,0 @@
-# $NetBSD: Makefile.common,v 1.7 2015/07/20 05:49:53 adam Exp $
-#
-# used by lang/clang/Makefile
-# used by lang/libLLVM/Makefile
-
-# This is a dummy package - only for lldb/llvm porting efforts
-# It will conflict with clang and llvm packages
-
-PKGNAME= lldb-0.0.0
-CATEGORIES= lang
-
-GIT_REPOSITORIES= llvm lldb clang
-GIT_REPO.llvm= git://github.com/llvm-mirror/llvm.git
-GIT_REPO.clang= git://github.com/llvm-mirror/clang.git
-GIT_REPO.lldb= git://github.com/llvm-mirror/lldb.git
-
-MAINTAINER= adam.hoka%gmail.com@localhost
-HOMEPAGE= http://llvm.org/
-COMMENT= Low Level Virtual Machine compiler infrastructure
-LICENSE= modified-bsd
-
-WRKSRC= ${WRKDIR}/build
-CONFIGURE_SCRIPT= ${WRKDIR}/llvm/configure
-
-USE_LANGUAGES= c c++
-USE_TOOLS+= chown gmake groff gzip pod2html pod2man
-GCC_REQD+= 4.7 4.8
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --disable-assertions
-CONFIGURE_ARGS+= --disable-bindings # disable OCaml
-CONFIGURE_ARGS+= --disable-timestamps
-CONFIGURE_ARGS+= --enable-optimized
-
-CHECK_PORTABILITY_SKIP= utils/buildit/build_llvm
-
-TEST_TARGET= check unittests
-
-DISTINFO_FILE= ${.CURDIR}/../../wip/lldb-git/distinfo
-PATCHDIR= ${.CURDIR}/../../wip/lldb-git/patches
-
-.include "../../mk/bsd.prefs.mk"
-
-.if ${_OPSYS_SHLIB_TYPE} == "dylib"
-PLIST_SUBST+= SOEXT="dylib"
-.else
-PLIST_SUBST+= SOEXT="so"
-.endif
-
-.include "../../mk/compiler.mk"
-
-.if ${OPSYS} == "SunOS" && !empty(PKGSRC_COMPILER:Mgcc)
-# This should probably be in hacks, but since clang hardcodes gcc paths
-# put this here so it can be removed when clang matures.
-# cxa_finalize.o is no longer necessary with libc.so >= ILLUMOS_0.5
-TEST_ILLUMOS_3849!=\
- if /usr/bin/elfdump -v /lib/libc.so | \
- ${GREP} -q 'ILLUMOS_0.5' ; then ${ECHO} 1; \
- else ${ECHO} 0; \
- fi
-
-#doesn't seem to be needed anymore, but may be dependent on
-#a recent version of solaris (illumos) ld.
-#
-#CFLAGS.SunOS+= -mimpure-text
-
-SUBST_CLASSES+= fix-paths
-SUBST_STAGE.fix-paths= pre-configure
-SUBST_MESSAGE.fix-paths= Fixing absolute gcc paths for SunOS.
-SUBST_FILES.fix-paths= tools/clang/lib/Driver/Tools.cpp
-. if defined(_GCC_ARCHDIR)
-SUBST_SED.fix-paths= -e 's,/usr/gcc/4.5/lib/gcc/,${_GCC_ARCHDIR}/,g'
-. else
-LIBGCCDIR!= ${CC} -print-libgcc-file-name
-ARCHDIR:= ${LIBGCCDIR:H}
-SUBST_SED.fix-paths= -e 's,/usr/gcc/4.5/lib/gcc/,${ARCHDIR}/,g'
-. endif
-SUBST_SED.fix-paths+= -e '/^.*i386.*getVendorName.*$$/{d;}'
-SUBST_SED.fix-paths+= -e '/^.*GCCLibPath +=$$/d'
-SUBST_SED.fix-paths+= -e 's,/4.5.2/amd64/,amd64/,g'
-SUBST_SED.fix-paths+= -e 's,"as","gas",g'
-. if exists(/usr/bin/ld)
-SUBST_SED.fix-paths+= -e 's,getToolChain().GetProgramPath("ld"),"/usr/bin/ld",g'
-. else
-SUBST_SED.fix-paths+= -e 's,getToolChain().GetProgramPath("ld"),"/usr/ccs/bin/ld",g'
-. endif
-. if ${TEST_ILLUMOS_3849}
-SUBST_SED.fix-paths+= -e 's,^.*cxa_finalize.*$$, ; //cxa_finalize.o,g'
-. endif
-.endif
-
-# patch NetBSD::GetCXXStdlibType
-.if ${OPSYS} == "NetBSD" && !empty(PKGSRC_COMPILER:Mgcc)
-SUBST_CLASSES+= libcxx
-SUBST_STAGE.libcxx= pre-configure
-SUBST_MESSAGE.libcxx= Patching toolchain to use libstdc++ as we're using GCC
-SUBST_FILES.libcxx= tools/clang/lib/Driver/ToolChains.cpp
-SUBST_SED.libcxx= -e 's,Major >= 7 || (Major == 6 && Minor == 99 && Micro >= 49) || Major == 0,false,'
-.endif
-
-post-extract:
- ${RUN} mkdir -p ${WRKSRC}/build
- ${RUN} mv ${WRKDIR}/clang/ ${WRKDIR}/llvm/tools
- ${RUN} mv ${WRKDIR}/lldb/ ${WRKDIR}/llvm/tools
-
-.include "../../wip/mk/git-package.mk"
-.include "../../devel/zlib/buildlink3.mk"
-.include "../../lang/python/tool.mk"
-.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index