aboutsummaryrefslogtreecommitdiff
path: root/www/drupal4
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-04-04 18:14:33 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-04-04 18:14:33 +0000
commit6d0a89558f86328d684118c0c0b61eec323d1f3b (patch)
tree604732ec0cd5a40f0870ed8a6a5114bed207232b /www/drupal4
parent1a7956c1c0b67324f61364ed9d038fbaeb3fc63d (diff)
downloadports-6d0a89558f86328d684118c0c0b61eec323d1f3b.tar.gz
ports-6d0a89558f86328d684118c0c0b61eec323d1f3b.zip
Notes
Diffstat (limited to 'www/drupal4')
-rw-r--r--www/drupal4/Makefile76
-rw-r--r--www/drupal4/distinfo3
-rw-r--r--www/drupal4/files/patch-modules-taxonomy-taxonomy.module11
-rw-r--r--www/drupal4/files/pkg-message.in27
-rw-r--r--www/drupal4/pkg-descr7
-rw-r--r--www/drupal4/pkg-plist191
6 files changed, 0 insertions, 315 deletions
diff --git a/www/drupal4/Makefile b/www/drupal4/Makefile
deleted file mode 100644
index 7a2acc2c19f2..000000000000
--- a/www/drupal4/Makefile
+++ /dev/null
@@ -1,76 +0,0 @@
-# New ports collection makefile for: Drupal
-# Date Created: 10 Nov 2003
-# Whom: Sebastian Yepes F. <esn@x123.info>
-#
-# $FreeBSD$
-#
-
-PORTNAME= drupal4
-PORTVERSION= 4.7.11
-CATEGORIES= www
-MASTER_SITES= http://ftp.drupal.org/files/projects/
-DISTNAME= drupal-${PORTVERSION}
-DIST_SUBDIR= drupal
-
-MAINTAINER= nick@foobar.org
-COMMENT= CMS that supports pgsql and mysql
-
-DRUPAL_PORT= yes
-
-DEPRECATED= Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
-EXPIRATION_DATE=2009-03-26
-
-USE_PHP= gd pcre session xml
-WANT_PHP_WEB= yes
-
-OPTIONS+= MYSQL "MySQL database support" on \
- PGSQL "PostgreSQL database support" off
-
-NO_BUILD= yes
-DOCS= CHANGELOG.txt INSTALL.txt LICENSE.txt MAINTAINERS.txt \
- UPGRADE.txt INSTALL.mysql.txt INSTALL.pgsql.txt
-SUB_FILES+= pkg-message
-PKGMESSAGE= ${WRKDIR}/pkg-message
-
-.include <bsd.port.pre.mk>
-
-.if defined(WITH_MYSQL)
-USE_PHP+= mysql
-.endif
-.if defined(WITH_PGSQL)
-RUN_DEPENDS+= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
-USE_PHP+= pgsql
-.endif
-
-post-patch:
- ${RM} ${WRKSRC}/modules/taxonomy.module.orig
-
-do-install:
- ${MKDIR} ${DRUPAL_DIR}
- ${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR}
- ${CP} ${WRKSRC}/cron.php ${DRUPAL_DIR}
- ${CP} -R ${WRKSRC}/database ${DRUPAL_DIR}
- ${CP} -R ${WRKSRC}/includes ${DRUPAL_DIR}
- ${CP} ${WRKSRC}/index.php ${DRUPAL_DIR}
- ${CP} -R ${WRKSRC}/misc ${DRUPAL_DIR}
- ${CP} -R ${WRKSRC}/modules ${DRUPAL_DIR}
- ${CP} -R ${WRKSRC}/scripts ${DRUPAL_DIR}
- ${MKDIR} ${DRUPAL_DIR}/sites/default
- ${CP} ${WRKSRC}/sites/default/settings.php ${DRUPAL_DIR}/sites/default/settings.php-dist
- @if [ ! -f ${DRUPAL_DIR}/sites/default/settings.php ]; then \
- ${CP} -p ${DRUPAL_DIR}/sites/default/settings.php-dist ${DRUPAL_DIR}/sites/default/settings.php ; \
- fi
- ${CP} -R ${WRKSRC}/themes ${DRUPAL_DIR}
- ${CP} ${WRKSRC}/update.php ${DRUPAL_DIR}
- ${CP} ${WRKSRC}/xmlrpc.php ${DRUPAL_DIR}
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${CP} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
-.endif
- ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DRUPAL_DIR}
-
-post-install:
- @${CAT} ${PKGMESSAGE}
-
-.include "${.CURDIR}/../../www/drupal5/bsd.drupal.mk"
-.include <bsd.port.post.mk>
diff --git a/www/drupal4/distinfo b/www/drupal4/distinfo
deleted file mode 100644
index 203de93b2c56..000000000000
--- a/www/drupal4/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (drupal/drupal-4.7.11.tar.gz) = b3cd74a717ef66d37927eb08e272adb2
-SHA256 (drupal/drupal-4.7.11.tar.gz) = a8c6c09508aa0388011d577987551e92130d831a28ec878e17172cdf672ad668
-SIZE (drupal/drupal-4.7.11.tar.gz) = 492614
diff --git a/www/drupal4/files/patch-modules-taxonomy-taxonomy.module b/www/drupal4/files/patch-modules-taxonomy-taxonomy.module
deleted file mode 100644
index ee3ecd140471..000000000000
--- a/www/drupal4/files/patch-modules-taxonomy-taxonomy.module
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/taxonomy.module~ Sat Mar 17 00:26:28 2007
-+++ modules/taxonomy.module Sat Mar 17 00:26:28 2007
-@@ -619,7 +619,7 @@
- foreach ($vocabularies as $vid => $vocabulary) {
- if ($vocabulary->tags && !$free_tags) { continue; }
- $tree = taxonomy_get_tree($vid);
-- if ($tree && (count($tree) > 1)) {
-+ if ($tree && (count($tree) >= 1)) {
- $options[$vocabulary->name] = array();
- foreach ($tree as $term) {
- $options[$vocabulary->name][$term->tid] = str_repeat('-', $term->depth) . $term->name;
diff --git a/www/drupal4/files/pkg-message.in b/www/drupal4/files/pkg-message.in
deleted file mode 100644
index d64eb1b7bc7f..000000000000
--- a/www/drupal4/files/pkg-message.in
+++ /dev/null
@@ -1,27 +0,0 @@
-You now need to create the DB where Drupal is going to live
-
- PostgreSQL::
- createdb -U pgsql -W drupal
- createuser -U pgsql -P -e drupal
- createlang -U pgsql -W plpgsql drupal
- psql -U drupal drupal < %%DRUPAL_DIR%%/database/database.pgsql
-
- MySQL::
- mysqladmin -u dba_user -p create drupal
- mysql -u dba_user -p
- GRANT ALL PRIVILEGES ON drupal.* TO drupal@localhost IDENTIFIED BY 'passwd';
- mysql -u drupal -p drupal < %%DRUPAL_DIR%%/database/database.mysql"
-
-Then edit the %%DRUPAL_DIR%%/sites/default/settings.php
-to your needs. Once you have done that you must add appropriate
-configuration directives to your apache configuration file
-(%%PREFIX%%/etc/apache(2)/httpd.conf). A typical configuration would be:
-
- Alias /drupal "%%DRUPAL_DIR%%"
-
- <Directory "%%DRUPAL_DIR%%">
- Options Indexes FollowSymlinks MultiViews
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
diff --git a/www/drupal4/pkg-descr b/www/drupal4/pkg-descr
deleted file mode 100644
index 81032dda8381..000000000000
--- a/www/drupal4/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-Drupal is an open-source platform and content management system
-for building dynamic web sites offering a broad range of features
-and services.
-Drupal can support a diverse range of web projects ranging from
-personal weblogs to large community-driven sites.
-
-WWW: http://drupal.org
diff --git a/www/drupal4/pkg-plist b/www/drupal4/pkg-plist
deleted file mode 100644
index 37272b89237f..000000000000
--- a/www/drupal4/pkg-plist
+++ /dev/null
@@ -1,191 +0,0 @@
-%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS.txt
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql.txt
-%%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL.pgsql.txt
-%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
-%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
-%%DRUPAL_BASE%%/.htaccess
-%%DRUPAL_BASE%%/cron.php
-%%DRUPAL_BASE%%/database/database.4.0.mysql
-%%DRUPAL_BASE%%/database/database.4.1.mysql
-%%DRUPAL_BASE%%/database/database.pgsql
-%%DRUPAL_BASE%%/database/updates.inc
-%%DRUPAL_BASE%%/includes/xmlrpcs.inc
-%%DRUPAL_BASE%%/includes/common.inc
-%%DRUPAL_BASE%%/includes/database.inc
-%%DRUPAL_BASE%%/includes/database.mysql.inc
-%%DRUPAL_BASE%%/includes/database.mysqli.inc
-%%DRUPAL_BASE%%/includes/database.pgsql.inc
-%%DRUPAL_BASE%%/includes/file.inc
-%%DRUPAL_BASE%%/includes/form.inc
-%%DRUPAL_BASE%%/includes/image.inc
-%%DRUPAL_BASE%%/includes/install.inc
-%%DRUPAL_BASE%%/includes/locale.inc
-%%DRUPAL_BASE%%/includes/menu.inc
-%%DRUPAL_BASE%%/includes/module.inc
-%%DRUPAL_BASE%%/includes/pager.inc
-%%DRUPAL_BASE%%/includes/path.inc
-%%DRUPAL_BASE%%/includes/session.inc
-%%DRUPAL_BASE%%/includes/tablesort.inc
-%%DRUPAL_BASE%%/includes/theme.inc
-%%DRUPAL_BASE%%/includes/unicode.inc
-%%DRUPAL_BASE%%/includes/xmlrpc.inc
-%%DRUPAL_BASE%%/includes/bootstrap.inc
-%%DRUPAL_BASE%%/index.php
-%%DRUPAL_BASE%%/misc/watchdog-warning.png
-%%DRUPAL_BASE%%/misc/arrow-desc.png
-%%DRUPAL_BASE%%/misc/autocomplete.js
-%%DRUPAL_BASE%%/misc/blog.png
-%%DRUPAL_BASE%%/misc/collapse.js
-%%DRUPAL_BASE%%/misc/drupal.css
-%%DRUPAL_BASE%%/misc/drupal.js
-%%DRUPAL_BASE%%/misc/druplicon.png
-%%DRUPAL_BASE%%/misc/favicon.ico
-%%DRUPAL_BASE%%/misc/feed.png
-%%DRUPAL_BASE%%/misc/forum-closed.png
-%%DRUPAL_BASE%%/misc/forum-default.png
-%%DRUPAL_BASE%%/misc/forum-hot-new.png
-%%DRUPAL_BASE%%/misc/forum-hot.png
-%%DRUPAL_BASE%%/misc/forum-new.png
-%%DRUPAL_BASE%%/misc/forum-sticky.png
-%%DRUPAL_BASE%%/misc/grippie.png
-%%DRUPAL_BASE%%/misc/maintenance.css
-%%DRUPAL_BASE%%/misc/menu-collapsed.png
-%%DRUPAL_BASE%%/misc/menu-expanded.png
-%%DRUPAL_BASE%%/misc/menu-leaf.png
-%%DRUPAL_BASE%%/misc/powered-black-135x42.png
-%%DRUPAL_BASE%%/misc/powered-black-80x15.png
-%%DRUPAL_BASE%%/misc/powered-black-88x31.png
-%%DRUPAL_BASE%%/misc/powered-blue-135x42.png
-%%DRUPAL_BASE%%/misc/powered-blue-80x15.png
-%%DRUPAL_BASE%%/misc/powered-blue-88x31.png
-%%DRUPAL_BASE%%/misc/powered-gray-135x42.png
-%%DRUPAL_BASE%%/misc/powered-gray-80x15.png
-%%DRUPAL_BASE%%/misc/powered-gray-88x31.png
-%%DRUPAL_BASE%%/misc/print.css
-%%DRUPAL_BASE%%/misc/progress.gif
-%%DRUPAL_BASE%%/misc/progress.js
-%%DRUPAL_BASE%%/misc/textarea.js
-%%DRUPAL_BASE%%/misc/throbber.gif
-%%DRUPAL_BASE%%/misc/update.js
-%%DRUPAL_BASE%%/misc/upload.js
-%%DRUPAL_BASE%%/misc/watchdog-error.png
-%%DRUPAL_BASE%%/misc/xml.png
-%%DRUPAL_BASE%%/misc/arrow-asc.png
-%%DRUPAL_BASE%%/modules/watchdog.module
-%%DRUPAL_BASE%%/modules/archive.module
-%%DRUPAL_BASE%%/modules/block.module
-%%DRUPAL_BASE%%/modules/blog.module
-%%DRUPAL_BASE%%/modules/blogapi.module
-%%DRUPAL_BASE%%/modules/book.module
-%%DRUPAL_BASE%%/modules/comment.module
-%%DRUPAL_BASE%%/modules/contact.module
-%%DRUPAL_BASE%%/modules/drupal.module
-%%DRUPAL_BASE%%/modules/filter.module
-%%DRUPAL_BASE%%/modules/forum.module
-%%DRUPAL_BASE%%/modules/help.module
-%%DRUPAL_BASE%%/modules/legacy.module
-%%DRUPAL_BASE%%/modules/locale.module
-%%DRUPAL_BASE%%/modules/menu.module
-%%DRUPAL_BASE%%/modules/node.module
-%%DRUPAL_BASE%%/modules/page.module
-%%DRUPAL_BASE%%/modules/path.module
-%%DRUPAL_BASE%%/modules/ping.module
-%%DRUPAL_BASE%%/modules/poll.module
-%%DRUPAL_BASE%%/modules/profile.module
-%%DRUPAL_BASE%%/modules/user.module
-%%DRUPAL_BASE%%/modules/search.module
-%%DRUPAL_BASE%%/modules/statistics.module
-%%DRUPAL_BASE%%/modules/story.module
-%%DRUPAL_BASE%%/modules/system.module
-%%DRUPAL_BASE%%/modules/taxonomy.module
-%%DRUPAL_BASE%%/modules/throttle.module
-%%DRUPAL_BASE%%/modules/tracker.module
-%%DRUPAL_BASE%%/modules/upload.module
-%%DRUPAL_BASE%%/modules/aggregator.module
-%%DRUPAL_BASE%%/scripts/code-clean.sh
-%%DRUPAL_BASE%%/scripts/code-style.pl
-%%DRUPAL_BASE%%/scripts/cron-curl.sh
-%%DRUPAL_BASE%%/scripts/cron-lynx.sh
-%%DRUPAL_BASE%%/scripts/prefix.sh
-@unexec if cmp -s %D/%%DRUPAL_BASE%%/sites/default/settings.php-dist %D/%%DRUPAL_BASE%%/sites/default/settings.php; then rm -f %D/%%DRUPAL_BASE%%/sites/default/settings.php; fi
-%%DRUPAL_BASE%%/sites/default/settings.php-dist
-@exec if [ ! -f %D/%%DRUPAL_BASE%%/sites/default/settings.php ] ; then cp -p %D/%F %B/settings.php; fi
-%%DRUPAL_BASE%%/themes/bluemarine/style.css
-%%DRUPAL_BASE%%/themes/bluemarine/box.tpl.php
-%%DRUPAL_BASE%%/themes/bluemarine/comment.tpl.php
-%%DRUPAL_BASE%%/themes/bluemarine/logo.png
-%%DRUPAL_BASE%%/themes/bluemarine/node.tpl.php
-%%DRUPAL_BASE%%/themes/bluemarine/page.tpl.php
-%%DRUPAL_BASE%%/themes/bluemarine/screenshot.png
-%%DRUPAL_BASE%%/themes/bluemarine/block.tpl.php
-%%DRUPAL_BASE%%/themes/chameleon/marvin/bullet.png
-%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark.png
-%%DRUPAL_BASE%%/themes/chameleon/marvin/logo.png
-%%DRUPAL_BASE%%/themes/chameleon/marvin/screenshot.png
-%%DRUPAL_BASE%%/themes/chameleon/marvin/style.css
-%%DRUPAL_BASE%%/themes/chameleon/chameleon.theme
-%%DRUPAL_BASE%%/themes/chameleon/common.css
-%%DRUPAL_BASE%%/themes/chameleon/background.png
-%%DRUPAL_BASE%%/themes/chameleon/screenshot.png
-%%DRUPAL_BASE%%/themes/chameleon/style.css
-%%DRUPAL_BASE%%/themes/chameleon/logo.png
-%%DRUPAL_BASE%%/themes/engines/phptemplate/block.tpl.php
-%%DRUPAL_BASE%%/themes/engines/phptemplate/box.tpl.php
-%%DRUPAL_BASE%%/themes/engines/phptemplate/comment.tpl.php
-%%DRUPAL_BASE%%/themes/engines/phptemplate/default.tpl.php
-%%DRUPAL_BASE%%/themes/engines/phptemplate/node.tpl.php
-%%DRUPAL_BASE%%/themes/engines/phptemplate/phptemplate.engine
-%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-on.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-next.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-hover.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-visited.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-up.png
-%%DRUPAL_BASE%%/themes/pushbutton/background.png
-%%DRUPAL_BASE%%/themes/pushbutton/block.tpl.php
-%%DRUPAL_BASE%%/themes/pushbutton/box.tpl.php
-%%DRUPAL_BASE%%/themes/pushbutton/comment.tpl.php
-%%DRUPAL_BASE%%/themes/pushbutton/forum-container.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/forum-link.png
-%%DRUPAL_BASE%%/themes/pushbutton/header-a.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/header-b.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/header-c.png
-%%DRUPAL_BASE%%/themes/pushbutton/icon-block.png
-%%DRUPAL_BASE%%/themes/pushbutton/icon-comment.png
-%%DRUPAL_BASE%%/themes/pushbutton/logo-active.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/logo-background.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/logo-hover.jpg
-%%DRUPAL_BASE%%/themes/pushbutton/logo.png
-%%DRUPAL_BASE%%/themes/pushbutton/node.tpl.php
-%%DRUPAL_BASE%%/themes/pushbutton/page.tpl.php
-%%DRUPAL_BASE%%/themes/pushbutton/screenshot.png
-%%DRUPAL_BASE%%/themes/pushbutton/style.css
-%%DRUPAL_BASE%%/themes/pushbutton/tabs-off.png
-%%DRUPAL_BASE%%/themes/pushbutton/tabs-on.png
-%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover.png
-%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off.png
-%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover.png
-%%DRUPAL_BASE%%/update.php
-%%DRUPAL_BASE%%/xmlrpc.php
-@dirrm %%DRUPAL_BASE%%/themes/pushbutton
-@dirrm %%DRUPAL_BASE%%/themes/engines/phptemplate
-@dirrm %%DRUPAL_BASE%%/themes/engines
-@dirrm %%DRUPAL_BASE%%/themes/chameleon/marvin
-@dirrm %%DRUPAL_BASE%%/themes/chameleon
-@dirrm %%DRUPAL_BASE%%/themes/bluemarine
-@dirrm %%DRUPAL_BASE%%/themes
-@dirrmtry %%DRUPAL_BASE%%/sites/default
-@dirrmtry %%DRUPAL_BASE%%/sites
-@dirrm %%DRUPAL_BASE%%/scripts
-@dirrmtry %%DRUPAL_BASE%%/modules
-@dirrm %%DRUPAL_BASE%%/misc
-@dirrm %%DRUPAL_BASE%%/includes
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrm %%DRUPAL_BASE%%/database
-@dirrmtry %%DRUPAL_BASE%%
-@unexec (test -d %D/%%DRUPAL_BASE%% && (echo "Configuration information saved. If you will *NOT* use this package anymore," && echo "please remove %D/%%DRUPAL_BASE%% and its contents manually.")) || true