about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2017-01-20 21:19:27 +0000
committerSilvino Silva <silvino@bk.ru>2017-01-20 21:19:27 +0000
commit6e6c7bee0bb353f225ed6fab8aa29e2131b9c5e9 (patch)
treef52e014c0da791d7345d14ce711927a430cb05c1 /tools
parent2aab379491d397646d289426299f735dae0047bc (diff)
downloaddoc-6e6c7bee0bb353f225ed6fab8aa29e2131b9c5e9.tar.gz
tools scripts help ports
Diffstat (limited to 'tools')
-rw-r--r--tools/scripts/autoport.sh2
-rw-r--r--tools/scripts/pkgmk-test.conf38
-rw-r--r--tools/scripts/pkgmk-test.sh5
3 files changed, 44 insertions, 1 deletions
diff --git a/tools/scripts/autoport.sh b/tools/scripts/autoport.sh
index 178b9d3..9965936 100644
--- a/tools/scripts/autoport.sh
+++ b/tools/scripts/autoport.sh
@@ -20,5 +20,5 @@ for port in ${COL_DIR}*/ ; do
     #echo "$name md5 ${source[0]} @TAR@" >> ck4up.conf
 done
 
-#portspage . > $DIR/ports.html
+portspage --title=c9-ports . > index.html
 httpup-repgen $COL_DIR
diff --git a/tools/scripts/pkgmk-test.conf b/tools/scripts/pkgmk-test.conf
new file mode 100644
index 0000000..2336685
--- /dev/null
+++ b/tools/scripts/pkgmk-test.conf
@@ -0,0 +1,38 @@
+#
+# /etc/pkgmk.conf: pkgmk(8) configuration
+#
+
+export CFLAGS="-O2 -march=x86-64"
+export CXXFLAGS="${CFLAGS}"
+
+export MAKEFLAGS="-j4"
+
+case ${PKGMK_ARCH} in
+	"64"|"")
+		;;
+	"32")
+		export CFLAGS="${CFLAGS} -m32"
+		export CXXFLAGS="${CXXFLAGS} -m32"
+		export LDFLAGS="${LDFLAGS} -m32"
+		export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
+		;;
+	*)
+		echo "Unknown architecture selected! Exiting."
+		exit 1
+		;;
+esac
+
+ PKGMK_SOURCE_MIRRORS=(https://ports.c9.core/distfiles/)
+# PKGMK_SOURCE_DIR="$PWD"
+# PKGMK_PACKAGE_DIR="$PWD"
+# PKGMK_WORK_DIR="$PWD/work"
+# PKGMK_DOWNLOAD="no"
+# PKGMK_IGNORE_FOOTPRINT="no"
+# PKGMK_IGNORE_NEW="no"
+# PKGMK_NO_STRIP="no"
+# PKGMK_DOWNLOAD_PROG="wget"
+# PKGMK_WGET_OPTS=""
+# PKGMK_CURL_OPTS=""
+# PKGMK_COMPRESSION_MODE="gz"
+
+
diff --git a/tools/scripts/pkgmk-test.sh b/tools/scripts/pkgmk-test.sh
new file mode 100644
index 0000000..5509ac2
--- /dev/null
+++ b/tools/scripts/pkgmk-test.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+CONF=${DIR}/pkgmk-test.conf
+
+fakeroot pkgmk -cf $CONF -d $1