summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
Diffstat (limited to 'lang')
-rw-r--r--lang/Makefile1
-rw-r--r--lang/cli/Makefile77
-rw-r--r--lang/cli/distinfo3
-rw-r--r--lang/cli/files/patch-buildall14
-rw-r--r--lang/cli/files/patch-configure14
-rw-r--r--lang/cli/files/patch-env.sh30
-rw-r--r--lang/cli/files/patch-makefile.common.in14
-rw-r--r--lang/cli/files/patch-pal::unix::arch::i386::context.c14
-rw-r--r--lang/cli/files/patch-pal::unix::configure36
-rw-r--r--lang/cli/files/patch-pal::unix::cruntime::misc.c14
-rw-r--r--lang/cli/files/patch-pal::unix::file::file.c42
-rw-r--r--lang/cli/files/patch-pal::unix::include::pal::palinternal.h21
-rw-r--r--lang/cli/files/patch-palrt::src::numprs.cpp11
-rw-r--r--lang/cli/files/patch-rotorenv::bin::makefile.def48
-rw-r--r--lang/cli/files/patch-rotorenv::bin::rotor_x86mk.inc23
-rw-r--r--lang/cli/files/patch-rotorenv::bin::sources.cor14
-rw-r--r--lang/cli/files/patch-tools::build::buildexe.c37
-rw-r--r--lang/cli/files/patch-tools::cppmunge::makefile.in14
-rw-r--r--lang/cli/pkg-descr25
-rw-r--r--lang/cli/pkg-plist474
-rw-r--r--lang/cli/scripts/portconfigure5
21 files changed, 0 insertions, 931 deletions
diff --git a/lang/Makefile b/lang/Makefile
index 70e830ee3055..cc66813838ee 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -23,7 +23,6 @@
SUBDIR += chameleon
SUBDIR += chicken
SUBDIR += cim
- SUBDIR += cli
SUBDIR += clips
SUBDIR += clisp
SUBDIR += cmucl
diff --git a/lang/cli/Makefile b/lang/cli/Makefile
deleted file mode 100644
index e5c218b64b08..000000000000
--- a/lang/cli/Makefile
+++ /dev/null
@@ -1,77 +0,0 @@
-# New ports collection makefile for: cli
-# Date Created: 28 March 2002
-# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= cli
-PORTVERSION= 20021101
-CATEGORIES= lang
-MASTER_SITES= http://download.microsoft.com/download/.netframesdk/cli3/1.0/wxp/en-us/
-DISTNAME= sscli_${PORTVERSION}
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= An implementation of the ECMA CLI and the ECMA C\# language
-
-WRKSRC= ${WRKDIR}/sscli
-
-RESTRICTED= "license terms need to be reviewed"
-BROKEN= Does not handle PTHREAD_LIBS correctly
-DEPRECATED= 2006-12-01
-ONLY_FOR_ARCHS= i386
-
-USE_PERL5= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= ${BUILD_TYPE}
-CONFIGURE_SCRIPT= portconfigure
-MAKEFILE= makefile
-MAKE_ENV= CC_NAME="${CC}" SHELL="${SH}"
-BUILD_TYPE= free
-PLIST_SUB= CLI_VERSION="${PORTVERSION}"
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 500000
-GCC_LIB= -lstdc++ -lgcc -lc_r -lc
-.else
-CFLAGS+= -fpermissive
-GCC_LIB= -lstdc++ -lgcc -lc_r
-.endif
-
-post-extract:
- @${CP} ${SCRIPTDIR}/portconfigure ${WRKSRC}
-
-post-patch:
- @${REINPLACE_CMD} -e 's|%%GCC_LIB%%|${GCC_LIB}|g; \
- s|-fno-rtti ||g; \
- s|-fcheck-new ||g;' \
- ${WRKSRC}/makefile.common.in \
- ${WRKSRC}/rotorenv/bin/rotor_x86mk.inc
- @${FIND} ${WRKSRC}/rotorenv/bin -type f | ${XARGS} \
- ${REINPLACE_CMD} -e 's|-Wno-non-virtual-dtor||g; \
- s|-Wno-non-template-friend||g;'
- @${FIND} ${WRKSRC}/clr/src -type f | ${XARGS} \
- ${REINPLACE_CMD} -e 's|-Wno-ctor-dtor-privacy||g'
-
-do-build:
- @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ./buildall ${BUILD_TYPE})
-
-.if !defined(I_AGREE_TO_LICENSE_TERMS)
-pre-install:
- @${ECHO_MSG} "Please make sure that you have read and understood license terms contained in"
- @${ECHO_MSG} "the ${WRKSRC}/license.txt file and if you"
- @${ECHO_MSG} "agree with them then add -DI_AGREE_TO_LICENSE_TERMS to command line to"
- @${ECHO_MSG} "install the software (i.e. 'make -DI_AGREE_TO_LICENSE_TERMS install')."
- @${FALSE}
-.endif
-
-do-install:
- @${MKDIR} ${PREFIX}/cli-${PORTVERSION}
- @${INSTALL_DATA} ${WRKSRC}/license.txt ${PREFIX}/cli-${PORTVERSION}
- @cd ${WRKSRC}/build/v1.x86fre.rotor && ${FIND} . | \
- ${CPIO} -pdmu -R ${LIBOWN}:${LIBGRP} \
- ${PREFIX}/cli-${PORTVERSION}
-
-.include <bsd.port.post.mk>
diff --git a/lang/cli/distinfo b/lang/cli/distinfo
deleted file mode 100644
index cd1552c5cf5e..000000000000
--- a/lang/cli/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (sscli_20021101.tgz) = be9abced1e3ed97cf94a79f41a15171a
-SHA256 (sscli_20021101.tgz) = 688da3bd523dfe6ca1a2482de22770b5b1d8582b089bd05e8a07930c36382680
-SIZE (sscli_20021101.tgz) = 15736461
diff --git a/lang/cli/files/patch-buildall b/lang/cli/files/patch-buildall
deleted file mode 100644
index bfe3f6c8f5d8..000000000000
--- a/lang/cli/files/patch-buildall
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- buildall 2002/04/16 15:44:18 1.1
-+++ buildall 2002/04/16 15:44:34
-@@ -17,6 +17,8 @@
- # Make command errors fatal
- set -e
-
-+. env.sh
-+
- if test X"${TARGETCOMPLUS}" = "X"
- then
- echo "ERROR: The TARGETCOMPLUS environment variable isn't set."
diff --git a/lang/cli/files/patch-configure b/lang/cli/files/patch-configure
deleted file mode 100644
index 67a1adac94cf..000000000000
--- a/lang/cli/files/patch-configure
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- configure 2003/04/25 08:43:30 1.1
-+++ configure 2003/04/25 08:44:09
-@@ -2041,7 +2041,7 @@
-
- PTHREAD_OPTIONS=
-
--CFLAGS="-g -O2 -Wall -fPIC -DPIC"
-+CFLAGS="$CFLAGS -Wall -fPIC -DPIC"
-
- if test "$FEATURE_CASE_SENSITIVE_FS" = "1"; then
- CFLAGS="$CFLAGS -DFEATURE_CASE_SENSITIVE_FILESYSTEM"
diff --git a/lang/cli/files/patch-env.sh b/lang/cli/files/patch-env.sh
deleted file mode 100644
index 8c821a533d2f..000000000000
--- a/lang/cli/files/patch-env.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-
-$FreeBSD$
-
---- env.sh.orig Sat Nov 2 04:21:57 2002
-+++ env.sh Fri Apr 25 10:16:50 2003
-@@ -188,7 +188,15 @@
- CSC_COMPILE_FLAGS="${CSC_COMPILE_FLAGS} /d:FEATURE_CASE_SENSITIVE_FILESYSTEM"
- fi
-
--if test X"$1" = "Xfree"
-+if test X"$1" = "Xretail"
-+then
-+echo "Retail Environment"
-+ DDKBUILDENV=free
-+ C_DEFINES="${C_DEFINES} -DNTMAKEENV -DNDEBUG -DPERF_TRACKING"
-+ BUILD_ALT_DIR=r
-+ TARGETCOMPLUS="${ROTOR_DIR}/build/v1.x86fre.rotor"
-+ NTDEBUG=retail
-+else if test X"$1" = "Xfree"
- then
- echo "Free Environment"
- DDKBUILDENV=free
-@@ -213,6 +221,7 @@
- BUILD_ALT_DIR=df
- TARGETCOMPLUS="${ROTOR_DIR}/build/v1.${PROCESSOR_ARCHITECTURE}fstchk.rotor"
- NTDEBUG=ntsd
-+fi
- fi
- fi
-
diff --git a/lang/cli/files/patch-makefile.common.in b/lang/cli/files/patch-makefile.common.in
deleted file mode 100644
index 356714350b37..000000000000
--- a/lang/cli/files/patch-makefile.common.in
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- makefile.common.in 2003/04/25 08:00:00 1.1
-+++ makefile.common.in 2003/04/25 08:00:14
-@@ -45,7 +45,7 @@
- PAL_LIB_FILE = $(LIB_PREFIX)$(PAL_LIB)$(LIB_SUFFIX)
- ROTOR_LIBS = -l$(PAL_LIB)
- LDFLAGS = -L$(TARGETCOMPLUS)
--GCC_LIB = @GCC_LIB@
-+GCC_LIB = %%GCC_LIB%%
- LINKER_FLAGS = @LINKER_FLAGS@
-
- # The C runtime static libraries that we need to get an application
diff --git a/lang/cli/files/patch-pal::unix::arch::i386::context.c b/lang/cli/files/patch-pal::unix::arch::i386::context.c
deleted file mode 100644
index d2a460cf0d9a..000000000000
--- a/lang/cli/files/patch-pal::unix::arch::i386::context.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- pal/unix/arch/i386/context.c.orig Wed Jun 19 16:43:58 2002
-+++ pal/unix/arch/i386/context.c Tue Jul 30 00:24:36 2002
-@@ -65,8 +65,9 @@
-
- if ((regFd = open(buf, O_RDONLY)) == -1)
- {
-- ASSERT("open() failed %d (%s) \n", errno, strerror(errno));
-- return FALSE;
-+ bzero(registers, sizeof(struct reg));
-+ bRet = TRUE;
-+ goto EXIT;
- }
-
- if (lseek(regFd, 0, 0) == -1)
diff --git a/lang/cli/files/patch-pal::unix::configure b/lang/cli/files/patch-pal::unix::configure
deleted file mode 100644
index d0125df24465..000000000000
--- a/lang/cli/files/patch-pal::unix::configure
+++ /dev/null
@@ -1,36 +0,0 @@
-
-$FreeBSD$
-
---- pal/unix/configure.orig Thu Oct 31 03:00:09 2002
-+++ pal/unix/configure Fri Apr 25 10:33:47 2003
-@@ -1899,17 +1899,17 @@
- fi
-
- if test "$NTDEBUG" != "ntsdnodbg"; then
-- CFLAGS="$CFLAGS -g"
-+# CFLAGS="$CFLAGS -g"
- fi
-
- if test "$BUILD_ALT_DIR" = "d"; then
-- CFLAGS="$CFLAGS -O0 -finline"
-+ CFLAGS="$CFLAGS -finline"
- fi
- if test "$BUILD_ALT_DIR" = "df"; then
-- CFLAGS="$CFLAGS -O2"
-+# CFLAGS="$CFLAGS -O2"
- fi
- if test "$BUILD_ALT_DIR" = "r"; then
-- CFLAGS="$CFLAGS -O2"
-+# CFLAGS="$CFLAGS -O2"
- fi
- CFLAGS_NO_PIC="$CFLAGS"
-
-@@ -4898,7 +4898,7 @@
- fi
- done
-
--for ac_func in setcontext getcontext copysign
-+for ac_func in setcontext copysign
- do
- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
- echo "$as_me:4904: checking for $ac_func" >&5
diff --git a/lang/cli/files/patch-pal::unix::cruntime::misc.c b/lang/cli/files/patch-pal::unix::cruntime::misc.c
deleted file mode 100644
index f5fe24ccc9d1..000000000000
--- a/lang/cli/files/patch-pal::unix::cruntime::misc.c
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- pal/unix/cruntime/misc.c 2002/03/28 19:08:00 1.1
-+++ pal/unix/cruntime/misc.c 2002/03/28 19:26:36
-@@ -31,6 +31,8 @@
- collision for va_start and va_end */
- #include <stdarg.h>
-
-+#define time_t DUMMY_time_t
-+
- SET_DEFAULT_DEBUG_CHANNEL(CRT);
-
- static const int STR_TIME_SIZE =26;
diff --git a/lang/cli/files/patch-pal::unix::file::file.c b/lang/cli/files/patch-pal::unix::file::file.c
deleted file mode 100644
index d962c7ad5113..000000000000
--- a/lang/cli/files/patch-pal::unix::file::file.c
+++ /dev/null
@@ -1,42 +0,0 @@
-
-$FreeBSD$
-
---- pal/unix/file/file.c.orig Fri Mar 22 03:48:20 2002
-+++ pal/unix/file/file.c Wed Apr 10 11:52:45 2002
-@@ -37,6 +37,9 @@
- #include <sys/stat.h>
- #include <errno.h>
-
-+#define chmod( path, mode ) chmod( ( path ), ( mode ) & ~GetUmask() )
-+#define fchmod( fd, mode ) fchmod( ( fd ), ( mode ) & ~GetUmask() )
-+#define lchmod( path, mode ) lchmod( ( path ), ( mode ) & ~GetUmask() )
-
- SET_DEFAULT_DEBUG_CHANNEL(FILE);
-
-@@ -44,6 +47,8 @@
- static int FILECloseStdHandle( HOBJSTRUCT *handle_data);
- static int FILEDuplicateHandle( HANDLE handle, HOBJSTRUCT *handle_data);
-
-+static mode_t GetUmask( void );
-+
- static file *FILENewFileData( void );
-
- static BOOL FILEAddNewLockedRgn(SHMFILELOCKS* fileLocks,
-@@ -2342,6 +2347,17 @@
- HMGRUnlockHandle(handle,&file_data->handle_data);
- }
-
-+static mode_t GetUmask( void )
-+{
-+ mode_t mask;
-+
-+ /* XXX: Probably need to block signals to avoid race here */
-+ mask = umask( 0 );
-+ umask( mask );
-+ /* XXX: Unblock here */
-+
-+ return mask;
-+}
-
- /*++
- Function:
diff --git a/lang/cli/files/patch-pal::unix::include::pal::palinternal.h b/lang/cli/files/patch-pal::unix::include::pal::palinternal.h
deleted file mode 100644
index 5c7a570495cb..000000000000
--- a/lang/cli/files/patch-pal::unix::include::pal::palinternal.h
+++ /dev/null
@@ -1,21 +0,0 @@
-
-$FreeBSD$
-
---- pal/unix/include/pal/palinternal.h 2002/03/28 19:47:01 1.1
-+++ pal/unix/include/pal/palinternal.h 2002/03/28 19:53:39
-@@ -277,6 +277,7 @@
- #define u_short PAL_u_short
- #define u_int PAL_u_int
- #define u_long PAL_u_long
-+#define in_addr PAL_in_addr
-
- #define wchar_t wchar_16
- #define SOCKET PAL_SOCKET
-@@ -385,6 +386,7 @@
- #undef u_short
- #undef u_int
- #undef u_long
-+#undef in_addr
-
-
- #undef printf
diff --git a/lang/cli/files/patch-palrt::src::numprs.cpp b/lang/cli/files/patch-palrt::src::numprs.cpp
deleted file mode 100644
index e809d037db68..000000000000
--- a/lang/cli/files/patch-palrt::src::numprs.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- palrt/src/numprs.cpp.orig Tue Aug 12 18:49:14 2003
-+++ palrt/src/numprs.cpp Tue Aug 12 18:49:28 2003
-@@ -41,7 +41,7 @@
- //
- #define MAXEXP (INT_MAX/2)
-
--const SPLIT64 sdlTenToEighteen = { {UI64(1000000000000000000)} };
-+const SPLIT64 sdlTenToEighteen = { UI64(1000000000000000000) };
- // Max value of Decimal (= 79228162514264337593543950335), less 1st digit.
- const BYTE rgbMaxDec[DEC_MAXDIG - 1] = {9,2,2,8,1,6,2,5,1,4,2,6,4,3,3,7,5,9,3,5,4,3,9,5,0,3,3,5};
-
diff --git a/lang/cli/files/patch-rotorenv::bin::makefile.def b/lang/cli/files/patch-rotorenv::bin::makefile.def
deleted file mode 100644
index 35cbd93ec48c..000000000000
--- a/lang/cli/files/patch-rotorenv::bin::makefile.def
+++ /dev/null
@@ -1,48 +0,0 @@
-
-$FreeBSD$
-
---- rotorenv/bin/makefile.def.orig Tue Jul 30 15:43:31 2002
-+++ rotorenv/bin/makefile.def Tue Jul 30 15:44:42 2002
-@@ -340,6 +340,8 @@
- ! else
- ! if "$(TARGETTYPE)" == "DYNLINK"
- TARGETPRE=lib
-+DEFAULT_MSC_OPT=$(DEFAULT_MSC_OPT) -fpic -DPIC
-+LINKER_FLAGS=$(LINKER_FLAGS) -soname $(TARGETPRE)$(TARGETLIBNAME).$(TARGETEXT)
- ! endif
- ! endif
- !endif
-@@ -1421,14 +1423,14 @@
-
- !IFNDEF MSC_WARNING_LEVEL
- !IFDEF PLATFORM_UNIX
--MSC_WARNING_LEVEL=-Wall -Wno-non-virtual-dtor -Wno-non-template-friend
-+MSC_WARNING_LEVEL=-Wno-non-virtual-dtor -Wno-non-template-friend -w
- !ELSE
- MSC_WARNING_LEVEL=/W3
- !ENDIF
- !ENDIF
-
- !ifdef PLATFORM_UNIX
--DEFAULT_MSC_OPT=-O2
-+DEFAULT_MSC_OPT=$(DEFAULT_MSC_OPT) $(CXXFLAGS)
- !else
- DEFAULT_MSC_OPT = /Oxs
- !endif
-@@ -1466,14 +1468,14 @@
- DBGFLAGS=
- !ELSEIF "$(NTDEBUG)" == "ntsdnodbg"
- !if "$(PLATFORM_UNIX)" == "1"
--DBGFLAGS=-g
-+DBGFLAGS=
- !else
- DBGFLAGS=/Zi
- !endif
- TARGET_DBG_DEFINES= -DDEVL=1
- !ELSEIF "$(NTDEBUG)" == "ntsd"
- !if "$(PLATFORM_UNIX)" == "1"
--DBGFLAGS=-g
-+DBGFLAGS=
- !else
- DBGFLAGS= /Zi
- !endif
diff --git a/lang/cli/files/patch-rotorenv::bin::rotor_x86mk.inc b/lang/cli/files/patch-rotorenv::bin::rotor_x86mk.inc
deleted file mode 100644
index df4ccb7c9e19..000000000000
--- a/lang/cli/files/patch-rotorenv::bin::rotor_x86mk.inc
+++ /dev/null
@@ -1,23 +0,0 @@
-
-$FreeBSD$
-
---- rotorenv/bin/rotor_x86mk.inc.orig Sat Nov 2 04:22:40 2002
-+++ rotorenv/bin/rotor_x86mk.inc Fri Apr 25 11:06:16 2003
-@@ -329,7 +329,7 @@
- CC_LIB =$(GCC_LIB_DIR)/libgcc.a $(GCC_EH_LIB) \
- /usr/local/lib/libstdc++.a
- !else
--CC_LIB =/usr/lib/libgcc.a
-+CC_LIB =%%GCC_LIB%%
- !endif
- !else
- ASM_SUFFIX =asm
-@@ -362,7 +362,7 @@
-
- !IFNDEF COMPILER_WARNINGS
- !IFDEF PLATFORM_UNIX
--COMPILER_WARNINGS=-Wall -Wno-non-virtual-dtor -Wno-non-template-friend
-+COMPILER_WARNINGS=-Wno-non-virtual-dtor -Wno-non-template-friend -w
- !ENDIF
- !ENDIF
-
diff --git a/lang/cli/files/patch-rotorenv::bin::sources.cor b/lang/cli/files/patch-rotorenv::bin::sources.cor
deleted file mode 100644
index ec9fe560c547..000000000000
--- a/lang/cli/files/patch-rotorenv::bin::sources.cor
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- rotorenv/bin/sources.cor 2002/07/26 16:22:24 1.1
-+++ rotorenv/bin/sources.cor 2002/07/26 16:22:32
-@@ -280,7 +280,7 @@
- !if "$(PLATFORM_UNIX)" != "1"
- COMPILER_WARNINGS =/WX /FI$(CORBASE)\src\inc\WarningControl.h
- !else
--COMPILER_WARNINGS = -Wall -Wno-non-virtual-dtor -Wno-non-template-friend
-+COMPILER_WARNINGS = -Wno-non-virtual-dtor -Wno-non-template-friend -w
- !endif
-
- #######################################################################################
diff --git a/lang/cli/files/patch-tools::build::buildexe.c b/lang/cli/files/patch-tools::build::buildexe.c
deleted file mode 100644
index db12a47a2402..000000000000
--- a/lang/cli/files/patch-tools::build::buildexe.c
+++ /dev/null
@@ -1,37 +0,0 @@
-
-$FreeBSD$
-
---- tools/build/buildexe.c.orig Sat Nov 2 04:25:49 2002
-+++ tools/build/buildexe.c Fri Apr 25 10:23:19 2003
-@@ -1170,7 +1170,9 @@
- } else if (strstr(p, "invalid offsetof from non-POD type")) {
- // Ignore this
- goto notgcc;
-- }
-+ } else if (strstr(p, "from ")) {
-+ goto notgcc;
-+ }
- p1 = strchr(p, ':');
- if (!p1) {
- // not of the form "filename:..."
-@@ -1194,6 +1196,20 @@
- }
- *p1 = '\0'; // null-terminate the line number
- p1++;
-+
-+ // Check that there is a sub-line number appeared in gcc 3.x
-+ if (isdigit(*p1)) {
-+ // Skip over the line number and following collon
-+ do {
-+ p1++;
-+ } while (isdigit(*p1));
-+ if (*p1 != ':') {
-+ // not of the form "filename:linenum:sublinenum:"
-+ goto notgcc;
-+ }
-+ p1++;
-+ }
-+
- if (TestPrefix(&p1, " warning: ")) {
- // Found a warning
- Warning = TRUE;
diff --git a/lang/cli/files/patch-tools::cppmunge::makefile.in b/lang/cli/files/patch-tools::cppmunge::makefile.in
deleted file mode 100644
index 0bd5ad79cc49..000000000000
--- a/lang/cli/files/patch-tools::cppmunge::makefile.in
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- tools/cppmunge/makefile.in 2003/04/25 07:24:34 1.1
-+++ tools/cppmunge/makefile.in 2003/04/25 07:25:00
-@@ -18,7 +18,7 @@
- # ============================================================================
-
- BIGENDIAN=@BIGENDIAN@
--CFLAGS = -g -Wall -O2 $(BIGENDIAN)
-+CFLAGS += -fno-builtin -fno-exceptions -fno-rtti $(BIGENDIAN)
- TARGET_NAME = $(TARGETCOMPLUS)/cppmunge
- CC = @CC@
-
diff --git a/lang/cli/pkg-descr b/lang/cli/pkg-descr
deleted file mode 100644
index 8b3c8d50ded3..000000000000
--- a/lang/cli/pkg-descr
+++ /dev/null
@@ -1,25 +0,0 @@
- The Common Language Infrastructure (CLI) is the ECMA standard that
-describes the core of the .NET Framework world. The Shared Source CLI is a a
-working implementation of the ECMA CLI and the ECMA C# language specification.
- This implementation is released under a shared source initiative. Please
-see the accompanying license.
- The Shared Source CLI goes beyond the printed specification of the ECMA
-standards, providing a working implementation for CLI developers to explore and
-understand. It will be of interest to academics and researchers wishing to teach
-and explore modern programming language concepts, and to .NET developers
-interested in how the technology works.
-
-Features:
-o An implementation of the runtime for the Common Language Infrastructure
- (ECMA-335);
-o Compilers that work with the Shared Source CLI for C# (ECMA-334) and JScript;
-o Development tools for working with the Shared Source CLI such as
- assembler/disassemblers (ilasm, ildasm), a debugger (cordbg), metadata
- introspection (metainfo), and other utilities;
-o The Platform Adaptation Layer (PAL) used to port the Shared Source CLI from
- Windows XP to FreeBSD;
-o Build environment tools (nmake, build, and others);
-o Documentation for the implementation;
-o Test suites used to verify the implementation.
-
-WWW: http://msdn.microsoft.com/net/sscli/
diff --git a/lang/cli/pkg-plist b/lang/cli/pkg-plist
deleted file mode 100644
index 742aaebcc3bd..000000000000
--- a/lang/cli/pkg-plist
+++ /dev/null
@@ -1,474 +0,0 @@
-cli-%%CLI_VERSION%%/ISymWrapper.dll
-cli-%%CLI_VERSION%%/ISymWrapper.ildb
-cli-%%CLI_VERSION%%/Microsoft.JScript.dll
-cli-%%CLI_VERSION%%/Microsoft.JScript.ildb
-cli-%%CLI_VERSION%%/Microsoft.Vsa.dll
-cli-%%CLI_VERSION%%/Microsoft.Vsa.ildb
-cli-%%CLI_VERSION%%/Symbols.pri/dll/mscorlib.ildb
-cli-%%CLI_VERSION%%/System.Runtime.Remoting.dll
-cli-%%CLI_VERSION%%/System.Runtime.Remoting.ildb
-cli-%%CLI_VERSION%%/System.Runtime.Serialization.Formatters.Soap.dll
-cli-%%CLI_VERSION%%/System.Runtime.Serialization.Formatters.Soap.ildb
-cli-%%CLI_VERSION%%/System.Xml.dll
-cli-%%CLI_VERSION%%/System.Xml.ildb
-cli-%%CLI_VERSION%%/System.dll
-cli-%%CLI_VERSION%%/System.ildb
-cli-%%CLI_VERSION%%/al
-cli-%%CLI_VERSION%%/alink.satellite
-cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a/ISymWrapper.dll
-cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.JScript.dll
-cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.Vsa.dll
-cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa/7.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Remoting/1.0.3300.0__b77a5c561934e089/System.Runtime.Remoting.dll
-cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Remoting/1.0.3300.0__b77a5c561934e089/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Serialization.Formatters.Soap/1.0.3300.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll
-cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Serialization.Formatters.Soap/1.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089/System.Xml.dll
-cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089/System.dll
-cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732/__AssemblyInfo__.ini
-cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732/myperm.dll
-cli-%%CLI_VERSION%%/big5.nlp
-cli-%%CLI_VERSION%%/binplace
-cli-%%CLI_VERSION%%/bopomofo.nlp
-cli-%%CLI_VERSION%%/build
-cli-%%CLI_VERSION%%/caspol.exe
-cli-%%CLI_VERSION%%/charinfo.nlp
-cli-%%CLI_VERSION%%/clix
-cli-%%CLI_VERSION%%/clix.satellite
-cli-%%CLI_VERSION%%/config/enterprisesec.config
-cli-%%CLI_VERSION%%/config/enterprisesec.config.cch
-cli-%%CLI_VERSION%%/config/enterprisesec.config.old
-cli-%%CLI_VERSION%%/config/machine.config
-cli-%%CLI_VERSION%%/config/security.config
-cli-%%CLI_VERSION%%/config/security.config.cch
-cli-%%CLI_VERSION%%/config/security.config.old
-cli-%%CLI_VERSION%%/cppmunge
-cli-%%CLI_VERSION%%/csc
-cli-%%CLI_VERSION%%/csc.rsp
-cli-%%CLI_VERSION%%/cscomp.satellite
-cli-%%CLI_VERSION%%/ctype.nlp
-cli-%%CLI_VERSION%%/culture.nlp
-cli-%%CLI_VERSION%%/dump/__mscoree_file__.h
-cli-%%CLI_VERSION%%/dump/allocacheck.h
-cli-%%CLI_VERSION%%/dump/arraylist.h
-cli-%%CLI_VERSION%%/dump/blobfetcher.h
-cli-%%CLI_VERSION%%/dump/cahlpr.h
-cli-%%CLI_VERSION%%/dump/caspol.exe
-cli-%%CLI_VERSION%%/dump/caspol.ildb
-cli-%%CLI_VERSION%%/dump/ceefilegenwriter.h
-cli-%%CLI_VERSION%%/dump/ceegen.h
-cli-%%CLI_VERSION%%/dump/ceegentokenmapper.h
-cli-%%CLI_VERSION%%/dump/ceesectionstring.h
-cli-%%CLI_VERSION%%/dump/classfac.h
-cli-%%CLI_VERSION%%/dump/clear-class-dump-defs.h
-cli-%%CLI_VERSION%%/dump/columnbinding.h
-cli-%%CLI_VERSION%%/dump/compressionformat.h
-cli-%%CLI_VERSION%%/dump/contxt.h
-cli-%%CLI_VERSION%%/dump/cordbpriv.h
-cli-%%CLI_VERSION%%/dump/corffi.h
-cli-%%CLI_VERSION%%/dump/corhlpr.h
-cli-%%CLI_VERSION%%/dump/corhost.h
-cli-%%CLI_VERSION%%/dump/corimage.h
-cli-%%CLI_VERSION%%/dump/corinfo.h
-cli-%%CLI_VERSION%%/dump/corjit.h
-cli-%%CLI_VERSION%%/dump/corperm.h
-cli-%%CLI_VERSION%%/dump/corperme.h
-cli-%%CLI_VERSION%%/dump/corpermp.h
-cli-%%CLI_VERSION%%/dump/corpolicy.h
-cli-%%CLI_VERSION%%/dump/corpriv.h
-cli-%%CLI_VERSION%%/dump/corsvcpriv.h
-cli-%%CLI_VERSION%%/dump/cortypeinfo.h
-cli-%%CLI_VERSION%%/dump/crtwrap.h
-cli-%%CLI_VERSION%%/dump/dbgalloc.h
-cli-%%CLI_VERSION%%/dump/dbgmeta.h
-cli-%%CLI_VERSION%%/dump/debugmacros.h
-cli-%%CLI_VERSION%%/dump/declsec.h
-cli-%%CLI_VERSION%%/dump/dump-tables.h
-cli-%%CLI_VERSION%%/dump/dump-type-info.h
-cli-%%CLI_VERSION%%/dump/dump-types.h
-cli-%%CLI_VERSION%%/dump/eetwain.h
-cli-%%CLI_VERSION%%/dump/ehencoder.h
-cli-%%CLI_VERSION%%/dump/enc.h
-cli-%%CLI_VERSION%%/dump/frame-types.h
-cli-%%CLI_VERSION%%/dump/fusion.h
-cli-%%CLI_VERSION%%/dump/fusionbind.h
-cli-%%CLI_VERSION%%/dump/fusionpriv.h
-cli-%%CLI_VERSION%%/dump/fusionsetup.h
-cli-%%CLI_VERSION%%/dump/fusionsink.h
-cli-%%CLI_VERSION%%/dump/fuspriv.h
-cli-%%CLI_VERSION%%/dump/guidfromname.h
-cli-%%CLI_VERSION%%/dump/holder.h
-cli-%%CLI_VERSION%%/dump/hrex.h
-cli-%%CLI_VERSION%%/dump/iceefilegen.h
-cli-%%CLI_VERSION%%/dump/il_kywd.h
-cli-%%CLI_VERSION%%/dump/ilformatter.h
-cli-%%CLI_VERSION%%/dump/internaldebug.h
-cli-%%CLI_VERSION%%/dump/intrinsic.h
-cli-%%CLI_VERSION%%/dump/ipcfunccall.h
-cli-%%CLI_VERSION%%/dump/ipcmanagerinterface.h
-cli-%%CLI_VERSION%%/dump/jitperf.h
-cli-%%CLI_VERSION%%/dump/log.h
-cli-%%CLI_VERSION%%/dump/loglf.h
-cli-%%CLI_VERSION%%/dump/machine.h
-cli-%%CLI_VERSION%%/dump/md5.h
-cli-%%CLI_VERSION%%/dump/mdcommon.h
-cli-%%CLI_VERSION%%/dump/member-offset-info.h
-cli-%%CLI_VERSION%%/dump/metadata.h
-cli-%%CLI_VERSION%%/dump/metadatatracker.h
-cli-%%CLI_VERSION%%/dump/metamodelpub.h
-cli-%%CLI_VERSION%%/dump/mscorcfg.h
-cli-%%CLI_VERSION%%/dump/nativevaraccessors.h
-cli-%%CLI_VERSION%%/dump/nsutilpriv.h
-cli-%%CLI_VERSION%%/dump/openum.h
-cli-%%CLI_VERSION%%/dump/opinfo.h
-cli-%%CLI_VERSION%%/dump/outstring.h
-cli-%%CLI_VERSION%%/dump/palclr.h
-cli-%%CLI_VERSION%%/dump/palstartup.h
-cli-%%CLI_VERSION%%/dump/palstartupw.h
-cli-%%CLI_VERSION%%/dump/perfcounterdefs.h
-cli-%%CLI_VERSION%%/dump/perfcounters.h
-cli-%%CLI_VERSION%%/dump/perflog.h
-cli-%%CLI_VERSION%%/dump/pesectionman.h
-cli-%%CLI_VERSION%%/dump/posterror.h
-cli-%%CLI_VERSION%%/dump/prettyprintsig.h
-cli-%%CLI_VERSION%%/dump/profilepriv.h
-cli-%%CLI_VERSION%%/dump/querybinding.h
-cli-%%CLI_VERSION%%/dump/regdisp.h
-cli-%%CLI_VERSION%%/dump/safegetfilesize.h
-cli-%%CLI_VERSION%%/dump/secdbedit.exe
-cli-%%CLI_VERSION%%/dump/secdbedit.ildb
-cli-%%CLI_VERSION%%/dump/setupcodes.h
-cli-%%CLI_VERSION%%/dump/shimload.h
-cli-%%CLI_VERSION%%/dump/sighelper.h
-cli-%%CLI_VERSION%%/dump/sscli_version.h
-cli-%%CLI_VERSION%%/dump/stacktrace.h
-cli-%%CLI_VERSION%%/dump/stdmacros.h
-cli-%%CLI_VERSION%%/dump/stgpool.h
-cli-%%CLI_VERSION%%/dump/stgpooli.h
-cli-%%CLI_VERSION%%/dump/stresslog.h
-cli-%%CLI_VERSION%%/dump/switches.h
-cli-%%CLI_VERSION%%/dump/threadpool.h
-cli-%%CLI_VERSION%%/dump/timeline.h
-cli-%%CLI_VERSION%%/dump/timer.h
-cli-%%CLI_VERSION%%/dump/tpoolfnsp.h
-cli-%%CLI_VERSION%%/dump/utilcode.h
-cli-%%CLI_VERSION%%/dump/utsem.h
-cli-%%CLI_VERSION%%/dump/vererror.h
-cli-%%CLI_VERSION%%/dump/warningcontrol.h
-cli-%%CLI_VERSION%%/dump/winwrap.h
-cli-%%CLI_VERSION%%/dump/wsinfo.h
-cli-%%CLI_VERSION%%/dump/wsperf.h
-cli-%%CLI_VERSION%%/dump/xmlparser.h
-cli-%%CLI_VERSION%%/fusion.localgac
-cli-%%CLI_VERSION%%/fusion.satellite
-cli-%%CLI_VERSION%%/gacutil
-cli-%%CLI_VERSION%%/int_tools/internalresgen
-cli-%%CLI_VERSION%%/jsc.exe
-cli-%%CLI_VERSION%%/jsc.ildb
-cli-%%CLI_VERSION%%/ksc.nlp
-cli-%%CLI_VERSION%%/l_except.nlp
-cli-%%CLI_VERSION%%/l_intl.nlp
-cli-%%CLI_VERSION%%/libalink.so
-cli-%%CLI_VERSION%%/libcscomp.so
-cli-%%CLI_VERSION%%/libfusion.so
-cli-%%CLI_VERSION%%/libildbsymbols.so
-cli-%%CLI_VERSION%%/libmscordbc.so
-cli-%%CLI_VERSION%%/libmscordbi.so
-cli-%%CLI_VERSION%%/libmscorejt.so
-cli-%%CLI_VERSION%%/libmscorpe.so
-cli-%%CLI_VERSION%%/libmscorrc.so
-cli-%%CLI_VERSION%%/libmscorsn.so
-cli-%%CLI_VERSION%%/librotor_pal.so
-cli-%%CLI_VERSION%%/librotor_palrt.so
-cli-%%CLI_VERSION%%/libsos.so
-cli-%%CLI_VERSION%%/libsscoree.so
-cli-%%CLI_VERSION%%/license.txt
-cli-%%CLI_VERSION%%/mscorlib.dll
-cli-%%CLI_VERSION%%/mscorrc.satellite
-cli-%%CLI_VERSION%%/nmake
-cli-%%CLI_VERSION%%/prc.nlp
-cli-%%CLI_VERSION%%/prcp.nlp
-cli-%%CLI_VERSION%%/private/lib/System.dll
-cli-%%CLI_VERSION%%/region.nlp
-cli-%%CLI_VERSION%%/resourcecompiler
-cli-%%CLI_VERSION%%/rotor/rotor.ini
-cli-%%CLI_VERSION%%/rotor/strongname.ini
-cli-%%CLI_VERSION%%/rotor_pal.satellite
-cli-%%CLI_VERSION%%/samples/compilers/clisp/clisp.exe
-cli-%%CLI_VERSION%%/samples/compilers/clisp/clisp.ildb
-cli-%%CLI_VERSION%%/samples/compilers/clisp/fibo.lisp
-cli-%%CLI_VERSION%%/samples/compilers/clisp/sort.lisp
-cli-%%CLI_VERSION%%/samples/compilers/myc/myc.exe
-cli-%%CLI_VERSION%%/samples/compilers/myc/myc.ildb
-cli-%%CLI_VERSION%%/samples/compilers/myc/t01.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t02.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t03.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t04.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t05.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t06.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t07.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/t08.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/tdll.myc
-cli-%%CLI_VERSION%%/samples/compilers/myc/tflow.myc
-cli-%%CLI_VERSION%%/samples/hello/hello.exe
-cli-%%CLI_VERSION%%/samples/hello/hello.ildb
-cli-%%CLI_VERSION%%/samples/hello/helloxml.exe
-cli-%%CLI_VERSION%%/samples/hello/helloxml.ildb
-cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat/stringformat.exe
-cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat/stringformat.ildb
-cli-%%CLI_VERSION%%/samples/howto/codedom/listbuilder.exe
-cli-%%CLI_VERSION%%/samples/howto/codedom/listbuilder.ildb
-cli-%%CLI_VERSION%%/samples/howto/net/getresponse/getresponse.exe
-cli-%%CLI_VERSION%%/samples/howto/net/getresponse/getresponse.ildb
-cli-%%CLI_VERSION%%/samples/howto/net/udpchat/udpchat.exe
-cli-%%CLI_VERSION%%/samples/howto/net/udpchat/udpchat.ildb
-cli-%%CLI_VERSION%%/samples/howto/reflection/emit/reflectionemit.exe
-cli-%%CLI_VERSION%%/samples/howto/reflection/emit/reflectionemit.ildb
-cli-%%CLI_VERSION%%/samples/howto/reflection/invoke/reflectioninvoke.exe
-cli-%%CLI_VERSION%%/samples/howto/reflection/invoke/reflectioninvoke.ildb
-cli-%%CLI_VERSION%%/samples/howto/regularexpressions/regularexpressions.exe
-cli-%%CLI_VERSION%%/samples/howto/regularexpressions/regularexpressions.ildb
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingclient.exe
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingclient.ildb
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingserver.exe
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingserver.ildb
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingshared.dll
-cli-%%CLI_VERSION%%/samples/howto/remoting/remotingshared.ildb
-cli-%%CLI_VERSION%%/samples/howto/resources/managedresources.exe
-cli-%%CLI_VERSION%%/samples/howto/resources/managedresources.ildb
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/authorized.exe
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/authorized.ildb
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/exclusive.bat
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/exclusive.sh
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.dll
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.ildb
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.xml
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/names.txt
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/namestore.dll
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/namestore.ildb
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/setpolicy.bat
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/setpolicy.sh
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/unauthorized.exe
-cli-%%CLI_VERSION%%/samples/howto/security/permissions/unauthorized.ildb
-cli-%%CLI_VERSION%%/samples/howto/serialization/iserializable.exe
-cli-%%CLI_VERSION%%/samples/howto/serialization/iserializable.ildb
-cli-%%CLI_VERSION%%/samples/howto/serialization/simpleserialize.exe
-cli-%%CLI_VERSION%%/samples/howto/serialization/simpleserialize.ildb
-cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/books.xsd
-cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/poschema.xsd
-cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/xmlschema.exe
-cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/xmlschema.ildb
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/books.xml
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/books.xsl
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/processparameters1.xml
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/processparameters2.xml
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/stylesheetgenerator.xsl
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/xmltransform.exe
-cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/xmltransform.ildb
-cli-%%CLI_VERSION%%/samples/howto/xmlserialization/inputdata.xml
-cli-%%CLI_VERSION%%/samples/howto/xmlserialization/purchaseorder.dll
-cli-%%CLI_VERSION%%/samples/howto/xmlserialization/purchaseorder.ildb
-cli-%%CLI_VERSION%%/samples/howto/xmlserialization/xmlserialize.exe
-cli-%%CLI_VERSION%%/samples/howto/xmlserialization/xmlserialize.ildb
-cli-%%CLI_VERSION%%/samples/pigui/pighello.exe
-cli-%%CLI_VERSION%%/samples/pigui/pighello.ildb
-cli-%%CLI_VERSION%%/samples/pigui/pigpad.exe
-cli-%%CLI_VERSION%%/samples/pigui/pigpad.ildb
-cli-%%CLI_VERSION%%/samples/pigui/sharedsourcecli.tk.dll
-cli-%%CLI_VERSION%%/samples/pigui/sharedsourcecli.tk.ildb
-cli-%%CLI_VERSION%%/samples/utilities/cleanbuild/cleanbuild.exe
-cli-%%CLI_VERSION%%/samples/utilities/cleanbuild/cleanbuild.ildb
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codeblue.css
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codetohtml.exe
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codetohtml.ildb
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codewhite.css
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_codetohtml.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_futurereserved.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_keywords.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_replace.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_userdefined.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/footer.txt
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/header.txt
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_codetohtml.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_futurereserved.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_keywords.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_replace.ini
-cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_userdefined.ini
-cli-%%CLI_VERSION%%/samples/utilities/corclass/corcls.exe
-cli-%%CLI_VERSION%%/samples/utilities/corclass/corcls.ildb
-cli-%%CLI_VERSION%%/samples/utilities/crlf/crlf.exe
-cli-%%CLI_VERSION%%/samples/utilities/crlf/crlf.ildb
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/libdnprofiler.so
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.bat
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.csh
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.sh
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.bat
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.csh
-cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.sh
-cli-%%CLI_VERSION%%/samples/utilities/getcliversion/getcliversion.exe
-cli-%%CLI_VERSION%%/samples/utilities/getcliversion/getcliversion.ildb
-cli-%%CLI_VERSION%%/samples/utilities/grep/ngrep.exe
-cli-%%CLI_VERSION%%/samples/utilities/grep/ngrep.ildb
-cli-%%CLI_VERSION%%/samples/utilities/keyconfig/keyconfig.exe
-cli-%%CLI_VERSION%%/samples/utilities/keyconfig/keyconfig.ildb
-cli-%%CLI_VERSION%%/samples/utilities/typefinder/typefinder.exe
-cli-%%CLI_VERSION%%/samples/utilities/typefinder/typefinder.ildb
-cli-%%CLI_VERSION%%/samples/utilities/wordcount/wordcount.exe
-cli-%%CLI_VERSION%%/samples/utilities/wordcount/wordcount.ildb
-cli-%%CLI_VERSION%%/samples/utilities/xsd/xsd.exe
-cli-%%CLI_VERSION%%/samples/utilities/xsd/xsd.ildb
-cli-%%CLI_VERSION%%/sdk/bin/cordbg
-cli-%%CLI_VERSION%%/sdk/bin/ilasm
-cli-%%CLI_VERSION%%/sdk/bin/ildasm
-cli-%%CLI_VERSION%%/sdk/bin/ildasm.satellite
-cli-%%CLI_VERSION%%/sdk/bin/ildbdump
-cli-%%CLI_VERSION%%/sdk/bin/metainfo
-cli-%%CLI_VERSION%%/sdk/bin/permview
-cli-%%CLI_VERSION%%/sdk/bin/permview.satellite
-cli-%%CLI_VERSION%%/sdk/bin/peverify
-cli-%%CLI_VERSION%%/sdk/bin/resgen.exe
-cli-%%CLI_VERSION%%/sdk/bin/resgen.ildb
-cli-%%CLI_VERSION%%/sdk/bin/sn
-cli-%%CLI_VERSION%%/sdk/bin/sn.satellite
-cli-%%CLI_VERSION%%/sdk/bin/storeadm.exe
-cli-%%CLI_VERSION%%/sdk/bin/storeadm.ildb
-cli-%%CLI_VERSION%%/sdk/include/cor.h
-cli-%%CLI_VERSION%%/sdk/include/cordebug.h
-cli-%%CLI_VERSION%%/sdk/include/corerror.h
-cli-%%CLI_VERSION%%/sdk/include/corhdr.h
-cli-%%CLI_VERSION%%/sdk/include/corprof.h
-cli-%%CLI_VERSION%%/sdk/include/corpub.h
-cli-%%CLI_VERSION%%/sdk/include/corsym.h
-cli-%%CLI_VERSION%%/sdk/include/gchost.h
-cli-%%CLI_VERSION%%/sdk/include/ivalidator.h
-cli-%%CLI_VERSION%%/sdk/include/ivehandler.h
-cli-%%CLI_VERSION%%/sdk/include/mscoree.h
-cli-%%CLI_VERSION%%/sdk/include/opcode.def
-cli-%%CLI_VERSION%%/sdk/include/strongname.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/assert.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/atl.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/ccombstr.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/crtdbg.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/ctype.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/float.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/guiddef.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/io.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/limits.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/malloc.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/math.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/mbstring.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/memory.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/new.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/ntimage.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/oaidl.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/objbase.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/objidl.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/ole2.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/oleauto.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/poppack.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/process.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/pshpack1.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/pshpack2.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/pshpack4.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/pshpack8.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/rotor_pal.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/rotor_palrt.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/rpc.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/rpcndr.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/servprov.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/shlwapi.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/stdarg.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/stddef.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/stdio.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/stdlib.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/string.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/time.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/unknwn.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/wchar.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/winbase.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/wincrypt.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/windef.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/windows.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/winerror.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/winnls.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/winresrc.h
-cli-%%CLI_VERSION%%/sdk/pal/inc/winver.h
-cli-%%CLI_VERSION%%/sortkey.nlp
-cli-%%CLI_VERSION%%/sorttbls.nlp
-cli-%%CLI_VERSION%%/xjis.nlp
-@dirrm cli-%%CLI_VERSION%%/sdk/pal/inc
-@dirrm cli-%%CLI_VERSION%%/sdk/pal
-@dirrm cli-%%CLI_VERSION%%/sdk/include
-@dirrm cli-%%CLI_VERSION%%/sdk/bin
-@dirrm cli-%%CLI_VERSION%%/sdk
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/xsd
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/wordcount
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/typefinder
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/keyconfig
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/grep
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/getcliversion
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/dnprofiler
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/crlf
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/corclass
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/codetohtml
-@dirrm cli-%%CLI_VERSION%%/samples/utilities/cleanbuild
-@dirrm cli-%%CLI_VERSION%%/samples/utilities
-@dirrm cli-%%CLI_VERSION%%/samples/pigui
-@dirrm cli-%%CLI_VERSION%%/samples/howto/xmlserialization
-@dirrm cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform
-@dirrm cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema
-@dirrm cli-%%CLI_VERSION%%/samples/howto/xml
-@dirrm cli-%%CLI_VERSION%%/samples/howto/serialization
-@dirrm cli-%%CLI_VERSION%%/samples/howto/security/permissions
-@dirrm cli-%%CLI_VERSION%%/samples/howto/security
-@dirrm cli-%%CLI_VERSION%%/samples/howto/resources
-@dirrm cli-%%CLI_VERSION%%/samples/howto/remoting
-@dirrm cli-%%CLI_VERSION%%/samples/howto/regularexpressions
-@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection/invoke
-@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection/emit
-@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection
-@dirrm cli-%%CLI_VERSION%%/samples/howto/net/udpchat
-@dirrm cli-%%CLI_VERSION%%/samples/howto/net/getresponse
-@dirrm cli-%%CLI_VERSION%%/samples/howto/net
-@dirrm cli-%%CLI_VERSION%%/samples/howto/codedom
-@dirrm cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat
-@dirrm cli-%%CLI_VERSION%%/samples/howto/basedatatypes
-@dirrm cli-%%CLI_VERSION%%/samples/howto
-@dirrm cli-%%CLI_VERSION%%/samples/hello
-@dirrm cli-%%CLI_VERSION%%/samples/compilers/myc
-@dirrm cli-%%CLI_VERSION%%/samples/compilers/clisp
-@dirrm cli-%%CLI_VERSION%%/samples/compilers
-@dirrm cli-%%CLI_VERSION%%/samples
-@dirrm cli-%%CLI_VERSION%%/rotor
-@dirrm cli-%%CLI_VERSION%%/private/lib/rotor_x86
-@dirrm cli-%%CLI_VERSION%%/private/lib
-@dirrm cli-%%CLI_VERSION%%/private
-@dirrm cli-%%CLI_VERSION%%/int_tools
-@dirrm cli-%%CLI_VERSION%%/dump
-@dirrm cli-%%CLI_VERSION%%/config
-@dirrm cli-%%CLI_VERSION%%/assembly/tmp
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/myperm
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Xml
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Serialization.Formatters.Soap/1.0.3300.0__b03f5f7f11d50a3a
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Serialization.Formatters.Soap
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Remoting/1.0.3300.0__b77a5c561934e089
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Runtime.Remoting
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa/7.0.3300.0__b03f5f7f11d50a3a
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper
-@dirrm cli-%%CLI_VERSION%%/assembly/GAC
-@dirrm cli-%%CLI_VERSION%%/assembly
-@dirrm cli-%%CLI_VERSION%%/Symbols.pri/dll
-@dirrm cli-%%CLI_VERSION%%/Symbols.pri
-@dirrm cli-%%CLI_VERSION%%
diff --git a/lang/cli/scripts/portconfigure b/lang/cli/scripts/portconfigure
deleted file mode 100644
index 8432531c3d1e..000000000000
--- a/lang/cli/scripts/portconfigure
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-. env.sh
-shift
-./configure "${@}"