diff options
author | brooks <brooks@FreeBSD.org> | 2008-05-01 02:54:45 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2008-05-01 02:54:45 +0800 |
commit | bac2ea354cc288ef23edc44a6000aa6497c5896e (patch) | |
tree | df9dbd7ea8be2b45a67be2e61c3086598fc1191b /security | |
parent | af224bb3824a772a42bbb798796eaf4836994e66 (diff) | |
download | freebsd-ports-gnome-bac2ea354cc288ef23edc44a6000aa6497c5896e.tar.gz freebsd-ports-gnome-bac2ea354cc288ef23edc44a6000aa6497c5896e.tar.zst freebsd-ports-gnome-bac2ea354cc288ef23edc44a6000aa6497c5896e.zip |
Admit I'm never going to actually fix security/drupal4-ldap_integration,
particularly since it's clear no one uses it and remove it from the tree.
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/drupal4-ldap_integration/Makefile | 30 | ||||
-rw-r--r-- | security/drupal4-ldap_integration/distinfo | 3 | ||||
-rw-r--r-- | security/drupal4-ldap_integration/files/pkg-install.in | 27 | ||||
-rw-r--r-- | security/drupal4-ldap_integration/pkg-descr | 5 |
5 files changed, 0 insertions, 66 deletions
diff --git a/security/Makefile b/security/Makefile index 2adab05e8b60..83e7cee9cf51 100644 --- a/security/Makefile +++ b/security/Makefile @@ -112,7 +112,6 @@ SUBDIR += doorman SUBDIR += doscan SUBDIR += dropbear - SUBDIR += drupal4-ldap_integration SUBDIR += drweb SUBDIR += drweb-postfix SUBDIR += drweb-qmail diff --git a/security/drupal4-ldap_integration/Makefile b/security/drupal4-ldap_integration/Makefile deleted file mode 100644 index 6bd726d2a5e3..000000000000 --- a/security/drupal4-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= 20060118 -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 "${.CURDIR}/../../www/drupal5/bsd.drupal.mk" -.include <bsd.port.post.mk> diff --git a/security/drupal4-ldap_integration/distinfo b/security/drupal4-ldap_integration/distinfo deleted file mode 100644 index 43f931feb2ac..000000000000 --- a/security/drupal4-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/drupal4-ldap_integration/files/pkg-install.in b/security/drupal4-ldap_integration/files/pkg-install.in deleted file mode 100644 index e18d858c77e8..000000000000 --- a/security/drupal4-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/drupal4-ldap_integration/pkg-descr b/security/drupal4-ldap_integration/pkg-descr deleted file mode 100644 index b6a23d3b7035..000000000000 --- a/security/drupal4-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 |