ccnx-repo, ccnx-trace, ccnx-wsproxy: Removing
diff --git a/net/ccnx-repo/Portfile b/net/ccnx-repo/Portfile
deleted file mode 100644
index 605d75a..0000000
--- a/net/ccnx-repo/Portfile
+++ /dev/null
@@ -1,19 +0,0 @@
-# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
-# $Id$
-
-PortSystem              1.0
-                        
-name                    ccnx-repo
-homepage                http://www.ccnx.org/
-license                 GPL-2+ LGPL-2.1+
-version                 0.7.0
-distfiles
-
-categories              net
-maintainers             ucla.edu:alexander.afanasyev
-                        
-description             Meta port for repo of ccnx package
- 
-replaced_by             ndnx
-
-PortGroup               obsolete 1.0
\ No newline at end of file
diff --git a/net/ccnx-trace/Portfile b/net/ccnx-trace/Portfile
deleted file mode 100644
index 3556db6..0000000
--- a/net/ccnx-trace/Portfile
+++ /dev/null
@@ -1,59 +0,0 @@
-# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
-# $Id$
-
-PortSystem          1.0
-PortGroup           github 1.0
-
-github.setup        cawka ccnx-trace 1.1.3
-checksums           rmd160  d7119d5caaaa1eb28d7fcf4ea432e2af325e414c \
-                    sha256  ef37df403fe99dc9aaed7bd5c45462f8e1e050f37c5a0a182e0b8fd4b6335c40
-
-name                ccnx-trace
-homepage            http://code.google.com/p/ccnx-trace/
-license             GPL-3+
-version             1.1.3
-
-categories          net ccnx
-platforms           darwin
-maintainers         ucla.edu:alexander.afanasyev
-
-description         traceroute-like functionality for CCNx
-
-long_description    The CCNx Trace is a tool with traceroute like functionality for CCNx. \
-                    The CCNx code can be obtained at http://www.ccnx.org. This tools is \
-                    written for troubleshooting problems in a network of ccnx nodes. This \
-                    tool can trace to a certain CCN URI, e.g, ccnx:/ndn/csu/netsec/index. \
-                    The tool displays all routes to the namespace and problems at each route, \
-                    if any. In this process, the tool bypasses the intermediate ccnx caches. 
-
-use_autoreconf      yes
-use_configure       yes
-depends_lib-append  port:ccnx
-
-configure.args-append  --with-ccnx=${prefix} \
-                       --with-openssl=${prefix}
-
-post-patch {
-    reinplace   "s|LOGFILE \"ccn_traced.log\"|LOGFILE \"${prefix}/var/log/ccn_traced.log\"|g" ${worksrcpath}/source/conf.h
-}
-
-post-destroot {
-    system "echo \"su - ccnx -c '${prefix}/bin/ccn_traced'\"  > \"${destroot}${prefix}/bin/ccn_traced-wrapper\""
-    file attributes "${destroot}${prefix}/bin/ccn_traced-wrapper" -permissions 0755
-}
-
-post-activate {
-    touch "${prefix}/var/log/ccn_traced.log"
-    file attributes "${prefix}/var/log/ccn_traced.log" -owner ccnx -group ccnx
-}
-
-startupitem.executable  "${prefix}/bin/ccn_traced-wrapper"
-
-startupitem.create      yes
-startupitem.name        ${name}
-
-startupitem.netchange   no
-
-startupitem.logevents   yes
-startupitem.logfile     ${prefix}/var/log/ccnx-trace-events.log
-
diff --git a/net/ccnx-trace/files/patch-Makefiles.diff b/net/ccnx-trace/files/patch-Makefiles.diff
deleted file mode 100644
index 3956988..0000000
--- a/net/ccnx-trace/files/patch-Makefiles.diff
+++ /dev/null
@@ -1,51 +0,0 @@
-diff --git Makefile Makefile
-new file mode 100644
-index 0000000..2836550
---- /dev/null
-+++ Makefile
-@@ -0,0 +1,5 @@
-+
-+all install clean uninstall: .always
-+	(cd source; make $@)
-+
-+.always:
-diff --git source/Makefile source/Makefile
-index f6fba70..8531b0a 100644
---- source/Makefile
-+++ source/Makefile
-@@ -1,31 +1,27 @@
--CC = gcc
--CFLAGS = -g -Wall -Wpointer-arith -Wreturn-type -Wstrict-prototypes
- LIBS = -lccn -lcrypto
- 
- PROGRAM_CL = trace
- PROGRAM_SR = ccn_traced
- 
--INSTALL_DIR=/usr/local/bin
--
- all: $(PROGRAM_CL) $(PROGRAM_SR)
- 
- trace: trace_client.o
--	$(CC) $(CFLAGS) -o trace trace_client.o $(LIBS)
-+	$(CC) $(CFLAGS) $(LDFLAGS) -o trace trace_client.o $(LIBS)
- 
- trace_client.o:
- 	$(CC) $(CFLAGS) -c trace_client.c
- 
- ccn_traced: trace_server.o
--	$(CC) $(CFLAGS) -o ccn_traced trace_server.o $(LIBS)
-+	$(CC) $(CFLAGS) $(LDFLAGS) -o ccn_traced trace_server.o $(LIBS)
- 
- trace_server.o:
- 	$(CC) $(CFLAGS) -c trace_server.c
- 
- install: 
--	install -m 0755 $(PROGRAM_CL) $(PROGRAM_SR) $(INSTALL_DIR)
-+	install -m 0755 $(PROGRAM_CL) $(PROGRAM_SR) $(DESTDIR)$(INSTALL_DIR)/bin
- 
- uninstall: 
--	rm -f $(INSTALL_DIR)/$(PROGRAM_CL) $(INSTALL_DIR)/$(PROGRAM_SR)
-+	rm -f $(DESTDIR)$(INSTALL_DIR)/bin/$(PROGRAM_CL) $(DESTDIR)$(INSTALL_DIR)/bin/$(PROGRAM_SR)
- 
- clean:
- 	rm -f *.o
diff --git a/net/ccnx-wsproxy/Portfile b/net/ccnx-wsproxy/Portfile
deleted file mode 100644
index 698130c..0000000
--- a/net/ccnx-wsproxy/Portfile
+++ /dev/null
@@ -1,60 +0,0 @@
-# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
-# $Id$
-
-PortSystem              1.0
-PortGroup               github 1.0
-
-github.setup            named-data ndn-js aa0b4120afd1d33a87e9003906ecc538a20dbc39
-checksums               rmd160  6fe5946e31095d0a700bc9fc9edfad2176591cb9 \
-                        sha256  4ff92fa6e70964ff651beb54c84c9a694354bcc8018385bb25eea14749d48a79
-
-name                    ccnx-wsproxy
-homepage                http://github.com/named-data/ndn-js
-license                 Permissive BSD
-version                 0.1
-revision                2
-
-categories              net ccnx
-maintainers             ucla.edu:alexander.afanasyev
-
-description             WebSocket proxy server between NDN javascript stack and ccnx
-
-depends_lib-append      port:ccnx \
-                        port:nodejs \
-                        port:npm
-
-set ccnxuser            ccnx
-
-supported_archs         noarch
-use_configure           yes
-
-configure.cmd           ./waf configure
-configure.args-append   --no-js
-
-build       { }
-
-destroot.cmd            ./waf
-destroot.destdir        --destdir=${destroot}
-
-post-destroot {
-    system "echo \"su ${ccnxuser} -c 'NODE_PATH=${prefix}/lib/node_modules ${prefix}/bin/node ${prefix}/bin/ccnx-wsproxy-tcp.js \\\$0'\"  > \"${destroot}${prefix}/bin/ccnx-wsproxy-tcp\""
-    file attributes "${destroot}${prefix}/bin/ccnx-wsproxy-tcp" -permissions 0755
-
-    system "echo \"su ${ccnxuser} -c 'NODE_PATH=${prefix}/lib/node_modules ${prefix}/bin/node ${prefix}/bin/ccnx-wsproxy-udp.js \\\$0'\"  > \"${destroot}${prefix}/bin/ccnx-wsproxy-udp\""
-    file attributes "${destroot}${prefix}/bin/ccnx-wsproxy-udp" -permissions 0755
-}
-
-post-activate {
-    # install ccnx-wsproxy dependencies using npm
-    system "${prefix}/bin/npm install -g ws"
-    system "${prefix}/bin/npm install -g node-getopt"
-}
-
-startupitem.executable  ${prefix}/bin/ccnx-wsproxy-udp -c 127.0.0.1 -m 40 -L 1
-
-startupitem.create      yes
-startupitem.name        ${name}
-
-startupitem.netchange   no
-startupitem.logevents   yes
-startupitem.logfile     ${prefix}/var/log/ccnx-wsproxy.log