362525f039
While here * Set LICENSE=gnu-gpl-v2 * Marked as CONFLICTS with apache>=2.2.10. It provides builtin ChrootDir directive, as PR#44458. 2005-01-09 Hobbit * getenv()/setenv() instead of flaky getppid(). * fixed layout to make <IfModule> work as expected. * documentation updates. * released mod_chroot/0.4 2005-06-12 Hobbit * fixed a problem with some CGIs (mod_cgid, mod_fcgid) being executed outside the chroot jail. Patch by <clement.hermann*free.fr>, thanks! * updated documentation * released mod_chroot/0.5
30 lines
884 B
Makefile
30 lines
884 B
Makefile
# $NetBSD: Makefile,v 1.10 2011/02/04 11:40:12 obache Exp $
|
|
|
|
DISTNAME= mod_chroot-0.5
|
|
PKGNAME= ${DISTNAME:S/mod_/${APACHE_PKG_PREFIX}-/}
|
|
CATEGORIES= www security
|
|
MASTER_SITES= http://core.segfault.pl/~hobbit/mod_chroot/dist/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://core.segfault.pl/~hobbit/mod_chroot/
|
|
COMMENT= Module to easily run Apache in a chroot environment
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
# functional conflict, apache>=2.2.10 has builtin ChrootDir directive support.
|
|
CONFLICTS+= apache>=2.2.10
|
|
|
|
APACHE_MODULE= yes
|
|
APACHE_MODULE_NAME= mod_chroot.la
|
|
NO_CONFIGURE= yes
|
|
|
|
PKG_APACHE_ACCEPTED= apache2 apache22
|
|
INSTALLATION_DIRS+= share/doc/mod_chroot
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/[A-Z]* ${DESTDIR}${PREFIX}/share/doc/mod_chroot/
|
|
|
|
.include "../../mk/apache.mk"
|
|
.include "../../www/apache/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|