aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-03-25 18:02:56 +0800
committerrafan <rafan@FreeBSD.org>2007-03-25 18:02:56 +0800
commit53346bc6c311ead077b99b698ded7b8bd39466c5 (patch)
tree4bcdc0a70fb1fd629557145d1ce333afcafff19c /security
parent186e35997cbb5302e4307e389941533846d1f5d1 (diff)
downloadfreebsd-ports-gnome-53346bc6c311ead077b99b698ded7b8bd39466c5.tar.gz
freebsd-ports-gnome-53346bc6c311ead077b99b698ded7b8bd39466c5.tar.zst
freebsd-ports-gnome-53346bc6c311ead077b99b698ded7b8bd39466c5.zip
- drupal-* are renamed to drupal4-* for drupal5 ports
Diffstat (limited to 'security')
-rw-r--r--security/drupal-ldap_integration/Makefile30
-rw-r--r--security/drupal-ldap_integration/distinfo3
-rw-r--r--security/drupal-ldap_integration/files/pkg-install.in27
-rw-r--r--security/drupal-ldap_integration/pkg-descr5
4 files changed, 0 insertions, 65 deletions
diff --git a/security/drupal-ldap_integration/Makefile b/security/drupal-ldap_integration/Makefile
deleted file mode 100644
index bc16c3a1e767..000000000000
--- a/security/drupal-ldap_integration/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= ldap_integration
-DISTVERSION= ${DRUPAL_VERSION}
-PORTREVISION= 20060117
-CATEGORIES= security www
-
-MAINTAINER= brooks@FreeBSD.org
-COMMENT= LDAP user authentication for the Drupal CMS
-
-USE_PHP= ldap
-
-BROKEN= Install fails
-
-DRUPAL_MODULE= yes
-MODULE_FILES= ldap_integration.module \
- ldap_integration/LDAPInterface.php \
- zcallbacks.module
-MODULE_CONF_FILES= ldap_integration/conf.php
-MODULE_CONF_DIRS= ldap_integration
-DOC_FILES= CHANGES.txt LICENSE.txt README.txt
-
-.include <bsd.port.pre.mk>
-.include "${PORTSDIR}/www/drupal/bsd.drupal.mk"
-.include <bsd.port.post.mk>
diff --git a/security/drupal-ldap_integration/distinfo b/security/drupal-ldap_integration/distinfo
deleted file mode 100644
index 43f931feb2ac..000000000000
--- a/security/drupal-ldap_integration/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (drupal/ldap_integration-4.7.0.tar.gz) = 37b842fcee46b574561766e392206954
-SHA256 (drupal/ldap_integration-4.7.0.tar.gz) = 211ff487b27a26576e43f8b20b7ac0db1c8d8fb6fb7f1c415455da3b5869d855
-SIZE (drupal/ldap_integration-4.7.0.tar.gz) = 20854
diff --git a/security/drupal-ldap_integration/files/pkg-install.in b/security/drupal-ldap_integration/files/pkg-install.in
deleted file mode 100644
index e18d858c77e8..000000000000
--- a/security/drupal-ldap_integration/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/security/drupal-ldap_integration/pkg-descr b/security/drupal-ldap_integration/pkg-descr
deleted file mode 100644
index b6a23d3b7035..000000000000
--- a/security/drupal-ldap_integration/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-The ldap_integration Drupal module allows users to authenticate against
-a LDAP directory. Additionally, users can read and modify their data in
-the LDAP directory subject to administrative restrictions.
-
-WWW: http://drupal.org/node/15109