mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
26277d9501
mod_umask sets the Unix umask of the Apache HTTPd process after it has started. This is useful when accessing Subversion from both mod_dav_svn and via a local client with a file:// url. Without setting a proper umask the file permissions can create a repository that is not easily accessable from both. WWW: http://www.outoforder.cc/projects/httpd/mod_umask/ PR: ports/171148 Submitted by: Ralf Gebhart <gebhart@secnetix.de>
29 lines
567 B
Makefile
29 lines
567 B
Makefile
# New ports collection makefile for: mod_umask
|
|
# Date created: 2012-08-28
|
|
# Whom: Ralf Gebhart <gebhart@secnetix.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_umask
|
|
PORTVERSION= 0.1.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.outoforder.cc/downloads/mod_umask/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
DIST_SUBDIR= apache2
|
|
|
|
MAINTAINER= gebhart@secnetix.de
|
|
COMMENT= Apache 2.x module to set umask of created files
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_APACHE= 22+
|
|
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
SRC_FILE= src/${PORTNAME}.c
|
|
|
|
.include <bsd.port.mk>
|