diff options
Diffstat (limited to 'www/mod_jail')
-rw-r--r-- | www/mod_jail/Makefile | 27 | ||||
-rw-r--r-- | www/mod_jail/distinfo | 2 | ||||
-rw-r--r-- | www/mod_jail/files/patch-mod_jail.c | 17 | ||||
-rw-r--r-- | www/mod_jail/pkg-descr | 9 |
4 files changed, 0 insertions, 55 deletions
diff --git a/www/mod_jail/Makefile b/www/mod_jail/Makefile deleted file mode 100644 index 81c75d4b0461..000000000000 --- a/www/mod_jail/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# Created by: Frank Laszlo <laszlof@vonostingroup.com> -# $FreeBSD$ - -PORTNAME= mod_jail -PORTVERSION= 0.5.2 -CATEGORIES= www -MASTER_SITES= http://mod-jail.googlecode.com/files/ - -MAINTAINER= apache@FreeBSD.org -COMMENT= Apache module to enable an easy alternative to mod_chroot - -LICENSE= APACHE20 - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -USE_APACHE= 22+ -AP_FAST_BUILD= yes -AP_GENPLIST= yes - -.include <bsd.port.pre.mk> - -post-extract: - @${REINPLACE_CMD} -e "s|= apxs|= ${APXS}|" ${WRKSRC}/Makefile - -.include <bsd.port.post.mk> diff --git a/www/mod_jail/distinfo b/www/mod_jail/distinfo deleted file mode 100644 index 04e5d01558d0..000000000000 --- a/www/mod_jail/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (mod_jail-0.5.2.tar.gz) = f11a4bb2a48b592291149e559ad26145efacf445ee3d5d504127d80a19257bcf -SIZE (mod_jail-0.5.2.tar.gz) = 12053 diff --git a/www/mod_jail/files/patch-mod_jail.c b/www/mod_jail/files/patch-mod_jail.c deleted file mode 100644 index 5fccd8ad2756..000000000000 --- a/www/mod_jail/files/patch-mod_jail.c +++ /dev/null @@ -1,17 +0,0 @@ ---- ./mod_jail.c.orig 2014-07-29 18:28:40.000000000 -0400 -+++ ./mod_jail.c 2014-07-29 18:28:56.000000000 -0400 -@@ -336,12 +336,12 @@ - if (geteuid()) { - ap_log_error(APLOG_MARK, APLOG_ALERT, 0, s, - "mod_jail can't jail when not started as root."); -- return; -+ return !OK; - } - if (chdir(cfg->jail.path) == -1) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "mod_jail unable to chdir to %s.", cfg->jail.path); -- return; -+ return !OK; - } - if (jail(&cfg->jail) == -1) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, diff --git a/www/mod_jail/pkg-descr b/www/mod_jail/pkg-descr deleted file mode 100644 index 38bf26b8cac0..000000000000 --- a/www/mod_jail/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -mod_jail is Apache 1.3.xx/2.0.xx/2.2.xx module, that makes running Apache -in a secure jail prison easy, so it is intended to run on FreeBSD only. -It is similar to mod_chroot, but uses FreeBSD's specific system call - -jail. Also mod_jail make it possible to change securelevel into jail -prison. - -Original web site: http://igorpopov.newmail.ru/mod_jail/ - -WWW: http://code.google.com/p/mod-jail/ |