aboutsummaryrefslogtreecommitdiff
path: root/base/ca_certificates
diff options
context:
space:
mode:
Diffstat (limited to 'base/ca_certificates')
-rw-r--r--base/ca_certificates/ca-certificates-20130119-destdir.patch.xzbin0 -> 620 bytes
-rw-r--r--base/ca_certificates/ca-certificates-20130119-fixupdate.patch.xzbin0 -> 400 bytes
-rw-r--r--base/ca_certificates/ca-certificates-20130119-nodebconf.patch.xzbin0 -> 292 bytes
-rw-r--r--base/ca_certificates/ca-certificates-20130119-paths.patch.xzbin0 -> 448 bytes
-rwxr-xr-xbase/ca_certificates/ca_certificates.build61
5 files changed, 61 insertions, 0 deletions
diff --git a/base/ca_certificates/ca-certificates-20130119-destdir.patch.xz b/base/ca_certificates/ca-certificates-20130119-destdir.patch.xz
new file mode 100644
index 0000000..8c5b795
--- /dev/null
+++ b/base/ca_certificates/ca-certificates-20130119-destdir.patch.xz
Binary files differ
diff --git a/base/ca_certificates/ca-certificates-20130119-fixupdate.patch.xz b/base/ca_certificates/ca-certificates-20130119-fixupdate.patch.xz
new file mode 100644
index 0000000..765d042
--- /dev/null
+++ b/base/ca_certificates/ca-certificates-20130119-fixupdate.patch.xz
Binary files differ
diff --git a/base/ca_certificates/ca-certificates-20130119-nodebconf.patch.xz b/base/ca_certificates/ca-certificates-20130119-nodebconf.patch.xz
new file mode 100644
index 0000000..a635447
--- /dev/null
+++ b/base/ca_certificates/ca-certificates-20130119-nodebconf.patch.xz
Binary files differ
diff --git a/base/ca_certificates/ca-certificates-20130119-paths.patch.xz b/base/ca_certificates/ca-certificates-20130119-paths.patch.xz
new file mode 100644
index 0000000..58c7983
--- /dev/null
+++ b/base/ca_certificates/ca-certificates-20130119-paths.patch.xz
Binary files differ
diff --git a/base/ca_certificates/ca_certificates.build b/base/ca_certificates/ca_certificates.build
new file mode 100755
index 0000000..7d6ccb6
--- /dev/null
+++ b/base/ca_certificates/ca_certificates.build
@@ -0,0 +1,61 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=ca_certificates
+VERSION=20130119
+ARCH=noarch
+BUILD=1
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: ca-certificates (PEM Files of CA Certificates)
+${NAME}:
+${NAME}: This package includes PEM files of CA certificates to allow
+${NAME}: SSL-based applications to check for the authenticity of SSL
+${NAME}: connections.
+${NAME}:
+${NAME}: Homepage: http://packages.qa.debian.org/c/ca-certificates.html
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+EOF
+
+cat >> ${PKG}/install/doinst.sh <<EOF
+chroot . usr/sbin/update-ca-certificates --fresh 1>/dev/null 2>/dev/null
+EOF
+
+# Sources
+
+SRCNAME[0]=ca-certificates
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=http://packages.debian.org/source/testing/${SRCNAME[0]}/${SRCNAME[0]}_${SRCVERS[0]}.tar.gz
+
+build0()
+{
+make ${JOBS}
+make install DESTDIR="${PKG}"
+doc debian/NEWS
+install.dat doinst.sh ${PKG}/install
+install.dir ${PKG}${SYS_DIR[man]}/man8
+install.man sbin/update-ca-certificates.8 ${PKG}${SYS_DIR[man]}/man8
+install.dir ${PKG}${SYS_DIR[share]}/ca-certificates/update
+install.dir ${PKG}${SYS_DIR[var]}/cache/cacerts
+echo "# Automatically generated by ${NAME}-${VERSION}" > ${PKG}${SYS_DIR[var]}/cache/cacerts/cacerts.cache
+(
+ cd ${PKG}${SYS_DIR[share]}/ca-certificates
+ find . -name '*.crt' | sort | cut -b3-
+) >> ${PKG}${SYS_DIR[var]}/cache/cacerts/cacerts.cache
+}