summaryrefslogtreecommitdiff
path: root/www/drupal6
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-07-28 18:18:04 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-07-28 18:18:04 +0000
commit7cdb93305b2936708acdb4165d4e02626f8b49fb (patch)
tree9320a6814a09e5219b368ff71bc79c57687b811b /www/drupal6
parent* Fix build with seamonkey for the Gecko provider (diff)
- Update to 5.2
Approved by: maintainer Security: http://www.vuxml.org/freebsd/1f5b711b-3d0e-11dc-b3d3-0016179b2dd5.html http://www.vuxml.org/freebsd/98dd7788-3d13-11dc-b3d3-0016179b2dd5.html
Notes
Notes: svn path=/head/; revision=196490
Diffstat (limited to 'www/drupal6')
-rw-r--r--www/drupal6/Makefile6
-rw-r--r--www/drupal6/distinfo6
-rw-r--r--www/drupal6/files/patch-modules-taxonomy-taxonomy.module11
3 files changed, 4 insertions, 19 deletions
diff --git a/www/drupal6/Makefile b/www/drupal6/Makefile
index 7a0d18911947..500dac1df6ef 100644
--- a/www/drupal6/Makefile
+++ b/www/drupal6/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= drupal5
-PORTVERSION= 5.1
-PORTREVISION= 3
+PORTVERSION= 5.2
CATEGORIES= www
MASTER_SITES= http://ftp.osuosl.org/pub/drupal/files/projects/
DISTNAME= drupal-${PORTVERSION}
@@ -40,9 +39,6 @@ RUN_DEPENDS+= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
USE_PHP+= pgsql
.endif
-post-patch:
- ${RM} ${WRKSRC}/modules/taxonomy/taxonomy.module.orig
-
do-install:
${MKDIR} ${DRUPAL_DIR}
${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR}
diff --git a/www/drupal6/distinfo b/www/drupal6/distinfo
index 060171042b28..44ce155c7e6d 100644
--- a/www/drupal6/distinfo
+++ b/www/drupal6/distinfo
@@ -1,3 +1,3 @@
-MD5 (drupal/drupal-5.1.tar.gz) = 1b68368c650da73af5051bae163a8ed1
-SHA256 (drupal/drupal-5.1.tar.gz) = 66138d3f7b4de5584212bf111ff86045b26a19ce99e2bd01e1563d0a614ce7e9
-SIZE (drupal/drupal-5.1.tar.gz) = 746494
+MD5 (drupal/drupal-5.2.tar.gz) = c7971b5d3d8eed28c52cea519948dfb8
+SHA256 (drupal/drupal-5.2.tar.gz) = f26c74af4dd31f1ca0b8315a5e0b2842a23abd35546ab2cd758c3d0fb6ae49e7
+SIZE (drupal/drupal-5.2.tar.gz) = 751205
diff --git a/www/drupal6/files/patch-modules-taxonomy-taxonomy.module b/www/drupal6/files/patch-modules-taxonomy-taxonomy.module
deleted file mode 100644
index eda2eb9da1b7..000000000000
--- a/www/drupal6/files/patch-modules-taxonomy-taxonomy.module
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/taxonomy/taxonomy.module~ Sat Mar 17 00:26:28 2007
-+++ modules/taxonomy/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;