aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorgabor <gabor@FreeBSD.org>2007-02-19 17:24:29 +0800
committergabor <gabor@FreeBSD.org>2007-02-19 17:24:29 +0800
commitf32d4a3156bfb8fd9bfa199ee58e6783f3dec4fc (patch)
tree54084797278660cdf978a68f17c0801780d12d85 /www
parentc708c037a7511c6c18665d768d2937ba237396d9 (diff)
downloadfreebsd-ports-gnome-f32d4a3156bfb8fd9bfa199ee58e6783f3dec4fc.tar.gz
freebsd-ports-gnome-f32d4a3156bfb8fd9bfa199ee58e6783f3dec4fc.tar.zst
freebsd-ports-gnome-f32d4a3156bfb8fd9bfa199ee58e6783f3dec4fc.zip
Remove expired port:
2007-02-01 www/drupal-pubcookie: No maintainer Approved by: erwin (mentor, implicit)
Diffstat (limited to 'www')
-rw-r--r--www/Makefile1
-rw-r--r--www/drupal-pubcookie/Makefile30
-rw-r--r--www/drupal-pubcookie/distinfo3
-rw-r--r--www/drupal-pubcookie/files/pkg-install.in27
-rw-r--r--www/drupal-pubcookie/pkg-descr8
5 files changed, 0 insertions, 69 deletions
diff --git a/www/Makefile b/www/Makefile
index 40e58404f35a..f08c4cbed837 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -113,7 +113,6 @@
SUBDIR += drupal-gsitemap
SUBDIR += drupal-i18n
SUBDIR += drupal-nice_menus
- SUBDIR += drupal-pubcookie
SUBDIR += drupal-taxonomy_access
SUBDIR += drupal-textile
SUBDIR += dtse
diff --git a/www/drupal-pubcookie/Makefile b/www/drupal-pubcookie/Makefile
deleted file mode 100644
index 3f35fa1f13fa..000000000000
--- a/www/drupal-pubcookie/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# New ports collection makefile for: drupal-ldap_integration
-# Date created: 12 January 2006
-# Whom: Brooks Davis <brooks@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pubcookie
-DISTVERSION= ${DRUPAL_VERSION}
-PORTREVISION= 20060907
-CATEGORIES= www security
-MASTER_SITE_SUBDIR= brooks
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Pubcookie user authentication for the Drupal CMS
-
-RUN_DEPENDS= ${LOCALBASE}/pubcookie/keyclient:${PORTSDIR}/www/mod_pubcookie
-
-USE_PHP= ldap
-
-DRUPAL_MODULE= yes
-MODULE_FILES= pubcookie.module
-DOC_FILES= LICENSE.txt README.txt
-
-DEPRECATED= No maintainer
-EXPIRATION_DATE= 2007-02-01
-
-.include <bsd.port.pre.mk>
-.include "${PORTSDIR}/www/drupal/bsd.drupal.mk"
-.include <bsd.port.post.mk>
diff --git a/www/drupal-pubcookie/distinfo b/www/drupal-pubcookie/distinfo
deleted file mode 100644
index 28a84b844dd2..000000000000
--- a/www/drupal-pubcookie/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (drupal/pubcookie-4.7.0.tar.gz) = c9409e93125bdd6b76e64bc4b2372319
-SHA256 (drupal/pubcookie-4.7.0.tar.gz) = 95b9e961098da2d90eceec9f358b245292ce01fc7529aae0f69e226041bcd90d
-SIZE (drupal/pubcookie-4.7.0.tar.gz) = 12618
diff --git a/www/drupal-pubcookie/files/pkg-install.in b/www/drupal-pubcookie/files/pkg-install.in
deleted file mode 100644
index e18d858c77e8..000000000000
--- a/www/drupal-pubcookie/files/pkg-install.in
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-PREFIX=%%PREFIX%%
-CONF_FILES="%%CONF_FILES%%"
-CONF_DIRS="%%CONF_DIRS%%"
-
-case $2 in
-POST-INSTALL)
- for cfgfile in "${CONF_FILES}"; do
- if [ ! -e ${PREFIX}/${cfgfile} ]; then
- cp ${PREFIX}/${cfgfile}-dist ${PREFIX}/${cfgfile}
- fi
- done
- ;;
-DEINSTALL)
- for cfgfile in "${CONF_FILES}"; do
- if cmp -s ${PREFIX}/${cfgfile} ${PREFIX}/${cfgfile}-dist ]; then
- rm ${PREFIX}/${cfgfile}
- fi
- done
- ;;
-POST-DEINSTALL)
- for cfgdir in "${CONF_DIRS}"; do
- rmdir ${PREFIX}/${cfgdir} 2> /dev/null || true
- done
- ;;
-esac
diff --git a/www/drupal-pubcookie/pkg-descr b/www/drupal-pubcookie/pkg-descr
deleted file mode 100644
index 550d928d3e37..000000000000
--- a/www/drupal-pubcookie/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-The pubcookie Drupal module is an external authentication module that
-allows users to authenticate to Drupal using pubcookie. Pubcookie
-provides single sign-on to web-based applications at a site.
-
-The module also provides LDAP integration to populate user profiles as
-users register.
-
-WWW: http://drupal.org/node/42589