diff options
author | brooks <brooks@FreeBSD.org> | 2011-05-24 07:04:41 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2011-05-24 07:04:41 +0800 |
commit | 8aa32e182e993182ac8ed0127da67dd88eb5413b (patch) | |
tree | 40f0f7de480dfa77264724341fa77dcc3a3fb1f6 /www | |
parent | cc5a2deda1ee0e4b637e9102d65c58424d53f5c9 (diff) | |
download | freebsd-ports-gnome-8aa32e182e993182ac8ed0127da67dd88eb5413b.tar.gz freebsd-ports-gnome-8aa32e182e993182ac8ed0127da67dd88eb5413b.tar.zst freebsd-ports-gnome-8aa32e182e993182ac8ed0127da67dd88eb5413b.zip |
Partially address several years of neglect of pubcookie. Indicate the
security issues in two two ports.
I've not use pubcookie in several year and given the lack of complaint
about the deprication of mod_pubcookie, I doubt anyone else uses it from
ports. The mod_pubcookie port has already expired and I've set a two
week expriation for pubcookie-login-server. If not maintainer
appears I will send both to the Attic on June 6th.
While I'm here, address the use of CONF_FILES and CONF_DIRS in
pubcookie-login-server to avoid getting in the way of progress. [0]
PR: ports/157164 [0]
Security: vuxml:115a1389-858e-11e0-a76c-000743057ca2
vuxml:1ca8228f-858d-11e0-a76c-000743057ca2
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_pubcookie/Makefile | 1 | ||||
-rw-r--r-- | www/pubcookie-login-server/Makefile | 17 |
2 files changed, 12 insertions, 6 deletions
diff --git a/www/mod_pubcookie/Makefile b/www/mod_pubcookie/Makefile index 2793b5297ced..185fd288fbac 100644 --- a/www/mod_pubcookie/Makefile +++ b/www/mod_pubcookie/Makefile @@ -17,6 +17,7 @@ COMMENT= A single sign-on system for websites (apache module) MAKE_JOBS_UNSAFE= yes +FORBIDDEN= vuxml:1ca8228f-858d-11e0-a76c-000743057ca2 DEPRECATED= will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now EXPIRATION_DATE= 2011-05-01 diff --git a/www/pubcookie-login-server/Makefile b/www/pubcookie-login-server/Makefile index 60aa27f2bbf3..eaab3a8bde5b 100644 --- a/www/pubcookie-login-server/Makefile +++ b/www/pubcookie-login-server/Makefile @@ -16,6 +16,10 @@ DISTNAME= ${PORTNAME}-3.3.0a MAINTAINER= brooks@FreeBSD.org COMMENT= A single sign-on system for websites (login server) +FORBIDDEN= vuxml:115a1389-858e-11e0-a76c-000743057ca2 +DEPRECATED= Unused by maintiner, needs updates. +EXPIRATION_DATE= 2011-06-06 + CONFLICTS= mod_pubcookie-[0-9]* OPTIONS= LDAP "Enable LDAP verifier" on \ @@ -35,15 +39,16 @@ PC_BASE?= ${PORTNAME} PC_DIR= ${PREFIX}/${PC_BASE} SUB_FILES+= pkg-install -SUB_LIST+= CONF_FILES="${CONF_FILES}" CONF_DIRS="${CONF_DIRS}" +SUB_LIST+= CONF_FILES="${PUBCOOKIE_CONF_FILES}" \ + CONF_DIRS="${PUBCOOKIE_CONF_DIRS}" PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${PKGINSTALL} .include "${.CURDIR}/Makefile.templates" -CONF_FILES+= ${LOGIN_TEMPLATES:C|(.*)|${PC_BASE}/login_templates.default/\1:${PC_BASE}/login_templates/\1|} -CONF_DIRS+= ${PC_BASE}/login_templates -CONF_FILES+= ${LOGIN_IMAGES:C|(.*)|${PC_BASE}/login_templates.default/images/\1:${PC_BASE}/login/images/\1|} -CONF_DIRS+= ${PC_BASE}/login/images -CONF_FILES+= ${PC_BASE}/config.login.sample:${PC_BASE}/config +PUBCOOKIE_CONF_FILES+= ${LOGIN_TEMPLATES:C|(.*)|${PC_BASE}/login_templates.default/\1:${PC_BASE}/login_templates/\1|} +PUBCOOKIE_CONF_DIRS+= ${PC_BASE}/login_templates +PUBCOOKIE_CONF_FILES+= ${LOGIN_IMAGES:C|(.*)|${PC_BASE}/login_templates.default/images/\1:${PC_BASE}/login/images/\1|} +PUBCOOKIE_PUBCOOKIE_CONF_DIRS+= ${PC_BASE}/login/images +PUBCOOKIE_CONF_FILES+= ${PC_BASE}/config.login.sample:${PC_BASE}/config # XXX Add Kerberos |