aboutsummaryrefslogtreecommitdiffstats
path: root/freebsd.sh/freebsd.install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd.sh/freebsd.install.sh')
-rwxr-xr-xfreebsd.sh/freebsd.install.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/freebsd.sh/freebsd.install.sh b/freebsd.sh/freebsd.install.sh
deleted file mode 100755
index 6d496e7..0000000
--- a/freebsd.sh/freebsd.install.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-msg_and_copy () {
- echo "==> Copying $1 to $2" 1>&2
- cp -r "$1" "$2"
-}
-
-msg_and_mkdir () {
- echo "==> Creating directory $1" 1>&2
- mkdir -p "$1"
-}
-
-: ${PORTSDIR:="/usr/ports"}
-[ '!' -d "${PORTSDIR}/local" ] && \
- msg_and_mkdir "${PORTSDIR}/local"
-[ '!' -f "${PORTSDIR}/local/Makefile" ] && \
- msg_and_copy "freebsd.in/freebsd.local.Makefile" "${PORTSDIR}/local/Makefile"
-[ '!' -f "${PORTSDIR}/local/Makefile.inc" ] && \
- msg_and_copy "freebsd.in/freebsd.local.Makefile.inc" "${PORTSDIR}/local/Makefile.inc"
-
-msg_and_copy "freebsd.out/217" "${PORTSDIR}/local"