aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/jailkit/APKBUILD51
-rw-r--r--testing/jailkit/Makefile.in.patch23
-rw-r--r--testing/jailkit/jailkit.post-deinstall3
-rw-r--r--testing/jailkit/jailkit.post-install3
4 files changed, 0 insertions, 80 deletions
diff --git a/testing/jailkit/APKBUILD b/testing/jailkit/APKBUILD
deleted file mode 100644
index 7bf916e31c..0000000000
--- a/testing/jailkit/APKBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# Contributor: Dean Takemori <deant@hawaii.rr.com>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=jailkit
-pkgver=2.19
-pkgrel=0
-pkgdesc="Utilities for chroot jailing a user or process."
-url="http://olivier.sessink.nl/jailkit"
-arch="all"
-license="custom"
-depends="python"
-depends_dev=""
-options="suid"
-makedepends="$depends_dev"
-install="$pkgname.post-install $pkgname.post-deinstall"
-subpackages="$pkgname-doc"
-source="http://olivier.sessink.nl/jailkit/jailkit-$pkgver.tar.bz2
- Makefile.in.patch"
-
-_builddir="$srcdir/$pkgname-$pkgver"
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
-}
-
-md5sums="9c87b45cfcbf70dda69beb6f4b862a59 jailkit-2.19.tar.bz2
-4be3912010312b1c8980c6b54c4dc61d Makefile.in.patch"
-sha256sums="bebbf6317a5a15057194dd2cf6201821c48c022dbc64c12756eb13b61eff9bf9 jailkit-2.19.tar.bz2
-05bcb1d57d6a0bc95550dec9814bba9990b79d15878a30d22a9644b438a8db0d Makefile.in.patch"
-sha512sums="c685351971d2518932cbbc7a4bfee2c28dafde6271791abc12788cf09d1cc3f38ed013099ca20524d219ccf82d00036cb152f33d81b7239a86d047c8aa3c0322 jailkit-2.19.tar.bz2
-332c5260772d39a676d9d62da614706c1be7771d2ad5620e3de228380b1c62cba40eb8aec0feb817135d68c9438aa9685dc532bf15a2433ed2886d6551e14558 Makefile.in.patch"
diff --git a/testing/jailkit/Makefile.in.patch b/testing/jailkit/Makefile.in.patch
deleted file mode 100644
index 36494ed07f..0000000000
--- a/testing/jailkit/Makefile.in.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- jailkit-2.15/Makefile.in
-+++ jailkit-2.15/Makefile.in-patched
-@@ -67,14 +67,6 @@
- @cd src/ && $(MAKE) install
- @cd py/ && $(MAKE) install
- @cd man/ && $(MAKE) install
-- # test if the jk_chrootsh is already in /etc/shells
-- # this previously had @echo but that fails on FreeBSD
-- if test -w /etc/shells; then \
-- if ! grep ${prefix}/sbin/jk_chrootsh /etc/shells ; then \
-- echo "appending ${prefix}/sbin/jk_chroots to /etc/shells";\
-- echo ${prefix}/sbin/jk_chrootsh >> /etc/shells ;\
-- fi \
-- fi
-
-
- uninstall:
-@@ -83,5 +75,3 @@
- @cd man/ && $(MAKE) uninstall
- @cd src/ && $(MAKE) uninstall
- -rmdir --ignore-fail-on-non-empty ${DESTDIR}${iniprefix}
-- @echo "You must manually remove jk_chrootsh from /etc/shells"
--# remove jk_chrootsh from /etc/shells
diff --git a/testing/jailkit/jailkit.post-deinstall b/testing/jailkit/jailkit.post-deinstall
deleted file mode 100644
index 57669144d8..0000000000
--- a/testing/jailkit/jailkit.post-deinstall
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-remove-shell '/usr/sbin/jk_chroots'
-exit 0
diff --git a/testing/jailkit/jailkit.post-install b/testing/jailkit/jailkit.post-install
deleted file mode 100644
index 88a592511a..0000000000
--- a/testing/jailkit/jailkit.post-install
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-add-shell '/usr/sbin/jk_chroots'
-exit 0