Import package vendor original specs for necessary manipulations.

Tue, 28 Aug 2012 18:28:55 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:28:55 +0200
changeset 531
e3f92ea19d16
parent 530
5cd084e0397a
child 532
e5f1af644b30

Import package vendor original specs for necessary manipulations.

drupal-module-misc/drupal-module-misc.patch file | annotate | diff | comparison | revisions
drupal-module-misc/drupal-module-misc.spec file | annotate | diff | comparison | revisions
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/drupal-module-misc/drupal-module-misc.patch	Tue Aug 28 18:28:55 2012 +0200
     1.3 @@ -0,0 +1,338 @@
     1.4 +
     1.5 +Activate the Drupal glue code for the FCKeditor filemanager.
     1.6 +
     1.7 +Index: sites/all/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php
     1.8 +--- sites/all/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php.orig	2008-03-25 16:28:24 +0100
     1.9 ++++ sites/all/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php	2008-05-02 23:02:23 +0200
    1.10 +@@ -39,6 +39,9 @@
    1.11 + // Attention: The above 'UserFilesPath' must point to the same directory.
    1.12 + $Config['UserFilesAbsolutePath'] = '' ;
    1.13 + 
    1.14 ++// activate Drupal glue code for filemanager
    1.15 ++require_once "../../../../../filemanager.config.php";
    1.16 ++
    1.17 + // Due to security issues with Apache modules, it is recommended to leave the
    1.18 + // following setting enabled.
    1.19 + $Config['ForceSingleExtension'] = true ;
    1.20 +
    1.21 +-----------------------------------------------------------------------------
    1.22 +
    1.23 +1. Fix content validation in "xmlcontent" module in case
    1.24 +   one has enabled multiple filters on a particular input format.
    1.25 +2. Additionally, allow absolute paths to support .xsd/.xsl files
    1.26 +   in arbitrary directories.
    1.27 +3. Finally, do not create a new DOM and output it as XML. Instead directly
    1.28 +   output the transformed XML in order to get rid of the <?xml...?> declaration.
    1.29 +4. Additionally, support an optional XML content template (mainly
    1.30 +   for loading ENTITY definitions which cannot be done via XSD and XSLT)
    1.31 +
    1.32 +Index: sites/all/modules/xmlcontent/xmlcontent.module
    1.33 +--- sites/all/modules/xmlcontent/xmlcontent.module.orig	2007-03-14 22:59:59 +0100
    1.34 ++++ sites/all/modules/xmlcontent/xmlcontent.module	2008-05-30 21:13:16 +0200
    1.35 +@@ -39,8 +39,22 @@
    1.36 +       return t('Allows users to post XML node content and get it transformed through a configured XSLT script');
    1.37 + 
    1.38 +     case 'process':
    1.39 +-      $xslt_path = drupal_get_path('module', 'xmlcontent'). '/' . variable_get("xmlcontent_xslt_path_$format", '');
    1.40 +-      return _xmlcontent_transform($text, $xslt_path);
    1.41 ++      $tpl_path = variable_get("xmlcontent_tpl_path_$format", '');
    1.42 ++      if ($tpl_path) {
    1.43 ++          if (substr($tpl_path, 0, 1) != "/")
    1.44 ++              $tpl_path = drupal_get_path('module', 'xmlcontent') . '/' . $tpl_path;
    1.45 ++          $tpl = file_get_contents($tpl_path);
    1.46 ++          $text = preg_replace("/&template_body;/", $text, $tpl);
    1.47 ++          $cwd = getcwd();
    1.48 ++          chdir(preg_replace("/\\/[^\\/]+\$/", "", $tpl_path));
    1.49 ++      }
    1.50 ++      $xslt_path = variable_get("xmlcontent_xslt_path_$format", '');
    1.51 ++      if (substr($xslt_path, 0, 1) != "/")
    1.52 ++          $xslt_path = drupal_get_path('module', 'xmlcontent') . '/' . $xslt_path;
    1.53 ++      $result = _xmlcontent_transform($text, $xslt_path);
    1.54 ++      if ($tpl_path)
    1.55 ++          chdir($cwd);
    1.56 ++      return $result;
    1.57 + 
    1.58 +     case 'settings':
    1.59 +       return _xmlcontent_filter_settings($format);
    1.60 +@@ -72,7 +86,7 @@
    1.61 +       }
    1.62 +       // Does the input format of this node use XML Content filter?
    1.63 +       $format = filter_resolve_format($node->format);
    1.64 +-      $module = db_result(db_query('SELECT module FROM {filters} WHERE format = %d', $format));
    1.65 ++      $module = db_result(db_query("SELECT module FROM {filters} WHERE format = %d AND module = 'xmlcontent'", $format));
    1.66 +       if ($module != 'xmlcontent') {
    1.67 +         return;
    1.68 +       }
    1.69 +@@ -83,7 +97,10 @@
    1.70 +         return;
    1.71 +       }      
    1.72 +       
    1.73 +-      $schema_path = drupal_get_path('module', 'xmlcontent'). '/' . variable_get("xmlcontent_schema_path_$format",'');        
    1.74 ++      $schema_path = variable_get("xmlcontent_schema_path_$format", '');
    1.75 ++      if (substr($schema_path, 0, 1) != "/")
    1.76 ++          $schema_path = drupal_get_path('module', 'xmlcontent') . '/' . $schema_path;
    1.77 ++
    1.78 +       if (!is_file($schema_path) && ($validation == 'xsd' or $validation == 'rng')) {
    1.79 +         $schema_path = null;
    1.80 +         watchdog( 'xmlcontent', t('Validation required but no schema file'), WATCHDOG_WARNING );
    1.81 +@@ -93,7 +110,23 @@
    1.82 +       libxml_clear_errors();
    1.83 +       libxml_use_internal_errors(true);
    1.84 + 
    1.85 +-      if (!_xmlcontent_validate($node->body, $validation, $schema_path)) {
    1.86 ++      $text = $node->body;
    1.87 ++      $tpl_path = variable_get("xmlcontent_tpl_path_$format", '');
    1.88 ++      if ($tpl_path) {
    1.89 ++          if (substr($tpl_path, 0, 1) != "/")
    1.90 ++              $tpl_path = drupal_get_path('module', 'xmlcontent') . '/' . $tpl_path;
    1.91 ++          $tpl = file_get_contents($tpl_path);
    1.92 ++          $text = preg_replace("/&template_body;/", $text, $tpl);
    1.93 ++          $cwd = getcwd();
    1.94 ++          chdir(preg_replace("/\\/[^\\/]+\$/", "", $tpl_path));
    1.95 ++      }
    1.96 ++
    1.97 ++      $result = _xmlcontent_validate($text, $validation, $schema_path);
    1.98 ++
    1.99 ++      if ($tpl_path)
   1.100 ++          chdir($cwd);
   1.101 ++
   1.102 ++      if (!$result) {
   1.103 +         form_set_error('body', t('XML Content: Invalid XML') . libxml_errors_string());
   1.104 +       }
   1.105 +       
   1.106 +@@ -156,6 +189,13 @@
   1.107 +     '#collapsible' => TRUE,
   1.108 +     '#collapsed' => FALSE,
   1.109 +   );
   1.110 ++  $form['xmlcontent']["xmlcontent_tpl_path_$format"] = array(
   1.111 ++    '#type'    => 'textfield',
   1.112 ++    '#title'   => t('Optional XML Template File Path'),
   1.113 ++    '#default_value' => variable_get("xmlcontent_tpl_path_$format", ''),
   1.114 ++    '#field_prefix'  => drupal_get_path('module', 'xmlcontent'). '/',
   1.115 ++    '#description'  => t('The file path to the optional XML template, wrapper around the XML content before processing.'),
   1.116 ++  );
   1.117 +   $form['xmlcontent']["xmlcontent_xslt_path_$format"] = array(
   1.118 +     '#type'    => 'textfield',
   1.119 +     '#title'   => t('XSLT Script File Path'),
   1.120 +@@ -218,6 +258,8 @@
   1.121 +   
   1.122 +   // Load the XML document
   1.123 +   $dom = new DomDocument('1.0', 'UTF-8');
   1.124 ++  $dom->resolveExternals = true;
   1.125 ++  $dom->substituteEntities = true;
   1.126 +   $valid = $dom->loadXML($xml);
   1.127 +   if (!$valid) {
   1.128 +     watchdog('xmlcontent', "Invalid XML Content", WATCHDOG_WARNING);
   1.129 +@@ -227,6 +269,8 @@
   1.130 +   // Load the XSLT script
   1.131 +   // TODO: is there a way to cache it, or not necessary
   1.132 +   $xsl = new DomDocument('1.0', 'UTF-8');
   1.133 ++  $xsl->resolveExternals = true;
   1.134 ++  $xsl->substituteEntities = true;
   1.135 +   $xsl->load($path_to_xslt);   
   1.136 + 
   1.137 +   // Create the XSLT processor
   1.138 +@@ -242,10 +286,8 @@
   1.139 +   }
   1.140 + 
   1.141 +   // Transform
   1.142 +-  $newdom = $proc->transformToDoc($dom);
   1.143 +-  
   1.144 +-  // Return the output as XML text (in fact subset of XHTML, depending on the XSLT script)
   1.145 +-  return $newdom->saveXML();
   1.146 ++  $xml = $proc->transformToXML($dom);
   1.147 ++  return $xml;
   1.148 + }
   1.149 + 
   1.150 + 
   1.151 +-----------------------------------------------------------------------------
   1.152 +
   1.153 +Fix upgrading in "simplefeed" module if PostgreSQL is used.
   1.154 +Fix modules as Drupal 6.2 does not provide db_num_rows() anymore.
   1.155 +
   1.156 +Index: sites/all/modules/simplefeed/simplefeed.install
   1.157 +--- sites/all/modules/simplefeed/simplefeed.install.orig	2008-06-11 07:22:28 +0200
   1.158 ++++ sites/all/modules/simplefeed/simplefeed.install	2008-06-14 15:09:53 +0200
   1.159 +@@ -31,8 +31,17 @@
   1.160 + 
   1.161 + function simplefeed_update_2() {
   1.162 +   $ret = array();
   1.163 +-  $ret[] = update_sql("ALTER TABLE {simplefeed_feed} DROP INDEX url");
   1.164 +-  $ret[] = update_sql("ALTER TABLE {simplefeed_feed} CHANGE url url text");  
   1.165 ++  switch ($GLOBALS['db_type']) {
   1.166 ++    case 'mysql':
   1.167 ++    case 'mysqli':
   1.168 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed} DROP INDEX url");
   1.169 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed} CHANGE url url text");  
   1.170 ++      break;
   1.171 ++    case 'pgsql':
   1.172 ++      $ret[] = update_sql("DROP INDEX {simplefeed_feed}_url_idx");
   1.173 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed} ALTER COLUMN url TYPE text");  
   1.174 ++      break;
   1.175 ++  }
   1.176 +   return $ret;
   1.177 + }
   1.178 + 
   1.179 +Index: sites/all/modules/simplefeed/simplefeed_item.install
   1.180 +--- sites/all/modules/simplefeed/simplefeed_item.install.orig	2008-06-11 07:22:28 +0200
   1.181 ++++ sites/all/modules/simplefeed/simplefeed_item.install	2008-06-14 16:23:01 +0200
   1.182 +@@ -60,8 +62,18 @@
   1.183 + 
   1.184 + function simplefeed_item_update_3() {
   1.185 +   $ret = array();
   1.186 +-  $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} CHANGE url url text");
   1.187 +-  $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} CHANGE iid iid varchar(32) NOT NULL");  
   1.188 ++  switch ($GLOBALS['db_type']) {
   1.189 ++    case 'mysql':
   1.190 ++    case 'mysqli':
   1.191 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} CHANGE url url text");
   1.192 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} CHANGE iid iid varchar(32) NOT NULL");  
   1.193 ++      break;
   1.194 ++    case 'pgsql':
   1.195 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} ALTER COLUMN url TYPE text");  
   1.196 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} ALTER COLUMN iid TYPE VARCHAR(32)");  
   1.197 ++      $ret[] = update_sql("ALTER TABLE {simplefeed_feed_item} ALTER COLUMN iid SET NOT NULL");  
   1.198 ++      break;
   1.199 ++  }
   1.200 +   return $ret;
   1.201 + }
   1.202 + 
   1.203 +-----------------------------------------------------------------------------
   1.204 +
   1.205 +Fix helpers module for PostgreSQL usage.
   1.206 +
   1.207 +Index: sites/all/modules/helpers/helpers_database.module
   1.208 +--- sites/all/modules/helpers/helpers_database.module.orig	2008-04-23 04:38:34 +0200
   1.209 ++++ sites/all/modules/helpers/helpers_database.module	2008-06-16 18:06:41 +0200
   1.210 +@@ -16,7 +16,7 @@
   1.211 +  *
   1.212 +  * NOTE: This is open code - do not put a function declaration on it.
   1.213 +  */
   1.214 +-  $db_types = array('mysql', 'mysqli', 'postgres');
   1.215 ++  $db_types = array('mysql', 'mysqli', 'pgsql');
   1.216 +   $dbtype = $GLOBALS['db_type'];
   1.217 +   if (in_array($dbtype, $db_types)) {
   1.218 +     // Using include because the site may not be using this so we don't want a fatal error.
   1.219 +Index: sites/all/modules/helpers/includes/dra_pgsql.inc
   1.220 +--- sites/all/modules/helpers/includes/dra_pgsql.inc.orig	2008-06-16 17:49:43 +0200
   1.221 ++++ sites/all/modules/helpers/includes/dra_pgsql.inc	2008-06-16 18:05:19 +0200
   1.222 +@@ -0,0 +1,40 @@
   1.223 ++<?php
   1.224 ++/* $Id */
   1.225 ++ /**
   1.226 ++ * Return a result array from the previous query. PostgreSql version.
   1.227 ++ * This is very handy for building an option list for a form element.
   1.228 ++ *
   1.229 ++ * @param $result
   1.230 ++ *   A database query result resource, as returned from db_query().
   1.231 ++ * @return
   1.232 ++ *   The resulting array or FALSE.
   1.233 ++ *   If the query contains -- the result array would be 
   1.234 ++ *        0 columns             (bool)FALSE
   1.235 ++ *        1 column              value => value
   1.236 ++ *        2 columns             1st value => 2nd value
   1.237 ++ *        3 or more             1st value => array(2nd value, 3rd value, ...)
   1.238 ++ */
   1.239 ++function db_result_array($result) {
   1.240 ++  $array = array();
   1.241 ++  while ($row = pg_fetch_array($result, NULL, PGSQL_NUM)) {
   1.242 ++    $y = count($row);
   1.243 ++    switch ($y) {
   1.244 ++      case 0:
   1.245 ++        drupal_set_message(t('Db_result_array found no columns in the result set.'), 'error');
   1.246 ++        return false;
   1.247 ++
   1.248 ++      case 1:
   1.249 ++        $array[$row[0]] = $row[0];
   1.250 ++        break;
   1.251 ++
   1.252 ++      case 2:
   1.253 ++        $array[$row[0]] = $row[1];
   1.254 ++        break;
   1.255 ++
   1.256 ++      default:
   1.257 ++        $array[$row[0]] = array_slice($row, 1);
   1.258 ++        break;
   1.259 ++    }
   1.260 ++  }
   1.261 ++  return $array;
   1.262 ++}
   1.263 +
   1.264 +-----------------------------------------------------------------------------
   1.265 +
   1.266 +Fix PostgreSQL usage.
   1.267 +
   1.268 +Index: sites/all/modules/nodeupdates/nodeupdates.install
   1.269 +--- sites/all/modules/nodeupdates/nodeupdates.install.orig	2007-12-31 15:11:57 +0100
   1.270 ++++ sites/all/modules/nodeupdates/nodeupdates.install	2008-06-18 18:00:08 +0200
   1.271 +@@ -15,10 +15,10 @@
   1.272 + 
   1.273 +     case 'pgsql':
   1.274 +       db_query("CREATE TABLE {nodeupdates} (
   1.275 +-        nid integer(10) NOT NULL default '0',
   1.276 ++        nid integer NOT NULL default '0',
   1.277 +         title varchar(128) NOT NULL default '',
   1.278 +-        message longtext NOT NULL default '',
   1.279 +-        timestamp integer(11) NOT NULL default '0'
   1.280 ++        message text NOT NULL default '',
   1.281 ++        timestamp integer NOT NULL default '0'
   1.282 +       )");
   1.283 +       break;
   1.284 +   }
   1.285 +
   1.286 +-----------------------------------------------------------------------------
   1.287 +
   1.288 +Since PHP 5.3 calling functions with objects and having the function
   1.289 +declare the object parameter as a reference causes a run-time error.
   1.290 +The "call-by-reference" indicator "&" has to be removed from parameters
   1.291 +which are known to be passed as objects (by reference).
   1.292 +
   1.293 +Index: sites/all/modules/diff/diff.module
   1.294 +--- sites/all/modules/diff/diff.module.orig	2010-08-12 18:34:08.000000000 +0200
   1.295 ++++ sites/all/modules/diff/diff.module	2010-08-13 14:18:26.000000000 +0200
   1.296 +@@ -87,7 +87,7 @@
   1.297 + /**
   1.298 +  * Implementation of hook_menu_alter().
   1.299 +  */
   1.300 +-function diff_menu_alter(&$callbacks) {
   1.301 ++function diff_menu_alter($callbacks) {
   1.302 +   // Overwrite the default 'Revisions' page
   1.303 +   $callbacks['node/%node/revisions']['page callback'] = 'diff_diffs_overview';
   1.304 +   $callbacks['node/%node/revisions']['module'] = 'diff';
   1.305 +@@ -133,7 +133,7 @@
   1.306 + /**
   1.307 +  * Implementation of hook_nodeapi().
   1.308 +  */
   1.309 +-function diff_nodeapi(&$node, $op, $teaser, $page) {
   1.310 ++function diff_nodeapi($node, $op, $teaser, $page) {
   1.311 +   if ($page && $op == 'view' && user_access('view revisions') && variable_get('show_diff_inline_'. $node->type, FALSE)) {
   1.312 +     // Ugly but cheap way to check that we are viewing a node's revision page.
   1.313 +     if (arg(2) === 'revisions' && arg(3) === $node->vid) {
   1.314 +@@ -149,7 +149,7 @@
   1.315 + /**
   1.316 +  * Implementation of hook_form_alter().
   1.317 +  */
   1.318 +-function diff_form_alter(&$form, $form_state, $form_id) {
   1.319 ++function diff_form_alter($form, $form_state, $form_id) {
   1.320 +   if (isset($form['type']['#value']) && $form['type']['#value'] .'_node_form' == $form_id) {
   1.321 +     // Add a 'View changes' button on the node edit form.
   1.322 +     if (variable_get('show_preview_changes_'. $form['type']['#value'], TRUE) && $form['nid']['#value'] > 0) {
   1.323 +@@ -194,7 +194,7 @@
   1.324 + /**
   1.325 +  * Callback if 'View changes' is pressed.
   1.326 +  */
   1.327 +-function diff_node_form_build_preview_changes($form, &$form_state) {
   1.328 ++function diff_node_form_build_preview_changes($form, $form_state) {
   1.329 +   module_load_include('inc', 'diff', 'diff.pages');
   1.330 +   $node = node_form_submit_build_node($form, $form_state);
   1.331 + 
   1.332 +@@ -323,7 +323,7 @@
   1.333 + /**
   1.334 +  * Form submission handler for diff_inline_form() for JS-disabled clients.
   1.335 +  */
   1.336 +-function diff_inline_form_submit(&$form, &$form_state) {
   1.337 ++function diff_inline_form_submit($form, $form_state) {
   1.338 +   if (isset($form_state['values']['revision'], $form_state['values']['node'])) {
   1.339 +     $node = $form_state['values']['node'];
   1.340 +     $vid = $form_state['values']['revision'];
   1.341 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/drupal-module-misc/drupal-module-misc.spec	Tue Aug 28 18:28:55 2012 +0200
     2.3 @@ -0,0 +1,1529 @@
     2.4 +##
     2.5 +##  drupal-module-misc.spec -- OpenPKG RPM Package Specification
     2.6 +##  Copyright (c) 2000-2012 OpenPKG Foundation e.V. <http://openpkg.net/>
     2.7 +##
     2.8 +##  Permission to use, copy, modify, and distribute this software for
     2.9 +##  any purpose with or without fee is hereby granted, provided that
    2.10 +##  the above copyright notice and this permission notice appear in all
    2.11 +##  copies.
    2.12 +##
    2.13 +##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
    2.14 +##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
    2.15 +##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    2.16 +##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
    2.17 +##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    2.18 +##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    2.19 +##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
    2.20 +##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    2.21 +##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    2.22 +##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
    2.23 +##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    2.24 +##  SUCH DAMAGE.
    2.25 +##
    2.26 +
    2.27 +#   package versions (core)
    2.28 +%define       V_drupal                     6.x
    2.29 +
    2.30 +#   package versions (extension modules)
    2.31 +%define       V_module_acl                 6.x-1.4
    2.32 +%define       V_module_activitystream      6.x-1.0
    2.33 +%define       V_module_adminrole           6.x-1.3
    2.34 +%define       V_module_akismet             6.x-1.0-beta1
    2.35 +%define       V_module_ajax                6.x-1.15
    2.36 +%define       V_module_alt_login           6.x-1.2
    2.37 +%define       V_module_archive             6.x-1.4
    2.38 +%define       V_module_atom                6.x-1.1
    2.39 +%define       V_module_autologout          6.x-4.0
    2.40 +%define       V_module_avatar_selection    6.x-1.7
    2.41 +%define       V_module_backup_migrate      6.x-2.6
    2.42 +%define       V_module_biblio              6.x-1.18
    2.43 +%define       V_module_bitcache            6.x-1.0-beta2
    2.44 +%define       V_module_calendar            6.x-2.4
    2.45 +%define       V_module_captcha             6.x-2.4
    2.46 +%define       V_module_captcha_pack        6.x-1.0-beta3
    2.47 +%define       V_module_cck                 6.x-2.9
    2.48 +%define       V_module_cck_blocks          6.x-1.3
    2.49 +%define       V_module_citation_filter     6.x-2.0
    2.50 +%define       V_module_clickpath           6.x-1.2
    2.51 +%define       V_module_codefilter          6.x-1.0
    2.52 +%define       V_module_comment_subject     6.x-1.5
    2.53 +%define       V_module_comment_subscribe   6.x-1.4
    2.54 +%define       V_module_condition           6.x-2.5
    2.55 +%define       V_module_contemplate         6.x-1.2
    2.56 +%define       V_module_countdowntimer      6.x-2.21
    2.57 +%define       V_module_css_injector        6.x-1.4
    2.58 +%define       V_module_custom_breadcrumbs  6.x-1.5
    2.59 +%define       V_module_daily               6.x-1.2
    2.60 +%define       V_module_date                6.x-2.9
    2.61 +%define       V_module_dashplayer          6.x-1.9
    2.62 +%define       V_module_devel               6.x-1.27
    2.63 +%define       V_module_dhtml_menu          6.x-3.5
    2.64 +%define       V_module_diff                6.x-2.3
    2.65 +%define       V_module_download_count      6.x-2.0
    2.66 +%define       V_module_email_registration  6.x-1.3
    2.67 +%define       V_module_epublish            6.x-1.16
    2.68 +%define       V_module_event               6.x-2.x-dev
    2.69 +%define       V_module_exhibit             6.x-1.0-beta1
    2.70 +%define       V_module_extlink             6.x-1.11
    2.71 +%define       V_module_faq                 6.x-1.13
    2.72 +%define       V_module_faq_ask             6.x-2.2
    2.73 +%define       V_module_fasttoggle          6.x-1.4
    2.74 +%define       V_module_fckeditor           6.x-2.3
    2.75 +%define       V_module_feedapi             6.x-1.8
    2.76 +%define       V_module_filebrowser         6.x-1.4
    2.77 +%define       V_module_fileframework       6.x-1.4
    2.78 +%define       V_module_fivestar            6.x-1.20
    2.79 +%define       V_module_flag_content        6.x-1.x-dev
    2.80 +%define       V_module_flashnode           6.x-3.1
    2.81 +%define       V_module_flashvideo          6.x-1.5
    2.82 +%define       V_module_flexifilter         6.x-1.2
    2.83 +%define       V_module_flexifilter_cite    6.x-1.0
    2.84 +%define       V_module_footermap           6.x-1.7
    2.85 +%define       V_module_footnotes           6.x-2.5
    2.86 +%define       V_module_forum_access        6.x-1.8
    2.87 +%define       V_module_forumthread         6.x-1.1
    2.88 +%define       V_module_freelinking         6.x-3.2
    2.89 +%define       V_module_front               6.x-1.3
    2.90 +%define       V_module_geshifilter         6.x-1.4
    2.91 +%define       V_module_globalredirect      6.x-1.5
    2.92 +%define       V_module_glossary            6.x-1.8
    2.93 +%define       V_module_gotwo               6.x-1.3
    2.94 +%define       V_module_headerimage         6.x-1.0
    2.95 +%define       V_module_helpers             6.x-1.1
    2.96 +%define       V_module_htmlawed            6.x-3.3
    2.97 +%define       V_module_httpauth            6.x-1.2
    2.98 +%define       V_module_i18n                6.x-1.10
    2.99 +%define       V_module_iconizer            6.x-1.3
   2.100 +%define       V_module_image               6.x-1.2
   2.101 +%define       V_module_image_caption       6.x-2.5
   2.102 +%define       V_module_imce                6.x-2.3
   2.103 +%define       V_module_imceimage           6.x-1.0-beta2
   2.104 +%define       V_module_img_assist          6.x-2.0-alpha4
   2.105 +%define       V_module_img_filter          6.x-2.2
   2.106 +%define       V_module_int_meta            6.x-1.0-beta7
   2.107 +%define       V_module_jquery_plugin       6.x-1.10
   2.108 +%define       V_module_jscrollpane         6.x-1.0
   2.109 +%define       V_module_jsmath              6.x-2.0
   2.110 +%define       V_module_jstools             6.x-1.0
   2.111 +%define       V_module_jtooltips           6.x-1.8
   2.112 +%define       V_module_jq_maphilight       6.x-1.3
   2.113 +%define       V_module_jump                6.x-1.1
   2.114 +%define       V_module_lightbox2           6.x-1.11
   2.115 +%define       V_module_link                6.x-2.9
   2.116 +%define       V_module_local_menu          6.x-1.7
   2.117 +%define       V_module_logging_alerts      6.x-2.1
   2.118 +%define       V_module_login_destination   6.x-2.12
   2.119 +%define       V_module_markitup            6.x-2.x-dev
   2.120 +%define       V_module_marksmarty          6.x-1.0
   2.121 +%define       V_module_menu_breadcrumb     6.x-1.3
   2.122 +%define       V_module_menutree            6.x-1.4
   2.123 +%define       V_module_modr8               6.x-1.3
   2.124 +%define       V_module_multisite_manager   6.x-1.0
   2.125 +%define       V_module_multisite_search    6.x-2.3
   2.126 +%define       V_module_nice_menus          6.x-2.1
   2.127 +%define       V_module_node_clone          6.x-1.3
   2.128 +%define       V_module_node_privacy_byrole 6.x-1.6
   2.129 +%define       V_module_node_type_filter    6.x-1.2
   2.130 +%define       V_module_nodeauthor          6.x-1.8
   2.131 +%define       V_module_nodehierarchy       6.x-2.1
   2.132 +%define       V_module_nodeupdates         6.x-1.1
   2.133 +%define       V_module_pagestyle           6.x-1.9
   2.134 +%define       V_module_pathauto            6.x-2.0
   2.135 +%define       V_module_pathfilter          6.x-1.0
   2.136 +%define       V_module_persistent_login    6.x-1.4
   2.137 +%define       V_module_pingback            6.x-1.0
   2.138 +%define       V_module_pngfix              6.x-1.0
   2.139 +%define       V_module_popups              6.x-1.3
   2.140 +%define       V_module_porterstemmer       6.x-2.6
   2.141 +%define       V_module_print               6.x-1.17
   2.142 +%define       V_module_protected_node      6.x-1.9
   2.143 +%define       V_module_quotes              6.x-1.42
   2.144 +%define       V_module_rdf                 6.x-1.0-alpha7
   2.145 +%define       V_module_recent_changes      6.x-1.x-dev
   2.146 +%define       V_module_rest_server         6.x-1.0
   2.147 +%define       V_module_revisiontags        6.x-1.1
   2.148 +%define       V_module_scheduler           6.x-1.8
   2.149 +%define       V_module_schema              6.x-1.7
   2.150 +%define       V_module_search404           6.x-1.12
   2.151 +%define       V_module_sections            6.x-1.4
   2.152 +%define       V_module_services            6.x-3.1
   2.153 +%define       V_module_shadowbox           6.x-4.2
   2.154 +%define       V_module_shoutbox            6.x-2.8
   2.155 +%define       V_module_simplefeed          6.x-1.x-dev
   2.156 +%define       V_module_slideshow_creator   6.x-1.47
   2.157 +%define       V_module_splash              6.x-2.9
   2.158 +%define       V_module_stringoverrides     6.x-1.8
   2.159 +%define       V_module_subscriptions       6.x-1.5
   2.160 +%define       V_module_supernav            6.x-1.0
   2.161 +%define       V_module_switchtheme         6.x-1.1
   2.162 +%define       V_module_table_altrow        6.x-1.2
   2.163 +%define       V_module_tableofcontents     6.x-3.7
   2.164 +%define       V_module_tabs                6.x-1.3
   2.165 +%define       V_module_tagadelic           6.x-1.3
   2.166 +%define       V_module_tagtool             6.x-1.0
   2.167 +%define       V_module_taxonomy_browser    6.x-1.4
   2.168 +%define       V_module_taxonomy_delegate   6.x-1.3
   2.169 +%define       V_module_taxonomy_filter     6.x-1.6
   2.170 +%define       V_module_taxonomy_lite       6.x-1.3
   2.171 +%define       V_module_taxonomy_manager    6.x-2.2
   2.172 +%define       V_module_taxonomy_menu       6.x-2.9
   2.173 +%define       V_module_taxonomy_vtn        6.x-1.11
   2.174 +%define       V_module_taxotouch           6.x-1.1
   2.175 +%define       V_module_teleport            6.x-1.3
   2.176 +%define       V_module_textsize            6.x-1.9
   2.177 +%define       V_module_texy                6.x-1.3
   2.178 +%define       V_module_themesettingsapi    6.x-1.4
   2.179 +%define       V_module_tinytinymce         6.x-1.12
   2.180 +%define       V_module_token               6.x-1.18
   2.181 +%define       V_module_trackback           6.x-1.2
   2.182 +%define       V_module_trash               6.x-1.1
   2.183 +%define       V_module_twikifilter         6.x-1.x-dev
   2.184 +%define       V_module_upload_image        6.x-1.0
   2.185 +%define       V_module_util                6.x-3.1
   2.186 +%define       V_module_views               6.x-3.0
   2.187 +%define       V_module_virtual_site        6.x-1.3
   2.188 +%define       V_module_vocabindex          6.x-2.3
   2.189 +%define       V_module_votingapi           6.x-2.3
   2.190 +%define       V_module_weather             6.x-5.20
   2.191 +%define       V_module_wishlist            6.x-2.6
   2.192 +%define       V_module_wysiwyg             6.x-2.4
   2.193 +%define       V_module_wysiwyg_filter      6.x-1.5
   2.194 +%define       V_module_xmlcontent          6.x-1.x-dev
   2.195 +%define       V_module_xmlsitemap          6.x-1.2
   2.196 +%define       V_module_xstandard           6.x-1.1
   2.197 +%define       V_module_yui                 6.x-1.3
   2.198 +%define       V_module_yui_calendar        6.x-1.1-4
   2.199 +%define       V_module_yui_editor          6.x-2.33
   2.200 +%define       V_module_yuimenu             6.x-1.2
   2.201 +
   2.202 +#   package versions (auxilliary libraries)
   2.203 +%define       V_aux_fckeditor              2.6.6
   2.204 +%define       V_aux_geshi                  1.1.1
   2.205 +%define       V_aux_simplepie              1.2
   2.206 +%define       V_aux_tinymce                2_1_3
   2.207 +%define       V_aux_dompdf                 0.5.1
   2.208 +%define       V_aux_shadowbox              3.0b
   2.209 +%define       V_aux_dashplayer             134
   2.210 +
   2.211 +#   package information
   2.212 +Name:         drupal-module-misc
   2.213 +Summary:      Drupal CMS: Modules Collection
   2.214 +URL:          http://www.drupal.org/
   2.215 +Vendor:       Dries Buytaert et al.
   2.216 +Packager:     OpenPKG Foundation e.V.
   2.217 +Distribution: OpenPKG Community
   2.218 +Class:        PLUS
   2.219 +Group:        CMS
   2.220 +License:      GPL
   2.221 +Version:      %{V_drupal}
   2.222 +Release:      20120826
   2.223 +
   2.224 +#   list of sources
   2.225 +Source0:      http://ftp.drupal.org/files/projects/acl-%{V_module_acl}.tar.gz
   2.226 +Source1:      http://ftp.drupal.org/files/projects/activitystream-%{V_module_activitystream}.tar.gz
   2.227 +Source2:      http://ftp.drupal.org/files/projects/adminrole-%{V_module_adminrole}.tar.gz
   2.228 +Source3:      http://ftp.drupal.org/files/projects/akismet-%{V_module_akismet}.tar.gz
   2.229 +Source4:      http://ftp.drupal.org/files/projects/ajax-%{V_module_ajax}.tar.gz
   2.230 +Source5:      http://ftp.drupal.org/files/projects/alt_login-%{V_module_alt_login}.tar.gz
   2.231 +Source6:      http://ftp.drupal.org/files/projects/archive-%{V_module_archive}.tar.gz
   2.232 +Source7:      http://ftp.drupal.org/files/projects/atom-%{V_module_atom}.tar.gz
   2.233 +Source8:      http://ftp.drupal.org/files/projects/autologout-%{V_module_autologout}.tar.gz
   2.234 +Source9:      http://ftp.drupal.org/files/projects/avatar_selection-%{V_module_avatar_selection}.tar.gz
   2.235 +Source10:     http://ftp.drupal.org/files/projects/backup_migrate-%{V_module_backup_migrate}.tar.gz
   2.236 +Source11:     http://ftp.drupal.org/files/projects/biblio-%{V_module_biblio}.tar.gz
   2.237 +Source12:     http://ftp.drupal.org/files/projects/bitcache-%{V_module_bitcache}.tar.gz
   2.238 +Source13:     http://ftp.drupal.org/files/projects/calendar-%{V_module_calendar}.tar.gz
   2.239 +Source14:     http://ftp.drupal.org/files/projects/captcha-%{V_module_captcha}.tar.gz
   2.240 +Source15:     http://ftp.drupal.org/files/projects/captcha_pack-%{V_module_captcha_pack}.tar.gz
   2.241 +Source16:     http://ftp.drupal.org/files/projects/cck-%{V_module_cck}.tar.gz
   2.242 +Source17:     http://ftp.drupal.org/files/projects/cck_blocks-%{V_module_cck_blocks}.tar.gz
   2.243 +Source18:     http://ftp.drupal.org/files/projects/citation_filter-%{V_module_citation_filter}.tar.gz
   2.244 +Source19:     http://ftp.drupal.org/files/projects/clickpath-%{V_module_clickpath}.tar.gz
   2.245 +Source20:     http://ftp.drupal.org/files/projects/codefilter-%{V_module_codefilter}.tar.gz
   2.246 +Source21:     http://ftp.drupal.org/files/projects/comment_subject-%{V_module_comment_subject}.tar.gz
   2.247 +Source22:     http://ftp.drupal.org/files/projects/comment_subscribe-%{V_module_comment_subscribe}.tar.gz
   2.248 +Source23:     http://ftp.drupal.org/files/projects/condition-%{V_module_condition}.tar.gz
   2.249 +Source24:     http://ftp.drupal.org/files/projects/contemplate-%{V_module_contemplate}.tar.gz
   2.250 +Source25:     http://ftp.drupal.org/files/projects/countdowntimer-%{V_module_countdowntimer}.tar.gz
   2.251 +Source26:     http://ftp.drupal.org/files/projects/css_injector-%{V_module_css_injector}.tar.gz
   2.252 +Source27:     http://ftp.drupal.org/files/projects/custom_breadcrumbs-%{V_module_custom_breadcrumbs}.tar.gz
   2.253 +Source28:     http://ftp.drupal.org/files/projects/daily-%{V_module_daily}.tar.gz
   2.254 +Source29:     http://ftp.drupal.org/files/projects/date-%{V_module_date}.tar.gz
   2.255 +Source30:     http://ftp.drupal.org/files/projects/dashplayer-%{V_module_dashplayer}.tar.gz
   2.256 +Source31:     http://ftp.drupal.org/files/projects/devel-%{V_module_devel}.tar.gz
   2.257 +Source32:     http://ftp.drupal.org/files/projects/dhtml_menu-%{V_module_dhtml_menu}.tar.gz
   2.258 +Source33:     http://ftp.drupal.org/files/projects/diff-%{V_module_diff}.tar.gz
   2.259 +Source34:     http://ftp.drupal.org/files/projects/download_count-%{V_module_download_count}.tar.gz
   2.260 +Source35:     http://ftp.drupal.org/files/projects/email_registration-%{V_module_email_registration}.tar.gz
   2.261 +Source36:     http://ftp.drupal.org/files/projects/epublish-%{V_module_epublish}.tar.gz
   2.262 +Source37:     http://ftp.drupal.org/files/projects/event-%{V_module_event}.tar.gz
   2.263 +Source38:     http://ftp.drupal.org/files/projects/exhibit-%{V_module_exhibit}.tar.gz
   2.264 +Source39:     http://ftp.drupal.org/files/projects/extlink-%{V_module_extlink}.tar.gz
   2.265 +Source40:     http://ftp.drupal.org/files/projects/faq-%{V_module_faq}.tar.gz
   2.266 +Source41:     http://ftp.drupal.org/files/projects/faq_ask-%{V_module_faq_ask}.tar.gz
   2.267 +Source42:     http://ftp.drupal.org/files/projects/fasttoggle-%{V_module_fasttoggle}.tar.gz
   2.268 +Source43:     http://ftp.drupal.org/files/projects/fckeditor-%{V_module_fckeditor}.tar.gz
   2.269 +Source44:     http://ftp.drupal.org/files/projects/feedapi-%{V_module_feedapi}.tar.gz
   2.270 +Source45:     http://ftp.drupal.org/files/projects/filebrowser-%{V_module_filebrowser}.tar.gz
   2.271 +Source46:     http://ftp.drupal.org/files/projects/fileframework-%{V_module_fileframework}.tar.gz
   2.272 +Source47:     http://ftp.drupal.org/files/projects/fivestar-%{V_module_fivestar}.tar.gz
   2.273 +Source48:     http://ftp.drupal.org/files/projects/flag_content-%{V_module_flag_content}.tar.gz
   2.274 +Source49:     http://ftp.drupal.org/files/projects/flashnode-%{V_module_flashnode}.tar.gz
   2.275 +Source50:     http://ftp.drupal.org/files/projects/flashvideo-%{V_module_flashvideo}.tar.gz
   2.276 +Source51:     http://ftp.drupal.org/files/projects/flexifilter-%{V_module_flexifilter}.tar.gz
   2.277 +Source52:     http://ftp.drupal.org/files/projects/flexifilter_cite-%{V_module_flexifilter_cite}.tar.gz
   2.278 +Source53:     http://ftp.drupal.org/files/projects/footermap-%{V_module_footermap}.tar.gz
   2.279 +Source54:     http://ftp.drupal.org/files/projects/footnotes-%{V_module_footnotes}.tar.gz
   2.280 +Source55:     http://ftp.drupal.org/files/projects/forum_access-%{V_module_forum_access}.tar.gz
   2.281 +Source56:     http://ftp.drupal.org/files/projects/forumthread-%{V_module_forumthread}.tar.gz
   2.282 +Source57:     http://ftp.drupal.org/files/projects/freelinking-%{V_module_freelinking}.tar.gz
   2.283 +Source58:     http://ftp.drupal.org/files/projects/front-%{V_module_front}.tar.gz
   2.284 +Source59:     http://ftp.drupal.org/files/projects/geshifilter-%{V_module_geshifilter}.tar.gz
   2.285 +Source60:     http://ftp.drupal.org/files/projects/globalredirect-%{V_module_globalredirect}.tar.gz
   2.286 +Source61:     http://ftp.drupal.org/files/projects/glossary-%{V_module_glossary}.tar.gz
   2.287 +Source62:     http://ftp.drupal.org/files/projects/gotwo-%{V_module_gotwo}.tar.gz
   2.288 +Source63:     http://ftp.drupal.org/files/projects/headerimage-%{V_module_headerimage}.tar.gz
   2.289 +Source64:     http://ftp.drupal.org/files/projects/helpers-%{V_module_helpers}.tar.gz
   2.290 +Source65:     http://ftp.drupal.org/files/projects/htmLawed-%{V_module_htmlawed}.tar.gz
   2.291 +Source66:     http://ftp.drupal.org/files/projects/httpauth-%{V_module_httpauth}.tar.gz
   2.292 +Source67:     http://ftp.drupal.org/files/projects/i18n-%{V_module_i18n}.tar.gz
   2.293 +Source68:     http://ftp.drupal.org/files/projects/iconizer-%{V_module_iconizer}.tar.gz
   2.294 +Source69:     http://ftp.drupal.org/files/projects/image-%{V_module_image}.tar.gz
   2.295 +Source70:     http://ftp.drupal.org/files/projects/image_caption-%{V_module_image_caption}.tar.gz
   2.296 +Source71:     http://ftp.drupal.org/files/projects/imce-%{V_module_imce}.tar.gz
   2.297 +Source72:     http://ftp.drupal.org/files/projects/imceimage-%{V_module_imceimage}.tar.gz
   2.298 +Source73:     http://ftp.drupal.org/files/projects/img_assist-%{V_module_img_assist}.tar.gz
   2.299 +Source74:     http://ftp.drupal.org/files/projects/img_filter-%{V_module_img_filter}.tar.gz
   2.300 +Source75:     http://ftp.drupal.org/files/projects/int_meta-%{V_module_int_meta}.tar.gz
   2.301 +Source76:     http://ftp.drupal.org/files/projects/jquery_plugin-%{V_module_jquery_plugin}.tar.gz
   2.302 +Source77:     http://ftp.drupal.org/files/projects/jscrollpane-%{V_module_jscrollpane}.tar.gz
   2.303 +Source78:     http://ftp.drupal.org/files/projects/jsmath-%{V_module_jsmath}.tar.gz
   2.304 +Source79:     http://ftp.drupal.org/files/projects/jstools-%{V_module_jstools}.tar.gz
   2.305 +Source80:     http://ftp.drupal.org/files/projects/jtooltips-%{V_module_jtooltips}.tar.gz
   2.306 +Source81:     http://ftp.drupal.org/files/projects/jq_maphilight-%{V_module_jq_maphilight}.tar.gz
   2.307 +Source82:     http://ftp.drupal.org/files/projects/jump-%{V_module_jump}.tar.gz
   2.308 +Source83:     http://ftp.drupal.org/files/projects/lightbox2-%{V_module_lightbox2}.tar.gz
   2.309 +Source84:     http://ftp.drupal.org/files/projects/link-%{V_module_link}.tar.gz
   2.310 +Source85:     http://ftp.drupal.org/files/projects/local_menu-%{V_module_local_menu}.tar.gz
   2.311 +Source86:     http://ftp.drupal.org/files/projects/logging_alerts-%{V_module_logging_alerts}.tar.gz
   2.312 +Source87:     http://ftp.drupal.org/files/projects/login_destination-%{V_module_login_destination}.tar.gz
   2.313 +Source88:     http://ftp.drupal.org/files/projects/markitup-%{V_module_markitup}.tar.gz
   2.314 +Source89:     http://ftp.drupal.org/files/projects/marksmarty-%{V_module_marksmarty}.tar.gz
   2.315 +Source90:     http://ftp.drupal.org/files/projects/menu_breadcrumb-%{V_module_menu_breadcrumb}.tar.gz
   2.316 +Source91:     http://ftp.drupal.org/files/projects/menutree-%{V_module_menutree}.tar.gz
   2.317 +Source92:     http://ftp.drupal.org/files/projects/modr8-%{V_module_modr8}.tar.gz
   2.318 +Source93:     http://ftp.drupal.org/files/projects/multisite_manager-%{V_module_multisite_manager}.tar.gz
   2.319 +Source94:     http://ftp.drupal.org/files/projects/multisite_search-%{V_module_multisite_search}.tar.gz
   2.320 +Source95:     http://ftp.drupal.org/files/projects/nice_menus-%{V_module_nice_menus}.tar.gz
   2.321 +Source96:     http://ftp.drupal.org/files/projects/node_clone-%{V_module_node_clone}.tar.gz
   2.322 +Source97:     http://ftp.drupal.org/files/projects/node_privacy_byrole-%{V_module_node_privacy_byrole}.tar.gz
   2.323 +Source98:     http://ftp.drupal.org/files/projects/node_type_filter-%{V_module_node_type_filter}.tar.gz
   2.324 +Source99:     http://ftp.drupal.org/files/projects/nodeauthor-%{V_module_nodeauthor}.tar.gz
   2.325 +Source100:    http://ftp.drupal.org/files/projects/nodehierarchy-%{V_module_nodehierarchy}.tar.gz
   2.326 +Source101:    http://ftp.drupal.org/files/projects/nodeupdates-%{V_module_nodeupdates}.tar.gz
   2.327 +Source102:    http://ftp.drupal.org/files/projects/pagestyle-%{V_module_pagestyle}.tar.gz
   2.328 +Source103:    http://ftp.drupal.org/files/projects/pathauto-%{V_module_pathauto}.tar.gz
   2.329 +Source104:    http://ftp.drupal.org/files/projects/pathfilter-%{V_module_pathfilter}.tar.gz
   2.330 +Source105:    http://ftp.drupal.org/files/projects/persistent_login-%{V_module_persistent_login}.tar.gz
   2.331 +Source106:    http://ftp.drupal.org/files/projects/pingback-%{V_module_pingback}.tar.gz
   2.332 +Source107:    http://ftp.drupal.org/files/projects/pngfix-%{V_module_pngfix}.tar.gz
   2.333 +Source108:    http://ftp.drupal.org/files/projects/popups-%{V_module_popups}.tar.gz
   2.334 +Source109:    http://ftp.drupal.org/files/projects/porterstemmer-%{V_module_porterstemmer}.tar.gz
   2.335 +Source110:    http://ftp.drupal.org/files/projects/print-%{V_module_print}.tar.gz
   2.336 +Source111:    http://ftp.drupal.org/files/projects/protected_node-%{V_module_protected_node}.tar.gz
   2.337 +Source112:    http://ftp.drupal.org/files/projects/quotes-%{V_module_quotes}.tar.gz
   2.338 +Source113:    http://ftp.drupal.org/files/projects/rdf-%{V_module_rdf}.tar.gz
   2.339 +Source114:    http://ftp.drupal.org/files/projects/recent_changes-%{V_module_recent_changes}.tar.gz
   2.340 +Source115:    http://ftp.drupal.org/files/projects/rest_server-%{V_module_rest_server}.tar.gz
   2.341 +Source116:    http://ftp.drupal.org/files/projects/revisiontags-%{V_module_revisiontags}.tar.gz
   2.342 +Source117:    http://ftp.drupal.org/files/projects/scheduler-%{V_module_scheduler}.tar.gz
   2.343 +Source118:    http://ftp.drupal.org/files/projects/schema-%{V_module_schema}.tar.gz
   2.344 +Source119:    http://ftp.drupal.org/files/projects/search404-%{V_module_search404}.tar.gz
   2.345 +Source120:    http://ftp.drupal.org/files/projects/sections-%{V_module_sections}.tar.gz
   2.346 +Source121:    http://ftp.drupal.org/files/projects/services-%{V_module_services}.tar.gz
   2.347 +Source122:    http://ftp.drupal.org/files/projects/shadowbox-%{V_module_shadowbox}.tar.gz
   2.348 +Source123:    http://ftp.drupal.org/files/projects/shoutbox-%{V_module_shoutbox}.tar.gz
   2.349 +Source124:    http://ftp.drupal.org/files/projects/simplefeed-%{V_module_simplefeed}.tar.gz
   2.350 +Source125:    http://ftp.drupal.org/files/projects/slideshow_creator-%{V_module_slideshow_creator}.tar.gz
   2.351 +Source126:    http://ftp.drupal.org/files/projects/splash-%{V_module_splash}.tar.gz
   2.352 +Source127:    http://ftp.drupal.org/files/projects/stringoverrides-%{V_module_stringoverrides}.tar.gz
   2.353 +Source128:    http://ftp.drupal.org/files/projects/subscriptions-%{V_module_subscriptions}.tar.gz
   2.354 +Source129:    http://ftp.drupal.org/files/projects/supernav-%{V_module_supernav}.tar.gz
   2.355 +Source130:    http://ftp.drupal.org/files/projects/switchtheme-%{V_module_switchtheme}.tar.gz
   2.356 +Source131:    http://ftp.drupal.org/files/projects/table_altrow-%{V_module_table_altrow}.tar.gz
   2.357 +Source132:    http://ftp.drupal.org/files/projects/tabs-%{V_module_tabs}.tar.gz
   2.358 +Source133:    http://ftp.drupal.org/files/projects/tagadelic-%{V_module_tagadelic}.tar.gz
   2.359 +Source134:    http://ftp.drupal.org/files/projects/tagtool-%{V_module_tagtool}.tar.gz
   2.360 +Source135:    http://ftp.drupal.org/files/projects/tableofcontents-%{V_module_tableofcontents}.tar.gz
   2.361 +Source136:    http://ftp.drupal.org/files/projects/taxonomy_browser-%{V_module_taxonomy_browser}.tar.gz
   2.362 +Source137:    http://ftp.drupal.org/files/projects/taxonomy_delegate-%{V_module_taxonomy_delegate}.tar.gz
   2.363 +Source138:    http://ftp.drupal.org/files/projects/taxonomy_filter-%{V_module_taxonomy_filter}.tar.gz
   2.364 +Source139:    http://ftp.drupal.org/files/projects/tac_lite-%{V_module_taxonomy_lite}.tar.gz
   2.365 +Source140:    http://ftp.drupal.org/files/projects/taxonomy_manager-%{V_module_taxonomy_manager}.tar.gz
   2.366 +Source141:    http://ftp.drupal.org/files/projects/taxonomy_menu-%{V_module_taxonomy_menu}.tar.gz
   2.367 +Source142:    http://ftp.drupal.org/files/projects/taxonomy_vtn-%{V_module_taxonomy_vtn}.tar.gz
   2.368 +Source143:    http://ftp.drupal.org/files/projects/taxotouch-%{V_module_taxotouch}.tar.gz
   2.369 +Source144:    http://ftp.drupal.org/files/projects/teleport-%{V_module_teleport}.tar.gz
   2.370 +Source145:    http://ftp.drupal.org/files/projects/textsize-%{V_module_textsize}.tar.gz
   2.371 +Source146:    http://ftp.drupal.org/files/projects/texy-%{V_module_texy}.tar.gz
   2.372 +Source147:    http://ftp.drupal.org/files/projects/themesettingsapi-%{V_module_themesettingsapi}.tar.gz
   2.373 +Source148:    http://ftp.drupal.org/files/projects/tinytinymce-%{V_module_tinytinymce}.tar.gz
   2.374 +Source149:    http://ftp.drupal.org/files/projects/token-%{V_module_token}.tar.gz
   2.375 +Source150:    http://ftp.drupal.org/files/projects/trackback-%{V_module_trackback}.tar.gz
   2.376 +Source151:    http://ftp.drupal.org/files/projects/trash-%{V_module_trash}.tar.gz
   2.377 +Source152:    http://ftp.drupal.org/files/projects/twikifilter-%{V_module_twikifilter}.tar.gz
   2.378 +Source153:    http://ftp.drupal.org/files/projects/upload_image-%{V_module_upload_image}.tar.gz
   2.379 +Source154:    http://ftp.drupal.org/files/projects/util-%{V_module_util}.tar.gz
   2.380 +Source155:    http://ftp.drupal.org/files/projects/views-%{V_module_views}.tar.gz
   2.381 +Source156:    http://ftp.drupal.org/files/projects/virtual_site-%{V_module_virtual_site}.tar.gz
   2.382 +Source157:    http://ftp.drupal.org/files/projects/vocabindex-%{V_module_vocabindex}.tar.gz
   2.383 +Source158:    http://ftp.drupal.org/files/projects/votingapi-%{V_module_votingapi}.tar.gz
   2.384 +Source159:    http://ftp.drupal.org/files/projects/weather-%{V_module_weather}.tar.gz
   2.385 +Source160:    http://ftp.drupal.org/files/projects/wishlist-%{V_module_wishlist}.tar.gz
   2.386 +Source161:    http://ftp.drupal.org/files/projects/wysiwyg-%{V_module_wysiwyg}.tar.gz
   2.387 +Source162:    http://ftp.drupal.org/files/projects/wysiwyg_filter-%{V_module_wysiwyg_filter}.tar.gz
   2.388 +Source163:    http://ftp.drupal.org/files/projects/xmlcontent-%{V_module_xmlcontent}.tar.gz
   2.389 +Source164:    http://ftp.drupal.org/files/projects/xmlsitemap-%{V_module_xmlsitemap}.tar.gz
   2.390 +Source165:    http://ftp.drupal.org/files/projects/xstandard-%{V_module_xstandard}.tar.gz
   2.391 +Source166:    http://ftp.drupal.org/files/projects/yui-%{V_module_yui}.tar.gz
   2.392 +Source167:    http://ftp.drupal.org/files/projects/yui_calendar-%{V_module_yui_calendar}.tar.gz
   2.393 +Source168:    http://ftp.drupal.org/files/projects/yui_editor-%{V_module_yui_editor}.tar.gz
   2.394 +Source169:    http://ftp.drupal.org/files/projects/yuimenu-%{V_module_yuimenu}.tar.gz
   2.395 +Source300:    http://switch.dl.sourceforge.net/fckeditor/FCKeditor_%{V_aux_fckeditor}.tar.gz
   2.396 +Source301:    http://switch.dl.sourceforge.net/geshi/GeSHi-%{V_aux_geshi}.tar.gz
   2.397 +Source302:    http://simplepie.org/downloads/simplepie_%{V_aux_simplepie}.zip
   2.398 +Source303:    http://switch.dl.sourceforge.net/tinymce/tinymce_%{V_aux_tinymce}.zip
   2.399 +Source304:    http://switch.dl.sourceforge.net/dompdf/dompdf-%{V_aux_dompdf}.tar.gz
   2.400 +Source305:    http://download.openpkg.org/components/versioned/shadowbox/shadowbox-build-%{V_aux_shadowbox}.zip
   2.401 +Source306:    http://www.tmtdigital.com/system/files/dashplayer_v%{V_aux_dashplayer}.zip
   2.402 +Patch0:       drupal-module-misc.patch
   2.403 +
   2.404 +#   build information
   2.405 +BuildPreReq:  OpenPKG, openpkg >= 20100101, infozip
   2.406 +PreReq:       OpenPKG, openpkg >= 20100101
   2.407 +PreReq:       drupal
   2.408 +
   2.409 +%description
   2.410 +    Drupal is a dynamic web site platform which allows an individual
   2.411 +    or community of users to publish, manage and organize a
   2.412 +    variety of content, Drupal integrates many popular features of
   2.413 +    content management systems, weblogs, collaborative tools and
   2.414 +    discussion-miscd community software into one easy-to-use package.
   2.415 +
   2.416 +%track
   2.417 +    prog drupal-module-misc:module_acl = {
   2.418 +        version   = %{V_module_acl}
   2.419 +        url       = http://ftp.drupal.org/files/projects/
   2.420 +        regex     = >acl-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.421 +    }
   2.422 +    prog drupal-module-misc:module_activitystream = {
   2.423 +        version   = %{V_module_activitystream}
   2.424 +        url       = http://ftp.drupal.org/files/projects/
   2.425 +        regex     = >activitystream-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.426 +    }
   2.427 +    prog drupal-module-misc:module_adminrole = {
   2.428 +        version   = %{V_module_adminrole}
   2.429 +        url       = http://ftp.drupal.org/files/projects/
   2.430 +        regex     = >adminrole-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.431 +    }
   2.432 +    prog drupal-module-misc:module_akismet = {
   2.433 +        version   = %{V_module_akismet}
   2.434 +        url       = http://ftp.drupal.org/files/projects/
   2.435 +        regex     = >akismet-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.436 +    }
   2.437 +    prog drupal-module-misc:module_ajax = {
   2.438 +        version   = %{V_module_ajax}
   2.439 +        url       = http://ftp.drupal.org/files/projects/
   2.440 +        regex     = >ajax-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.441 +    }
   2.442 +    prog drupal-module-misc:module_alt_login = {
   2.443 +        version   = %{V_module_alt_login}
   2.444 +        url       = http://ftp.drupal.org/files/projects/
   2.445 +        regex     = >alt_login-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.446 +    }
   2.447 +    prog drupal-module-misc:module_archive = {
   2.448 +        version   = %{V_module_archive}
   2.449 +        url       = http://ftp.drupal.org/files/projects/
   2.450 +        regex     = >archive-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.451 +    }
   2.452 +    prog drupal-module-misc:module_atom = {
   2.453 +        version   = %{V_module_atom}
   2.454 +        url       = http://ftp.drupal.org/files/projects/
   2.455 +        regex     = >atom-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.456 +    }
   2.457 +    prog drupal-module-misc:module_autologout = {
   2.458 +        version   = %{V_module_autologout}
   2.459 +        url       = http://ftp.drupal.org/files/projects/
   2.460 +        regex     = >autologout-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.461 +    }
   2.462 +    prog drupal-module-misc:module_avatar_selection = {
   2.463 +        version   = %{V_module_avatar_selection}
   2.464 +        url       = http://ftp.drupal.org/files/projects/
   2.465 +        regex     = >avatar_selection-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.466 +    }
   2.467 +    prog drupal-module-misc:module_backup_migrate = {
   2.468 +        version   = %{V_module_backup_migrate}
   2.469 +        url       = http://ftp.drupal.org/files/projects/
   2.470 +        regex     = >backup_migrate-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.471 +    }
   2.472 +    prog drupal-module-misc:module_biblio = {
   2.473 +        version   = %{V_module_biblio}
   2.474 +        url       = http://ftp.drupal.org/files/projects/
   2.475 +        regex     = >biblio-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.476 +    }
   2.477 +    prog drupal-module-misc:module_calendar = {
   2.478 +        version   = %{V_module_calendar}
   2.479 +        url       = http://ftp.drupal.org/files/projects/
   2.480 +        regex     = >calendar-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.481 +    }
   2.482 +    prog drupal-module-misc:module_captcha = {
   2.483 +        version   = %{V_module_captcha}
   2.484 +        url       = http://ftp.drupal.org/files/projects/
   2.485 +        regex     = >captcha-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.486 +    }
   2.487 +    prog drupal-module-misc:module_captcha_pack = {
   2.488 +        version   = %{V_module_captcha_pack}
   2.489 +        url       = http://ftp.drupal.org/files/projects/
   2.490 +        regex     = >captcha_pack-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.491 +    }
   2.492 +    prog drupal-module-misc:module_cck = {
   2.493 +        version   = %{V_module_cck}
   2.494 +        url       = http://ftp.drupal.org/files/projects/
   2.495 +        regex     = >cck-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.496 +    }
   2.497 +    prog drupal-module-misc:module_cck_blocks = {
   2.498 +        version   = %{V_module_cck_blocks}
   2.499 +        url       = http://ftp.drupal.org/files/projects/
   2.500 +        regex     = >cck_blocks-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.501 +    }
   2.502 +    prog drupal-module-misc:module_citation_filter = {
   2.503 +        version   = %{V_module_citation_filter}
   2.504 +        url       = http://ftp.drupal.org/files/projects/
   2.505 +        regex     = >citation_filter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.506 +    }
   2.507 +    prog drupal-module-misc:module_clickpath = {
   2.508 +        version   = %{V_module_clickpath}
   2.509 +        url       = http://ftp.drupal.org/files/projects/
   2.510 +        regex     = >clickpath-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.511 +    }
   2.512 +    prog drupal-module-misc:module_codefilter = {
   2.513 +        version   = %{V_module_codefilter}
   2.514 +        url       = http://ftp.drupal.org/files/projects/
   2.515 +        regex     = >codefilter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.516 +    }
   2.517 +    prog drupal-module-misc:module_comment_subject = {
   2.518 +        version   = %{V_module_comment_subject}
   2.519 +        url       = http://ftp.drupal.org/files/projects/
   2.520 +        regex     = >comment_subject-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.521 +    }
   2.522 +    prog drupal-module-misc:module_comment_subscribe = {
   2.523 +        version   = %{V_module_comment_subscribe}
   2.524 +        url       = http://ftp.drupal.org/files/projects/
   2.525 +        regex     = >comment_subscribe-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.526 +    }
   2.527 +    prog drupal-module-misc:module_condition = {
   2.528 +        version   = %{V_module_condition}
   2.529 +        url       = http://ftp.drupal.org/files/projects/
   2.530 +        regex     = >condition-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.531 +    }
   2.532 +    prog drupal-module-misc:module_contemplate = {
   2.533 +        version   = %{V_module_contemplate}
   2.534 +        url       = http://ftp.drupal.org/files/projects/
   2.535 +        regex     = >contemplate-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.536 +    }
   2.537 +    prog drupal-module-misc:module_countdowntimer = {
   2.538 +        version   = %{V_module_countdowntimer}
   2.539 +        url       = http://ftp.drupal.org/files/projects/
   2.540 +        regex     = >countdowntimer-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.541 +    }
   2.542 +    prog drupal-module-misc:module_css_injector = {
   2.543 +        version   = %{V_module_css_injector}
   2.544 +        url       = http://ftp.drupal.org/files/projects/
   2.545 +        regex     = >css_injector-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.546 +    }
   2.547 +    prog drupal-module-misc:module_custom_breadcrumbs = {
   2.548 +        version   = %{V_module_custom_breadcrumbs}
   2.549 +        url       = http://ftp.drupal.org/files/projects/
   2.550 +        regex     = >custom_breadcrumbs-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.551 +    }
   2.552 +    prog drupal-module-misc:module_daily = {
   2.553 +        version   = %{V_module_daily}
   2.554 +        url       = http://ftp.drupal.org/files/projects/
   2.555 +        regex     = >daily-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.556 +    }
   2.557 +    prog drupal-module-misc:module_date = {
   2.558 +        version   = %{V_module_date}
   2.559 +        url       = http://ftp.drupal.org/files/projects/
   2.560 +        regex     = >date-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.561 +    }
   2.562 +    prog drupal-module-misc:module_dashplayer = {
   2.563 +        version   = %{V_module_dashplayer}
   2.564 +        url       = http://ftp.drupal.org/files/projects/
   2.565 +        regex     = >dashplayer-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.566 +    }
   2.567 +    prog drupal-module-misc:module_devel = {
   2.568 +        version   = %{V_module_devel}
   2.569 +        url       = http://ftp.drupal.org/files/projects/
   2.570 +        regex     = >devel-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.571 +    }
   2.572 +    prog drupal-module-misc:module_dhtml_menu = {
   2.573 +        version   = %{V_module_dhtml_menu}
   2.574 +        url       = http://ftp.drupal.org/files/projects/
   2.575 +        regex     = >dhtml_menu-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.576 +    }
   2.577 +    prog drupal-module-misc:module_diff = {
   2.578 +        version   = %{V_module_diff}
   2.579 +        url       = http://ftp.drupal.org/files/projects/
   2.580 +        regex     = >diff-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.581 +    }
   2.582 +    prog drupal-module-misc:module_download_count = {
   2.583 +        version   = %{V_module_download_count}
   2.584 +        url       = http://ftp.drupal.org/files/projects/
   2.585 +        regex     = >download_count-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.586 +    }
   2.587 +    prog drupal-module-misc:module_email_registration = {
   2.588 +        version   = %{V_module_email_registration}
   2.589 +        url       = http://ftp.drupal.org/files/projects/
   2.590 +        regex     = >email_registration-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.591 +    }
   2.592 +    prog drupal-module-misc:module_epublish = {
   2.593 +        version   = %{V_module_epublish}
   2.594 +        url       = http://ftp.drupal.org/files/projects/
   2.595 +        regex     = >epublish-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.596 +    }
   2.597 +    prog drupal-module-misc:module_event = {
   2.598 +        version   = %{V_module_event}
   2.599 +        url       = http://ftp.drupal.org/files/projects/
   2.600 +        regex     = >event-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.601 +    }
   2.602 +    prog drupal-module-misc:module_exhibit = {
   2.603 +        version   = %{V_module_exhibit}
   2.604 +        url       = http://ftp.drupal.org/files/projects/
   2.605 +        regex     = >exhibit-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.606 +    }
   2.607 +    prog drupal-module-misc:module_extlink = {
   2.608 +        version   = %{V_module_extlink}
   2.609 +        url       = http://ftp.drupal.org/files/projects/
   2.610 +        regex     = >extlink-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.611 +    }
   2.612 +    prog drupal-module-misc:module_faq = {
   2.613 +        version   = %{V_module_faq}
   2.614 +        url       = http://ftp.drupal.org/files/projects/
   2.615 +        regex     = >faq-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.616 +    }
   2.617 +    prog drupal-module-misc:module_faq_ask = {
   2.618 +        version   = %{V_module_faq_ask}
   2.619 +        url       = http://ftp.drupal.org/files/projects/
   2.620 +        regex     = >faq_ask-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.621 +    }
   2.622 +    prog drupal-module-misc:module_fasttoggle = {
   2.623 +        version   = %{V_module_fasttoggle}
   2.624 +        url       = http://ftp.drupal.org/files/projects/
   2.625 +        regex     = >fasttoggle-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.626 +    }
   2.627 +    prog drupal-module-misc:module_fckeditor = {
   2.628 +        version   = %{V_module_fckeditor}
   2.629 +        url       = http://ftp.drupal.org/files/projects/
   2.630 +        regex     = >fckeditor-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.631 +    }
   2.632 +    prog drupal-module-misc:module_feedapi = {
   2.633 +        version   = %{V_module_feedapi}
   2.634 +        url       = http://ftp.drupal.org/files/projects/
   2.635 +        regex     = >feedapi-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.636 +    }
   2.637 +    prog drupal-module-misc:module_filebrowser = {
   2.638 +        version   = %{V_module_filebrowser}
   2.639 +        url       = http://ftp.drupal.org/files/projects/
   2.640 +        regex     = >filebrowser-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.641 +    }
   2.642 +    prog drupal-module-misc:module_fileframework = {
   2.643 +        version   = %{V_module_fileframework}
   2.644 +        url       = http://ftp.drupal.org/files/projects/
   2.645 +        regex     = >fileframework-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.646 +    }
   2.647 +    prog drupal-module-misc:module_fivestar = {
   2.648 +        version   = %{V_module_fivestar}
   2.649 +        url       = http://ftp.drupal.org/files/projects/
   2.650 +        regex     = >fivestar-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.651 +    }
   2.652 +    prog drupal-module-misc:module_flag_content = {
   2.653 +        version   = %{V_module_flag_content}
   2.654 +        url       = http://ftp.drupal.org/files/projects/
   2.655 +        regex     = >flag_content-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.656 +    }
   2.657 +    prog drupal-module-misc:module_flashnode = {
   2.658 +        version   = %{V_module_flashnode}
   2.659 +        url       = http://ftp.drupal.org/files/projects/
   2.660 +        regex     = >flashnode-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.661 +    }
   2.662 +    prog drupal-module-misc:module_flashvideo = {
   2.663 +        version   = %{V_module_flashvideo}
   2.664 +        url       = http://ftp.drupal.org/files/projects/
   2.665 +        regex     = >flashvideo-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.666 +    }
   2.667 +    prog drupal-module-misc:module_flexifilter = {
   2.668 +        version   = %{V_module_flexifilter}
   2.669 +        url       = http://ftp.drupal.org/files/projects/
   2.670 +        regex     = >flexifilter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.671 +    }
   2.672 +    prog drupal-module-misc:module_flexifilter_cite = {
   2.673 +        version   = %{V_module_flexifilter_cite}
   2.674 +        url       = http://ftp.drupal.org/files/projects/
   2.675 +        regex     = >flexifilter_cite-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.676 +    }
   2.677 +    prog drupal-module-misc:module_footermap = {
   2.678 +        version   = %{V_module_footermap}
   2.679 +        url       = http://ftp.drupal.org/files/projects/
   2.680 +        regex     = >footermap-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.681 +    }
   2.682 +    prog drupal-module-misc:module_footnotes = {
   2.683 +        version   = %{V_module_footnotes}
   2.684 +        url       = http://ftp.drupal.org/files/projects/
   2.685 +        regex     = >footnotes-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.686 +    }
   2.687 +    prog drupal-module-misc:module_forum_access = {
   2.688 +        version   = %{V_module_forum_access}
   2.689 +        url       = http://ftp.drupal.org/files/projects/
   2.690 +        regex     = >forum_access-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.691 +    }
   2.692 +    prog drupal-module-misc:module_forumthread = {
   2.693 +        version   = %{V_module_forumthread}
   2.694 +        url       = http://ftp.drupal.org/files/projects/
   2.695 +        regex     = >forumthread-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.696 +    }
   2.697 +    prog drupal-module-misc:module_freelinking = {
   2.698 +        version   = %{V_module_freelinking}
   2.699 +        url       = http://ftp.drupal.org/files/projects/
   2.700 +        regex     = >freelinking-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.701 +    }
   2.702 +    prog drupal-module-misc:module_front = {
   2.703 +        version   = %{V_module_front}
   2.704 +        url       = http://ftp.drupal.org/files/projects/
   2.705 +        regex     = >front-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.706 +    }
   2.707 +    prog drupal-module-misc:module_geshifilter = {
   2.708 +        version   = %{V_module_geshifilter}
   2.709 +        url       = http://ftp.drupal.org/files/projects/
   2.710 +        regex     = >geshifilter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.711 +    }
   2.712 +    prog drupal-module-misc:module_globalredirect = {
   2.713 +        version   = %{V_module_globalredirect}
   2.714 +        url       = http://ftp.drupal.org/files/projects/
   2.715 +        regex     = >globalredirect-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.716 +    }
   2.717 +    prog drupal-module-misc:module_glossary = {
   2.718 +        version   = %{V_module_glossary}
   2.719 +        url       = http://ftp.drupal.org/files/projects/
   2.720 +        regex     = >glossary-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.721 +    }
   2.722 +    prog drupal-module-misc:module_gotwo = {
   2.723 +        version   = %{V_module_gotwo}
   2.724 +        url       = http://ftp.drupal.org/files/projects/
   2.725 +        regex     = >gotwo-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.726 +    }
   2.727 +    prog drupal-module-misc:module_headerimage = {
   2.728 +        version   = %{V_module_headerimage}
   2.729 +        url       = http://ftp.drupal.org/files/projects/
   2.730 +        regex     = >headerimage-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.731 +    }
   2.732 +    prog drupal-module-misc:module_helpers = {
   2.733 +        version   = %{V_module_helpers}
   2.734 +        url       = http://ftp.drupal.org/files/projects/
   2.735 +        regex     = >helpers-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.736 +    }
   2.737 +    prog drupal-module-misc:module_htmlawed = {
   2.738 +        version   = %{V_module_htmlawed}
   2.739 +        url       = http://ftp.drupal.org/files/projects/
   2.740 +        regex     = >htm[lL]awed-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.741 +    }
   2.742 +    prog drupal-module-misc:module_httpauth = {
   2.743 +        version   = %{V_module_httpauth}
   2.744 +        url       = http://ftp.drupal.org/files/projects/
   2.745 +        regex     = >httpauth-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.746 +    }
   2.747 +    prog drupal-module-misc:module_i18n = {
   2.748 +        version   = %{V_module_i18n}
   2.749 +        url       = http://ftp.drupal.org/files/projects/
   2.750 +        regex     = >i18n-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.751 +    }
   2.752 +    prog drupal-module-misc:module_iconizer = {
   2.753 +        version   = %{V_module_iconizer}
   2.754 +        url       = http://ftp.drupal.org/files/projects/
   2.755 +        regex     = >iconizer-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.756 +    }
   2.757 +    prog drupal-module-misc:module_image = {
   2.758 +        version   = %{V_module_image}
   2.759 +        url       = http://ftp.drupal.org/files/projects/
   2.760 +        regex     = >image-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.761 +    }
   2.762 +    prog drupal-module-misc:module_image_caption = {
   2.763 +        version   = %{V_module_image_caption}
   2.764 +        url       = http://ftp.drupal.org/files/projects/
   2.765 +        regex     = >image_caption-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.766 +    }
   2.767 +    prog drupal-module-misc:module_imce = {
   2.768 +        version   = %{V_module_imce}
   2.769 +        url       = http://ftp.drupal.org/files/projects/
   2.770 +        regex     = >imce-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.771 +    }
   2.772 +    prog drupal-module-misc:module_imceimage = {
   2.773 +        version   = %{V_module_imceimage}
   2.774 +        url       = http://ftp.drupal.org/files/projects/
   2.775 +        regex     = >imceimage-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.776 +    }
   2.777 +    prog drupal-module-misc:module_img_assist = {
   2.778 +        version   = %{V_module_img_assist}
   2.779 +        url       = http://ftp.drupal.org/files/projects/
   2.780 +        regex     = >img_assist-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.781 +    }
   2.782 +    prog drupal-module-misc:module_img_filter = {
   2.783 +        version   = %{V_module_img_filter}
   2.784 +        url       = http://ftp.drupal.org/files/projects/
   2.785 +        regex     = >img_filter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.786 +    }
   2.787 +    prog drupal-module-misc:module_int_meta = {
   2.788 +        version   = %{V_module_int_meta}
   2.789 +        url       = http://ftp.drupal.org/files/projects/
   2.790 +        regex     = >int_meta-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.791 +    }
   2.792 +    prog drupal-module-misc:module_jquery_plugin = {
   2.793 +        version   = %{V_module_jquery_plugin}
   2.794 +        url       = http://ftp.drupal.org/files/projects/
   2.795 +        regex     = >jquery_plugin-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.796 +    }
   2.797 +    prog drupal-module-misc:module_jscrollpane = {
   2.798 +        version   = %{V_module_jscrollpane}
   2.799 +        url       = http://ftp.drupal.org/files/projects/
   2.800 +        regex     = >jscrollpane-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.801 +    }
   2.802 +    prog drupal-module-misc:module_jsmath = {
   2.803 +        version   = %{V_module_jsmath}
   2.804 +        url       = http://ftp.drupal.org/files/projects/
   2.805 +        regex     = >jsmath-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.806 +    }
   2.807 +    prog drupal-module-misc:module_jstools = {
   2.808 +        version   = %{V_module_jstools}
   2.809 +        url       = http://ftp.drupal.org/files/projects/
   2.810 +        regex     = >jstools-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.811 +    }
   2.812 +    prog drupal-module-misc:module_jtooltips = {
   2.813 +        version   = %{V_module_jtooltips}
   2.814 +        url       = http://ftp.drupal.org/files/projects/
   2.815 +        regex     = >jtooltips-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.816 +    }
   2.817 +    prog drupal-module-misc:module_jq_maphilight = {
   2.818 +        version   = %{V_module_jq_maphilight}
   2.819 +        url       = http://ftp.drupal.org/files/projects/
   2.820 +        regex     = >jq_maphilight-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.821 +    }
   2.822 +    prog drupal-module-misc:module_jump = {
   2.823 +        version   = %{V_module_jump}
   2.824 +        url       = http://ftp.drupal.org/files/projects/
   2.825 +        regex     = >jump-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.826 +    }
   2.827 +    prog drupal-module-misc:module_lightbox2 = {
   2.828 +        version   = %{V_module_lightbox2}
   2.829 +        url       = http://ftp.drupal.org/files/projects/
   2.830 +        regex     = >lightbox2-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.831 +    }
   2.832 +    prog drupal-module-misc:module_link = {
   2.833 +        version   = %{V_module_link}
   2.834 +        url       = http://ftp.drupal.org/files/projects/
   2.835 +        regex     = >link-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.836 +    }
   2.837 +    prog drupal-module-misc:module_local_menu = {
   2.838 +        version   = %{V_module_local_menu}
   2.839 +        url       = http://ftp.drupal.org/files/projects/
   2.840 +        regex     = >local_menu-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.841 +    }
   2.842 +    prog drupal-module-misc:module_logging_alerts = {
   2.843 +        version   = %{V_module_logging_alerts}
   2.844 +        url       = http://ftp.drupal.org/files/projects/
   2.845 +        regex     = >logging_alerts-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.846 +    }
   2.847 +    prog drupal-module-misc:module_login_destination = {
   2.848 +        version   = %{V_module_login_destination}
   2.849 +        url       = http://ftp.drupal.org/files/projects/
   2.850 +        regex     = >login_destination-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.851 +    }
   2.852 +    prog drupal-module-misc:module_markitup = {
   2.853 +        version   = %{V_module_markitup}
   2.854 +        url       = http://ftp.drupal.org/files/projects/
   2.855 +        regex     = >markitup-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.856 +    }
   2.857 +    prog drupal-module-misc:module_marksmarty = {
   2.858 +        version   = %{V_module_marksmarty}
   2.859 +        url       = http://ftp.drupal.org/files/projects/
   2.860 +        regex     = >marksmarty-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.861 +    }
   2.862 +    prog drupal-module-misc:module_menu_breadcrumb = {
   2.863 +        version   = %{V_module_menu_breadcrumb}
   2.864 +        url       = http://ftp.drupal.org/files/projects/
   2.865 +        regex     = >menu_breadcrumb-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.866 +    }
   2.867 +    prog drupal-module-misc:module_menutree = {
   2.868 +        version   = %{V_module_menutree}
   2.869 +        url       = http://ftp.drupal.org/files/projects/
   2.870 +        regex     = >menutree-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.871 +    }
   2.872 +    prog drupal-module-misc:module_modr8 = {
   2.873 +        version   = %{V_module_modr8}
   2.874 +        url       = http://ftp.drupal.org/files/projects/
   2.875 +        regex     = >modr8-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.876 +    }
   2.877 +    prog drupal-module-misc:module_multisite_manager = {
   2.878 +        version   = %{V_module_multisite_manager}
   2.879 +        url       = http://ftp.drupal.org/files/projects/
   2.880 +        regex     = >multisite_manager-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.881 +    }
   2.882 +    prog drupal-module-misc:module_multisite_search = {
   2.883 +        version   = %{V_module_multisite_search}
   2.884 +        url       = http://ftp.drupal.org/files/projects/
   2.885 +        regex     = >multisite_search-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.886 +    }
   2.887 +    prog drupal-module-misc:module_nice_menus = {
   2.888 +        version   = %{V_module_nice_menus}
   2.889 +        url       = http://ftp.drupal.org/files/projects/
   2.890 +        regex     = >nice_menus-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.891 +    }
   2.892 +    prog drupal-module-misc:module_node_clone = {
   2.893 +        version   = %{V_module_node_clone}
   2.894 +        url       = http://ftp.drupal.org/files/projects/
   2.895 +        regex     = >node_clone-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.896 +    }
   2.897 +    prog drupal-module-misc:module_node_privacy_byrole = {
   2.898 +        version   = %{V_module_node_privacy_byrole}
   2.899 +        url       = http://ftp.drupal.org/files/projects/
   2.900 +        regex     = >node_privacy_byrole-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.901 +    }
   2.902 +    prog drupal-module-misc:module_node_type_filter = {
   2.903 +        version   = %{V_module_node_type_filter}
   2.904 +        url       = http://ftp.drupal.org/files/projects/
   2.905 +        regex     = >node_type_filter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.906 +    }
   2.907 +    prog drupal-module-misc:module_nodeauthor = {
   2.908 +        version   = %{V_module_nodeauthor}
   2.909 +        url       = http://ftp.drupal.org/files/projects/
   2.910 +        regex     = >nodeauthor-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.911 +    }
   2.912 +    prog drupal-module-misc:module_nodehierarchy = {
   2.913 +        version   = %{V_module_nodehierarchy}
   2.914 +        url       = http://ftp.drupal.org/files/projects/
   2.915 +        regex     = >nodehierarchy-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.916 +    }
   2.917 +    prog drupal-module-misc:module_nodeupdates = {
   2.918 +        version   = %{V_module_nodeupdates}
   2.919 +        url       = http://ftp.drupal.org/files/projects/
   2.920 +        regex     = >nodeupdates-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.921 +    }
   2.922 +    prog drupal-module-misc:module_pagestyle = {
   2.923 +        version   = %{V_module_pagestyle}
   2.924 +        url       = http://ftp.drupal.org/files/projects/
   2.925 +        regex     = >pagestyle-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.926 +    }
   2.927 +    prog drupal-module-misc:module_pathauto = {
   2.928 +        version   = %{V_module_pathauto}
   2.929 +        url       = http://ftp.drupal.org/files/projects/
   2.930 +        regex     = >pathauto-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.931 +    }
   2.932 +    prog drupal-module-misc:module_pathfilter = {
   2.933 +        version   = %{V_module_pathfilter}
   2.934 +        url       = http://ftp.drupal.org/files/projects/
   2.935 +        regex     = >pathfilter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.936 +    }
   2.937 +    prog drupal-module-misc:module_persistent_login = {
   2.938 +        version   = %{V_module_persistent_login}
   2.939 +        url       = http://ftp.drupal.org/files/projects/
   2.940 +        regex     = >persistent_login-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.941 +    }
   2.942 +    prog drupal-module-misc:module_pingback = {
   2.943 +        version   = %{V_module_pingback}
   2.944 +        url       = http://ftp.drupal.org/files/projects/
   2.945 +        regex     = >pingback-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.946 +    }
   2.947 +    prog drupal-module-misc:module_pngfix = {
   2.948 +        version   = %{V_module_pngfix}
   2.949 +        url       = http://ftp.drupal.org/files/projects/
   2.950 +        regex     = >pngfix-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.951 +    }
   2.952 +    prog drupal-module-misc:module_popups = {
   2.953 +        version   = %{V_module_popups}
   2.954 +        url       = http://ftp.drupal.org/files/projects/
   2.955 +        regex     = >popups-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.956 +    }
   2.957 +    prog drupal-module-misc:module_porterstemmer = {
   2.958 +        version   = %{V_module_porterstemmer}
   2.959 +        url       = http://ftp.drupal.org/files/projects/
   2.960 +        regex     = >porterstemmer-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.961 +    }
   2.962 +    prog drupal-module-misc:module_print = {
   2.963 +        version   = %{V_module_print}
   2.964 +        url       = http://ftp.drupal.org/files/projects/
   2.965 +        regex     = >print-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.966 +    }
   2.967 +    prog drupal-module-misc:module_protected_node = {
   2.968 +        version   = %{V_module_protected_node}
   2.969 +        url       = http://ftp.drupal.org/files/projects/
   2.970 +        regex     = >protected_node-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.971 +    }
   2.972 +    prog drupal-module-misc:module_quotes = {
   2.973 +        version   = %{V_module_quotes}
   2.974 +        url       = http://ftp.drupal.org/files/projects/
   2.975 +        regex     = >quotes-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.976 +    }
   2.977 +    prog drupal-module-misc:module_recent_changes = {
   2.978 +        version   = %{V_module_recent_changes}
   2.979 +        url       = http://ftp.drupal.org/files/projects/
   2.980 +        regex     = >recent_changes-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.981 +    }
   2.982 +    prog drupal-module-misc:module_rest_server = {
   2.983 +        version   = %{V_module_rest_server}
   2.984 +        url       = http://ftp.drupal.org/files/projects/
   2.985 +        regex     = >rest_server-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.986 +    }
   2.987 +    prog drupal-module-misc:module_revisiontags = {
   2.988 +        version   = %{V_module_revisiontags}
   2.989 +        url       = http://ftp.drupal.org/files/projects/
   2.990 +        regex     = >revisiontags-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.991 +    }
   2.992 +    prog drupal-module-misc:module_scheduler = {
   2.993 +        version   = %{V_module_scheduler}
   2.994 +        url       = http://ftp.drupal.org/files/projects/
   2.995 +        regex     = >scheduler-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
   2.996 +    }
   2.997 +    prog drupal-module-misc:module_schema = {
   2.998 +        version   = %{V_module_schema}
   2.999 +        url       = http://ftp.drupal.org/files/projects/
  2.1000 +        regex     = >schema-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1001 +    }
  2.1002 +    prog drupal-module-misc:module_search404 = {
  2.1003 +        version   = %{V_module_search404}
  2.1004 +        url       = http://ftp.drupal.org/files/projects/
  2.1005 +        regex     = >search404-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1006 +    }
  2.1007 +    prog drupal-module-misc:module_sections = {
  2.1008 +        version   = %{V_module_sections}
  2.1009 +        url       = http://ftp.drupal.org/files/projects/
  2.1010 +        regex     = >sections-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1011 +    }
  2.1012 +    prog drupal-module-misc:module_services = {
  2.1013 +        version   = %{V_module_services}
  2.1014 +        url       = http://ftp.drupal.org/files/projects/
  2.1015 +        regex     = >services-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1016 +    }
  2.1017 +    prog drupal-module-misc:module_shadowbox = {
  2.1018 +        version   = %{V_module_shadowbox}
  2.1019 +        url       = http://ftp.drupal.org/files/projects/
  2.1020 +        regex     = >shadowbox-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1021 +    }
  2.1022 +    prog drupal-module-misc:module_shoutbox = {
  2.1023 +        version   = %{V_module_shoutbox}
  2.1024 +        url       = http://ftp.drupal.org/files/projects/
  2.1025 +        regex     = >shoutbox-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1026 +    }
  2.1027 +    prog drupal-module-misc:module_simplefeed = {
  2.1028 +        version   = %{V_module_simplefeed}
  2.1029 +        url       = http://ftp.drupal.org/files/projects/
  2.1030 +        regex     = >simplefeed-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1031 +    }
  2.1032 +    prog drupal-module-misc:module_slideshow_creator = {
  2.1033 +        version   = %{V_module_slideshow_creator}
  2.1034 +        url       = http://ftp.drupal.org/files/projects/
  2.1035 +        regex     = >slideshow_creator-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1036 +    }
  2.1037 +    prog drupal-module-misc:module_splash = {
  2.1038 +        version   = %{V_module_splash}
  2.1039 +        url       = http://ftp.drupal.org/files/projects/
  2.1040 +        regex     = >splash-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1041 +    }
  2.1042 +    prog drupal-module-misc:module_stringoverrides = {
  2.1043 +        version   = %{V_module_stringoverrides}
  2.1044 +        url       = http://ftp.drupal.org/files/projects/
  2.1045 +        regex     = >stringoverrides-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1046 +    }
  2.1047 +    prog drupal-module-misc:module_subscriptions = {
  2.1048 +        version   = %{V_module_subscriptions}
  2.1049 +        url       = http://ftp.drupal.org/files/projects/
  2.1050 +        regex     = >subscriptions-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1051 +    }
  2.1052 +    prog drupal-module-misc:module_supernav = {
  2.1053 +        version   = %{V_module_supernav}
  2.1054 +        url       = http://ftp.drupal.org/files/projects/
  2.1055 +        regex     = >supernav-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1056 +    }
  2.1057 +    prog drupal-module-misc:module_switchtheme = {
  2.1058 +        version   = %{V_module_switchtheme}
  2.1059 +        url       = http://ftp.drupal.org/files/projects/
  2.1060 +        regex     = >switchtheme-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1061 +    }
  2.1062 +    prog drupal-module-misc:module_table_altrow = {
  2.1063 +        version   = %{V_module_table_altrow}
  2.1064 +        url       = http://ftp.drupal.org/files/projects/
  2.1065 +        regex     = >table_altrow-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1066 +    }
  2.1067 +    prog drupal-module-misc:module_tableofcontents = {
  2.1068 +        version   = %{V_module_tableofcontents}
  2.1069 +        url       = http://ftp.drupal.org/files/projects/
  2.1070 +        regex     = >tableofcontents-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1071 +    }
  2.1072 +    prog drupal-module-misc:module_tabs = {
  2.1073 +        version   = %{V_module_tabs}
  2.1074 +        url       = http://ftp.drupal.org/files/projects/
  2.1075 +        regex     = >tabs-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1076 +    }
  2.1077 +    prog drupal-module-misc:module_tagadelic = {
  2.1078 +        version   = %{V_module_tagadelic}
  2.1079 +        url       = http://ftp.drupal.org/files/projects/
  2.1080 +        regex     = >tagadelic-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1081 +    }
  2.1082 +    prog drupal-module-misc:module_tagtool = {
  2.1083 +        version   = %{V_module_tagtool}
  2.1084 +        url       = http://ftp.drupal.org/files/projects/
  2.1085 +        regex     = >tagtool-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1086 +    }
  2.1087 +    prog drupal-module-misc:module_taxonomy_browser = {
  2.1088 +        version   = %{V_module_taxonomy_browser}
  2.1089 +        url       = http://ftp.drupal.org/files/projects/
  2.1090 +        regex     = >taxonomy_browser-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1091 +    }
  2.1092 +    prog drupal-module-misc:module_taxonomy_delegate = {
  2.1093 +        version   = %{V_module_taxonomy_delegate}
  2.1094 +        url       = http://ftp.drupal.org/files/projects/
  2.1095 +        regex     = >taxonomy_delegate-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1096 +    }
  2.1097 +    prog drupal-module-misc:module_taxonomy_filter = {
  2.1098 +        version   = %{V_module_taxonomy_filter}
  2.1099 +        url       = http://ftp.drupal.org/files/projects/
  2.1100 +        regex     = >taxonomy_filter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1101 +    }
  2.1102 +    prog drupal-module-misc:module_taxonomy_lite = {
  2.1103 +        version   = %{V_module_taxonomy_lite}
  2.1104 +        url       = http://ftp.drupal.org/files/projects/
  2.1105 +        regex     = >taxonomy_lite-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1106 +    }
  2.1107 +    prog drupal-module-misc:module_taxonomy_manager = {
  2.1108 +        version   = %{V_module_taxonomy_manager}
  2.1109 +        url       = http://ftp.drupal.org/files/projects/
  2.1110 +        regex     = >taxonomy_manager-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1111 +    }
  2.1112 +    prog drupal-module-misc:module_taxonomy_menu = {
  2.1113 +        version   = %{V_module_taxonomy_menu}
  2.1114 +        url       = http://ftp.drupal.org/files/projects/
  2.1115 +        regex     = >taxonomy_menu-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1116 +    }
  2.1117 +    prog drupal-module-misc:module_taxonomy_vtn = {
  2.1118 +        version   = %{V_module_taxonomy_vtn}
  2.1119 +        url       = http://ftp.drupal.org/files/projects/
  2.1120 +        regex     = >taxonomy_vtn-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1121 +    }
  2.1122 +    prog drupal-module-misc:module_taxotouch = {
  2.1123 +        version   = %{V_module_taxotouch}
  2.1124 +        url       = http://ftp.drupal.org/files/projects/
  2.1125 +        regex     = >taxotouch-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1126 +    }
  2.1127 +    prog drupal-module-misc:module_teleport = {
  2.1128 +        version   = %{V_module_teleport}
  2.1129 +        url       = http://ftp.drupal.org/files/projects/
  2.1130 +        regex     = >teleport-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1131 +    }
  2.1132 +    prog drupal-module-misc:module_textsize = {
  2.1133 +        version   = %{V_module_textsize}
  2.1134 +        url       = http://ftp.drupal.org/files/projects/
  2.1135 +        regex     = >textsize-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1136 +    }
  2.1137 +    prog drupal-module-misc:module_texy = {
  2.1138 +        version   = %{V_module_texy}
  2.1139 +        url       = http://ftp.drupal.org/files/projects/
  2.1140 +        regex     = >texy-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1141 +    }
  2.1142 +    prog drupal-module-misc:module_themesettingsapi = {
  2.1143 +        version   = %{V_module_themesettingsapi}
  2.1144 +        url       = http://ftp.drupal.org/files/projects/
  2.1145 +        regex     = >themesettingsapi-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1146 +    }
  2.1147 +    prog drupal-module-misc:module_tinytinymce = {
  2.1148 +        version   = %{V_module_tinytinymce}
  2.1149 +        url       = http://ftp.drupal.org/files/projects/
  2.1150 +        regex     = >tinytinymce-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1151 +    }
  2.1152 +    prog drupal-module-misc:module_token = {
  2.1153 +        version   = %{V_module_token}
  2.1154 +        url       = http://ftp.drupal.org/files/projects/
  2.1155 +        regex     = >token-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1156 +    }
  2.1157 +    prog drupal-module-misc:module_trackback = {
  2.1158 +        version   = %{V_module_trackback}
  2.1159 +        url       = http://ftp.drupal.org/files/projects/
  2.1160 +        regex     = >trackback-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1161 +    }
  2.1162 +    prog drupal-module-misc:module_trash = {
  2.1163 +        version   = %{V_module_trash}
  2.1164 +        url       = http://ftp.drupal.org/files/projects/
  2.1165 +        regex     = >trash-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1166 +    }
  2.1167 +    prog drupal-module-misc:module_twikifilter = {
  2.1168 +        version   = %{V_module_twikifilter}
  2.1169 +        url       = http://ftp.drupal.org/files/projects/
  2.1170 +        regex     = >twikifilter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1171 +    }
  2.1172 +    prog drupal-module-misc:module_upload_image = {
  2.1173 +        version   = %{V_module_upload_image}
  2.1174 +        url       = http://ftp.drupal.org/files/projects/
  2.1175 +        regex     = >upload_image-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1176 +    }
  2.1177 +    prog drupal-module-misc:module_util = {
  2.1178 +        version   = %{V_module_util}
  2.1179 +        url       = http://ftp.drupal.org/files/projects/
  2.1180 +        regex     = >util-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1181 +    }
  2.1182 +    prog drupal-module-misc:module_views = {
  2.1183 +        version   = %{V_module_views}
  2.1184 +        url       = http://ftp.drupal.org/files/projects/
  2.1185 +        regex     = >views-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1186 +    }
  2.1187 +    prog drupal-module-misc:module_virtual_site = {
  2.1188 +        version   = %{V_module_virtual_site}
  2.1189 +        url       = http://ftp.drupal.org/files/projects/
  2.1190 +        regex     = >virtual_site-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1191 +    }
  2.1192 +    prog drupal-module-misc:module_vocabindex = {
  2.1193 +        version   = %{V_module_vocabindex}
  2.1194 +        url       = http://ftp.drupal.org/files/projects/
  2.1195 +        regex     = >vocabindex-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1196 +    }
  2.1197 +    prog drupal-module-misc:module_votingapi = {
  2.1198 +        version   = %{V_module_votingapi}
  2.1199 +        url       = http://ftp.drupal.org/files/projects/
  2.1200 +        regex     = >votingapi-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1201 +    }
  2.1202 +    prog drupal-module-misc:module_weather = {
  2.1203 +        version   = %{V_module_weather}
  2.1204 +        url       = http://ftp.drupal.org/files/projects/
  2.1205 +        regex     = >weather-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1206 +    }
  2.1207 +    prog drupal-module-misc:module_wishlist = {
  2.1208 +        version   = %{V_module_wishlist}
  2.1209 +        url       = http://ftp.drupal.org/files/projects/
  2.1210 +        regex     = >wishlist-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1211 +    }
  2.1212 +    prog drupal-module-misc:module_wysiwyg = {
  2.1213 +        version   = %{V_module_wysiwyg}
  2.1214 +        url       = http://ftp.drupal.org/files/projects/
  2.1215 +        regex     = >wysiwyg-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1216 +    }
  2.1217 +    prog drupal-module-misc:module_wysiwyg_filter = {
  2.1218 +        version   = %{V_module_wysiwyg_filter}
  2.1219 +        url       = http://ftp.drupal.org/files/projects/
  2.1220 +        regex     = >wysiwyg_filter-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1221 +    }
  2.1222 +    prog drupal-module-misc:module_xmlcontent = {
  2.1223 +        version   = %{V_module_xmlcontent}
  2.1224 +        url       = http://ftp.drupal.org/files/projects/
  2.1225 +        regex     = >xmlcontent-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1226 +    }
  2.1227 +    prog drupal-module-misc:module_xmlsitemap = {
  2.1228 +        version   = %{V_module_xmlsitemap}
  2.1229 +        url       = http://ftp.drupal.org/files/projects/
  2.1230 +        regex     = >xmlsitemap-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1231 +    }
  2.1232 +    prog drupal-module-misc:module_xstandard = {
  2.1233 +        version   = %{V_module_xstandard}
  2.1234 +        url       = http://ftp.drupal.org/files/projects/
  2.1235 +        regex     = >xstandard-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1236 +    }
  2.1237 +    prog drupal-module-misc:module_yui = {
  2.1238 +        version   = %{V_module_yui}
  2.1239 +        url       = http://ftp.drupal.org/files/projects/
  2.1240 +        regex     = >yui-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1241 +    }
  2.1242 +    prog drupal-module-misc:module_yui_calendar = {
  2.1243 +        version   = %{V_module_yui_calendar}
  2.1244 +        url       = http://ftp.drupal.org/files/projects/
  2.1245 +        regex     = >yui_calendar-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1246 +    }
  2.1247 +    prog drupal-module-misc:module_yui_editor = {
  2.1248 +        version   = %{V_module_yui_editor}
  2.1249 +        url       = http://ftp.drupal.org/files/projects/
  2.1250 +        regex     = >yui_editor-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1251 +    }
  2.1252 +    prog drupal-module-misc:module_yuimenu = {
  2.1253 +        version   = %{V_module_yuimenu}
  2.1254 +        url       = http://ftp.drupal.org/files/projects/
  2.1255 +        regex     = >yuimenu-(6\.x-\d+(?:\.\d+)+)\.tar\.gz
  2.1256 +    }
  2.1257 +    prog drupal-module-misc:aux_fckeditor = {
  2.1258 +        version   = %{V_aux_fckeditor}
  2.1259 +        url       = http://sourceforge.net/projects/fckeditor/files/
  2.1260 +        regex     = FCKeditor_(__VER__)\.tar\.gz
  2.1261 +    }
  2.1262 +    prog drupal-module-misc:aux_geshi = {
  2.1263 +        version   = %{V_aux_geshi}
  2.1264 +        url       = http://sourceforge.net/projects/geshi/files/
  2.1265 +        regex     = GeSHi-(\d+\.\d+(\.\d+)*)\.tar\.gz
  2.1266 +    }
  2.1267 +    prog drupal-module-misc:aux_simplepie = {
  2.1268 +        version   = %{V_aux_simplepie}
  2.1269 +        url       = http://simplepie.org/downloads/?download
  2.1270 +        regex     = simplepie_(\d+\.\d+(\.\d+)*)\.zip
  2.1271 +    }
  2.1272 +    prog drupal-module-misc:aux_dashplayer = {
  2.1273 +        version   = %{V_aux_dashplayer}
  2.1274 +        url       = http://www.tmtdigital.com/project/dash_player
  2.1275 +        regex     = dashplayer_v(\d+)\.zip
  2.1276 +    }
  2.1277 +
  2.1278 +%prep
  2.1279 +    #   unpack core distribution
  2.1280 +    %setup -q -T -c
  2.1281 +
  2.1282 +    #   create additional sub-trees
  2.1283 +    %{l_shtool} mkdir -f -p -m 755 \
  2.1284 +        sites/all/modules
  2.1285 +
  2.1286 +    #   install additional modules
  2.1287 +    ( cd sites/all/modules || exit $?
  2.1288 +      %{l_tar} xfz %{SOURCE0}
  2.1289 +      %{l_tar} xfz %{SOURCE1}
  2.1290 +      %{l_tar} xfz %{SOURCE2}
  2.1291 +      %{l_tar} xfz %{SOURCE3}
  2.1292 +      %{l_tar} xfz %{SOURCE4}
  2.1293 +      %{l_tar} xfz %{SOURCE5}
  2.1294 +      %{l_tar} xfz %{SOURCE6}
  2.1295 +      %{l_tar} xfz %{SOURCE7}
  2.1296 +      %{l_tar} xfz %{SOURCE8}
  2.1297 +      %{l_tar} xfz %{SOURCE9}
  2.1298 +      %{l_tar} xfz %{SOURCE10}
  2.1299 +      %{l_tar} xfz %{SOURCE11}
  2.1300 +      %{l_tar} xfz %{SOURCE12}
  2.1301 +      %{l_tar} xfz %{SOURCE13}
  2.1302 +      %{l_tar} xfz %{SOURCE14}
  2.1303 +      %{l_tar} xfz %{SOURCE15}
  2.1304 +      %{l_tar} xfz %{SOURCE16}
  2.1305 +      %{l_tar} xfz %{SOURCE17}
  2.1306 +      %{l_tar} xfz %{SOURCE18}
  2.1307 +      %{l_tar} xfz %{SOURCE19}
  2.1308 +      %{l_tar} xfz %{SOURCE20}
  2.1309 +      %{l_tar} xfz %{SOURCE21}
  2.1310 +      %{l_tar} xfz %{SOURCE22}
  2.1311 +      %{l_tar} xfz %{SOURCE23}
  2.1312 +      %{l_tar} xfz %{SOURCE24}
  2.1313 +      %{l_tar} xfz %{SOURCE25}
  2.1314 +      %{l_tar} xfz %{SOURCE26}
  2.1315 +      %{l_tar} xfz %{SOURCE27}
  2.1316 +      %{l_tar} xfz %{SOURCE28}
  2.1317 +      %{l_tar} xfz %{SOURCE29}
  2.1318 +      %{l_tar} xfz %{SOURCE30}
  2.1319 +      %{l_tar} xfz %{SOURCE31}
  2.1320 +      %{l_tar} xfz %{SOURCE32}
  2.1321 +      %{l_tar} xfz %{SOURCE33}
  2.1322 +      %{l_tar} xfz %{SOURCE34}
  2.1323 +      %{l_tar} xfz %{SOURCE35}
  2.1324 +      %{l_tar} xfz %{SOURCE36}
  2.1325 +      %{l_tar} xfz %{SOURCE37}
  2.1326 +      %{l_tar} xfz %{SOURCE38}
  2.1327 +      %{l_tar} xfz %{SOURCE39}
  2.1328 +      %{l_tar} xfz %{SOURCE40}
  2.1329 +      %{l_tar} xfz %{SOURCE41}
  2.1330 +      %{l_tar} xfz %{SOURCE42}
  2.1331 +      %{l_tar} xfz %{SOURCE43}
  2.1332 +      %{l_tar} xfz %{SOURCE44}
  2.1333 +      %{l_tar} xfz %{SOURCE45}
  2.1334 +      %{l_tar} xfz %{SOURCE46}
  2.1335 +      %{l_tar} xfz %{SOURCE47}
  2.1336 +      %{l_tar} xfz %{SOURCE48}
  2.1337 +      %{l_tar} xfz %{SOURCE49}
  2.1338 +      %{l_tar} xfz %{SOURCE50}
  2.1339 +      %{l_tar} xfz %{SOURCE51}
  2.1340 +      %{l_tar} xfz %{SOURCE52}
  2.1341 +      %{l_tar} xfz %{SOURCE53}
  2.1342 +      %{l_tar} xfz %{SOURCE54}
  2.1343 +      %{l_tar} xfz %{SOURCE55}
  2.1344 +      %{l_tar} xfz %{SOURCE56}
  2.1345 +      %{l_tar} xfz %{SOURCE57}
  2.1346 +      %{l_tar} xfz %{SOURCE58}
  2.1347 +      %{l_tar} xfz %{SOURCE59}
  2.1348 +      %{l_tar} xfz %{SOURCE60}
  2.1349 +      %{l_tar} xfz %{SOURCE61}
  2.1350 +      %{l_tar} xfz %{SOURCE62}
  2.1351 +      %{l_tar} xfz %{SOURCE63}
  2.1352 +      %{l_tar} xfz %{SOURCE64}
  2.1353 +      %{l_tar} xfz %{SOURCE65}
  2.1354 +      %{l_tar} xfz %{SOURCE66}
  2.1355 +      %{l_tar} xfz %{SOURCE67}
  2.1356 +      %{l_tar} xfz %{SOURCE68}
  2.1357 +      %{l_tar} xfz %{SOURCE69}
  2.1358 +      %{l_tar} xfz %{SOURCE70}
  2.1359 +      %{l_tar} xfz %{SOURCE71}
  2.1360 +      %{l_tar} xfz %{SOURCE72}
  2.1361 +      %{l_tar} xfz %{SOURCE73}
  2.1362 +      %{l_tar} xfz %{SOURCE74}
  2.1363 +      %{l_tar} xfz %{SOURCE75}
  2.1364 +      %{l_tar} xfz %{SOURCE76}
  2.1365 +      %{l_tar} xfz %{SOURCE77}
  2.1366 +      %{l_tar} xfz %{SOURCE78}
  2.1367 +      %{l_tar} xfz %{SOURCE79}
  2.1368 +      %{l_tar} xfz %{SOURCE80}
  2.1369 +      %{l_tar} xfz %{SOURCE81}
  2.1370 +      %{l_tar} xfz %{SOURCE82}
  2.1371 +      %{l_tar} xfz %{SOURCE83}
  2.1372 +      %{l_tar} xfz %{SOURCE84}
  2.1373 +      %{l_tar} xfz %{SOURCE85}
  2.1374 +      %{l_tar} xfz %{SOURCE86}
  2.1375 +      %{l_tar} xfz %{SOURCE87}
  2.1376 +      %{l_tar} xfz %{SOURCE88}
  2.1377 +      %{l_tar} xfz %{SOURCE89}
  2.1378 +      %{l_tar} xfz %{SOURCE90}
  2.1379 +      %{l_tar} xfz %{SOURCE91}
  2.1380 +      %{l_tar} xfz %{SOURCE92}
  2.1381 +      %{l_tar} xfz %{SOURCE93}
  2.1382 +      %{l_tar} xfz %{SOURCE94}
  2.1383 +      %{l_tar} xfz %{SOURCE95}
  2.1384 +      %{l_tar} xfz %{SOURCE96}
  2.1385 +      %{l_tar} xfz %{SOURCE97}
  2.1386 +      %{l_tar} xfz %{SOURCE98}
  2.1387 +      %{l_tar} xfz %{SOURCE99}
  2.1388 +      %{l_tar} xfz %{SOURCE100}
  2.1389 +      %{l_tar} xfz %{SOURCE101}
  2.1390 +      %{l_tar} xfz %{SOURCE102}
  2.1391 +      %{l_tar} xfz %{SOURCE103}
  2.1392 +      %{l_tar} xfz %{SOURCE103}
  2.1393 +      %{l_tar} xfz %{SOURCE104}
  2.1394 +      %{l_tar} xfz %{SOURCE105}
  2.1395 +      %{l_tar} xfz %{SOURCE106}
  2.1396 +      %{l_tar} xfz %{SOURCE107}
  2.1397 +      %{l_tar} xfz %{SOURCE108}
  2.1398 +      %{l_tar} xfz %{SOURCE109}
  2.1399 +      %{l_tar} xfz %{SOURCE110}
  2.1400 +      %{l_tar} xfz %{SOURCE111}
  2.1401 +      %{l_tar} xfz %{SOURCE112}
  2.1402 +      %{l_tar} xfz %{SOURCE113}
  2.1403 +      %{l_tar} xfz %{SOURCE114}
  2.1404 +      %{l_tar} xfz %{SOURCE115}
  2.1405 +      %{l_tar} xfz %{SOURCE116}
  2.1406 +      %{l_tar} xfz %{SOURCE117}
  2.1407 +      %{l_tar} xfz %{SOURCE118}
  2.1408 +      %{l_tar} xfz %{SOURCE119}
  2.1409 +      %{l_tar} xfz %{SOURCE120}
  2.1410 +      %{l_tar} xfz %{SOURCE121}
  2.1411 +      %{l_tar} xfz %{SOURCE122}
  2.1412 +      %{l_tar} xfz %{SOURCE123}
  2.1413 +      %{l_tar} xfz %{SOURCE124}
  2.1414 +      %{l_tar} xfz %{SOURCE125}
  2.1415 +      %{l_tar} xfz %{SOURCE126}
  2.1416 +      %{l_tar} xfz %{SOURCE127}
  2.1417 +      %{l_tar} xfz %{SOURCE128}
  2.1418 +      %{l_tar} xfz %{SOURCE129}
  2.1419 +      %{l_tar} xfz %{SOURCE130}
  2.1420 +      %{l_tar} xfz %{SOURCE131}
  2.1421 +      %{l_tar} xfz %{SOURCE132}
  2.1422 +      %{l_tar} xfz %{SOURCE133}
  2.1423 +      %{l_tar} xfz %{SOURCE134}
  2.1424 +      %{l_tar} xfz %{SOURCE135}
  2.1425 +      %{l_tar} xfz %{SOURCE136}
  2.1426 +      %{l_tar} xfz %{SOURCE137}
  2.1427 +      %{l_tar} xfz %{SOURCE138}
  2.1428 +      %{l_tar} xfz %{SOURCE139}
  2.1429 +      %{l_tar} xfz %{SOURCE140}
  2.1430 +      %{l_tar} xfz %{SOURCE141}
  2.1431 +      %{l_tar} xfz %{SOURCE142}
  2.1432 +      %{l_tar} xfz %{SOURCE143}
  2.1433 +      %{l_tar} xfz %{SOURCE144}
  2.1434 +      %{l_tar} xfz %{SOURCE145}
  2.1435 +      %{l_tar} xfz %{SOURCE146}
  2.1436 +      %{l_tar} xfz %{SOURCE147}
  2.1437 +      %{l_tar} xfz %{SOURCE148}
  2.1438 +      %{l_tar} xfz %{SOURCE149}
  2.1439 +      %{l_tar} xfz %{SOURCE150}
  2.1440 +      %{l_tar} xfz %{SOURCE151}
  2.1441 +      %{l_tar} xfz %{SOURCE152}
  2.1442 +      %{l_tar} xfz %{SOURCE153}
  2.1443 +      %{l_tar} xfz %{SOURCE154}
  2.1444 +      %{l_tar} xfz %{SOURCE155}
  2.1445 +      %{l_tar} xfz %{SOURCE156}
  2.1446 +      %{l_tar} xfz %{SOURCE157}
  2.1447 +      %{l_tar} xfz %{SOURCE158}
  2.1448 +      %{l_tar} xfz %{SOURCE159}
  2.1449 +      %{l_tar} xfz %{SOURCE160}
  2.1450 +      %{l_tar} xfz %{SOURCE161}
  2.1451 +      %{l_tar} xfz %{SOURCE162}
  2.1452 +      %{l_tar} xfz %{SOURCE163}
  2.1453 +      %{l_tar} xfz %{SOURCE164}
  2.1454 +      %{l_tar} xfz %{SOURCE165}
  2.1455 +      %{l_tar} xfz %{SOURCE166}
  2.1456 +      %{l_tar} xfz %{SOURCE167}
  2.1457 +      %{l_tar} xfz %{SOURCE168}
  2.1458 +      %{l_tar} xfz %{SOURCE169}
  2.1459 +    ) || exit $?
  2.1460 +
  2.1461 +    #   install additional third-party files
  2.1462 +    ( cd sites/all/modules/fckeditor || exit $?
  2.1463 +      %{l_tar} xfz %{SOURCE300}
  2.1464 +      chmod -R u+rw .
  2.1465 +      chmod -R a+r .
  2.1466 +    ) || exit $?
  2.1467 +    ( cd sites/all/modules/geshifilter || exit $?
  2.1468 +      %{l_tar} xfz %{SOURCE301}
  2.1469 +      rm -rf geshi/docs
  2.1470 +      rm -rf geshi/contrib
  2.1471 +    ) || exit $?
  2.1472 +    ( cd sites/all/modules/simplefeed || exit $?
  2.1473 +      unzip -q -x %{SOURCE302}
  2.1474 +      mv simplepie_%{V_aux_simplepie}/simplepie.inc .
  2.1475 +      rm -rf simplepie_%{V_aux_simplepie}
  2.1476 +    ) || exit $?
  2.1477 +    ( cd sites/all/modules/feedapi || exit $?
  2.1478 +      unzip -q -x %{SOURCE302}
  2.1479 +      mv simplepie_%{V_aux_simplepie}/simplepie.inc parser_simplepie/
  2.1480 +      rm -rf simplepie_%{V_aux_simplepie}
  2.1481 +    ) || exit $?
  2.1482 +    ( cd sites/all/modules/tinytinymce || exit $?
  2.1483 +      unzip -q -x %{SOURCE303}
  2.1484 +      mv tinymce-jscripts-tiny_mce-plugins-pagebreak tinymce/jscripts/tiny_mce/plugins/pagebreak
  2.1485 +      cp -r ../img_assist/drupalimage tinymce/jscripts/tiny_mce/plugins/
  2.1486 +    ) || exit $?
  2.1487 +    ( cd sites/all/modules/print || exit $?
  2.1488 +      %{l_tar} xfz %{SOURCE304}
  2.1489 +      mv dompdf-%{V_aux_dompdf} dompdf
  2.1490 +      rm -f dompdf/dompdf.php
  2.1491 +      echo "Disallow: /print/" >>../../../../robots.txt
  2.1492 +    ) || exit $?
  2.1493 +    ( cd sites/all/modules/shadowbox || exit $?
  2.1494 +      unzip -q -x %{SOURCE305}
  2.1495 +      mv shadowbox-build-%{V_aux_shadowbox} shadowbox
  2.1496 +      %{l_shtool} subst \
  2.1497 +          -e 's;sites/all/plugins/shadowbox;sites/all/modules/shadowbox/shadowbox;g' \
  2.1498 +          shadowbox.module
  2.1499 +    ) || exit $?
  2.1500 +    ( cd sites/all/modules/dashplayer || exit $?
  2.1501 +      unzip -q -x %{SOURCE306}
  2.1502 +      mv dashplayer_v%{V_aux_dashplayer} dashplayer
  2.1503 +    ) || exit $?
  2.1504 +
  2.1505 +    #   apply local patches
  2.1506 +    %patch -p0
  2.1507 +
  2.1508 +%build
  2.1509 +
  2.1510 +%install
  2.1511 +    #   create installation hierarchy
  2.1512 +    %{l_shtool} mkdir -f -p -m 755 \
  2.1513 +        $RPM_BUILD_ROOT%{l_prefix}/share/drupal
  2.1514 +
  2.1515 +    #   avoid copying unnecessary text files
  2.1516 +    find . -name "*.orig" -print | xargs rm -f
  2.1517 +    rm -f "sites/all/modules/tinytinymce/README IMPORTANT.txt"
  2.1518 +    rm -f sites/all/modules/schema/translations/Kopie*
  2.1519 +
  2.1520 +    #   install all files (and strip down installation afterwards)
  2.1521 +    cp -rp * \
  2.1522 +        $RPM_BUILD_ROOT%{l_prefix}/share/drupal/
  2.1523 +
  2.1524 +    #   determine installation files
  2.1525 +    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  2.1526 +        %{l_files_std} \
  2.1527 +        '%attr(-,%{l_rusr},%{l_rgrp}) %{l_prefix}/share/drupal'
  2.1528 +
  2.1529 +%files -f files
  2.1530 +
  2.1531 +%clean
  2.1532 +

mercurial