summaryrefslogtreecommitdiff
path: root/www/drupal7
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2011-12-16 12:57:06 +0000
committertaca <taca@pkgsrc.org>2011-12-16 12:57:06 +0000
commita7f0e6e4126448c09d11af294708c9c9ebef96d5 (patch)
tree67e45ede261f80ea533afdda4e0393ff3274a640 /www/drupal7
parentae56c9948554fae0c83dd67b5a8c4081f3a7a5d3 (diff)
downloadpkgsrc-a7f0e6e4126448c09d11af294708c9c9ebef96d5.tar.gz
Importing www/drupal7 package version 7.10.
This is current stable release of Drupal. Drupal is software that allows an individual or a community of users to easily publish, manage and organize a great variety of content on a website. Tens of thousands of people and organizations have used Drupal to set up scores of different kinds of web sites, including * community web portals and discussion sites * corporate web sites/intranet portals * personal web sites * aficionado sites * e-commerce applications * resource directories Drupal includes features to enable: * content management systems * blogs * collaborative authoring environments * forums * newsletters * picture galleries * file uploads and download
Diffstat (limited to 'www/drupal7')
-rw-r--r--www/drupal7/DESCR21
-rw-r--r--www/drupal7/MESSAGE16
-rw-r--r--www/drupal7/Makefile90
-rw-r--r--www/drupal7/PLIST1031
-rw-r--r--www/drupal7/distinfo5
-rw-r--r--www/drupal7/files/drupal.conf104
-rw-r--r--www/drupal7/options.mk56
7 files changed, 1323 insertions, 0 deletions
diff --git a/www/drupal7/DESCR b/www/drupal7/DESCR
new file mode 100644
index 00000000000..ee5503c9d99
--- /dev/null
+++ b/www/drupal7/DESCR
@@ -0,0 +1,21 @@
+Drupal is software that allows an individual or a community of users to easily
+publish, manage and organize a great variety of content on a website. Tens of
+thousands of people and organizations have used Drupal to set up scores of
+different kinds of web sites, including
+
+* community web portals and discussion sites
+* corporate web sites/intranet portals
+* personal web sites
+* aficionado sites
+* e-commerce applications
+* resource directories
+
+Drupal includes features to enable:
+
+* content management systems
+* blogs
+* collaborative authoring environments
+* forums
+* newsletters
+* picture galleries
+* file uploads and download
diff --git a/www/drupal7/MESSAGE b/www/drupal7/MESSAGE
new file mode 100644
index 00000000000..9f9dac8c44d
--- /dev/null
+++ b/www/drupal7/MESSAGE
@@ -0,0 +1,16 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+
+To complete the setup you will need to read the INSTALL.txt in order
+to setup MySQL/PostgreSQL properly.
+
+You will need to make Drupal accessible through your HTTP server. If you
+are running Apache then you may add the following lines to httpd.conf:
+
+ Include ${PKG_SYSCONFDIR}/drupal.conf
+
+to make Drupal accessible through:
+
+ http://localhost/drupal/
+
+===========================================================================
diff --git a/www/drupal7/Makefile b/www/drupal7/Makefile
new file mode 100644
index 00000000000..e6c2775c356
--- /dev/null
+++ b/www/drupal7/Makefile
@@ -0,0 +1,90 @@
+# $NetBSD: Makefile,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+
+DISTNAME= drupal-7.10
+CATEGORIES= www
+MASTER_SITES= http://drupal.org/files/projects/
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://drupal.org/
+COMMENT= Open source content management system
+LICENSE= gnu-gpl-v2
+
+CONFLICTS+= drupal-[1-9].*{,nb*}
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+.include "../../lang/php/phpversion.mk"
+
+.if ${PKG_PHP_VERSION} == "5"
+DEPENDS+= php>=5.2.0<5.3:../../lang/php5
+.endif
+DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
+DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.2.0:../../textproc/php-json
+
+NO_BUILD= YES
+DRUPAL= share/drupal
+PAX_DIRS= includes misc modules profiles scripts themes
+DOCS= CHANGELOG.txt COPYRIGHT.txt INSTALL.mysql.txt \
+ INSTALL.pgsql.txt INSTALL.sqlite.txt INSTALL.txt LICENSE.txt \
+ MAINTAINERS.txt README.txt UPGRADE.txt
+
+PKG_GROUPS_VARS+= WWW_GROUP
+PKG_USERS_VARS+= WWW_USER
+
+BUILD_DEFS+= WWW_USER WWW_GROUP
+USE_TOOLS+= perl:run pax
+REPLACE_PERL= scripts/code-style.pl
+
+OWN_DIRS_PERMS+= ${DRUPAL}/sites/default \
+ ${WWW_USER} ${WWW_GROUP} 0750
+
+CONF_FILES= share/examples/drupal/drupal.conf \
+ ${PKG_SYSCONFDIR}/drupal.conf \
+ share/examples/drupal/default.settings.php \
+ ${DRUPAL}/sites/default/default.settings.php
+
+CONF_FILES_PERMS+= share/examples/drupal/default.settings.php \
+ ${DRUPAL}/sites/default/settings.php \
+ ${WWW_USER} ${WWW_GROUP} 0640
+
+REPLACE_INTERPRETER+= php
+REPLACE.php.old= .*php[^ ]*
+REPLACE.php.new= ${PREFIX}/bin/php
+REPLACE_FILES.php= scripts/drupal.sh scripts/password-hash.sh
+
+SUBST_CLASSES+= conf
+SUBST_STAGE.conf= pre-install
+SUBST_FILES.conf= drupal.conf
+SUBST_SED.conf= -e "s|@DRUPAL@|${DRUPAL}|g"
+SUBST_SED.conf= -e "s|@PREFIX@|${PREFIX}|g"
+SUBST_MESSAGE.conf= Fixing configuration files.
+
+INSTALLATION_DIRS+= ${DRUPAL}/files ${DRUPAL}/sites/all \
+ share/doc/drupal share/examples/drupal
+
+.include "options.mk"
+
+post-extract:
+ ${CP} ${FILESDIR}/drupal.conf ${WRKSRC}
+
+do-install:
+ ${INSTALL_DATA} ${WRKSRC}/robots.txt ${DESTDIR}${PREFIX}/${DRUPAL}
+ ${INSTALL_DATA} ${WRKSRC}/sites/all/README.txt \
+ ${DESTDIR}${PREFIX}/${DRUPAL}/sites/all
+ ${INSTALL_DATA} ${WRKSRC}/drupal.conf \
+ ${DESTDIR}${PREFIX}/share/examples/drupal
+ ${INSTALL_DATA} ${WRKSRC}/sites/default/default.settings.php \
+ ${DESTDIR}${PREFIX}/share/examples/drupal
+ ${INSTALL_DATA} ${WRKSRC}/*.php ${DESTDIR}${PREFIX}/${DRUPAL}
+.for i in ${PAX_DIRS}
+ cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${PREFIX}/${DRUPAL}/${i}
+.endfor
+.for i in ${DOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${PREFIX}/share/doc/drupal
+.endfor
+
+post-install:
+ ${FIND} ${DESTDIR}${PREFIX}/${DRUPAL} \
+ \( -name '*.jpg' -o -name '*.png' \) | ${XARGS} ${CHMOD} 0644
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/drupal7/PLIST b/www/drupal7/PLIST
new file mode 100644
index 00000000000..f5e9e31975f
--- /dev/null
+++ b/www/drupal7/PLIST
@@ -0,0 +1,1031 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+share/doc/drupal/CHANGELOG.txt
+share/doc/drupal/COPYRIGHT.txt
+share/doc/drupal/INSTALL.mysql.txt
+share/doc/drupal/INSTALL.pgsql.txt
+share/doc/drupal/INSTALL.sqlite.txt
+share/doc/drupal/INSTALL.txt
+share/doc/drupal/LICENSE.txt
+share/doc/drupal/MAINTAINERS.txt
+share/doc/drupal/README.txt
+share/doc/drupal/UPGRADE.txt
+share/drupal/authorize.php
+share/drupal/cron.php
+share/drupal/includes/actions.inc
+share/drupal/includes/ajax.inc
+share/drupal/includes/archiver.inc
+share/drupal/includes/authorize.inc
+share/drupal/includes/batch.inc
+share/drupal/includes/batch.queue.inc
+share/drupal/includes/bootstrap.inc
+share/drupal/includes/cache-install.inc
+share/drupal/includes/cache.inc
+share/drupal/includes/common.inc
+share/drupal/includes/database/database.inc
+share/drupal/includes/database/log.inc
+share/drupal/includes/database/mysql/database.inc
+share/drupal/includes/database/mysql/install.inc
+share/drupal/includes/database/mysql/query.inc
+share/drupal/includes/database/mysql/schema.inc
+share/drupal/includes/database/pgsql/database.inc
+share/drupal/includes/database/pgsql/install.inc
+share/drupal/includes/database/pgsql/query.inc
+share/drupal/includes/database/pgsql/schema.inc
+share/drupal/includes/database/pgsql/select.inc
+share/drupal/includes/database/prefetch.inc
+share/drupal/includes/database/query.inc
+share/drupal/includes/database/schema.inc
+share/drupal/includes/database/select.inc
+share/drupal/includes/database/sqlite/database.inc
+share/drupal/includes/database/sqlite/install.inc
+share/drupal/includes/database/sqlite/query.inc
+share/drupal/includes/database/sqlite/schema.inc
+share/drupal/includes/database/sqlite/select.inc
+share/drupal/includes/date.inc
+share/drupal/includes/entity.inc
+share/drupal/includes/errors.inc
+share/drupal/includes/file.inc
+share/drupal/includes/file.mimetypes.inc
+share/drupal/includes/filetransfer/filetransfer.inc
+share/drupal/includes/filetransfer/ftp.inc
+share/drupal/includes/filetransfer/local.inc
+share/drupal/includes/filetransfer/ssh.inc
+share/drupal/includes/form.inc
+share/drupal/includes/graph.inc
+share/drupal/includes/image.inc
+share/drupal/includes/install.core.inc
+share/drupal/includes/install.inc
+share/drupal/includes/iso.inc
+share/drupal/includes/language.inc
+share/drupal/includes/locale.inc
+share/drupal/includes/lock.inc
+share/drupal/includes/mail.inc
+share/drupal/includes/menu.inc
+share/drupal/includes/module.inc
+share/drupal/includes/pager.inc
+share/drupal/includes/password.inc
+share/drupal/includes/path.inc
+share/drupal/includes/registry.inc
+share/drupal/includes/session.inc
+share/drupal/includes/stream_wrappers.inc
+share/drupal/includes/tablesort.inc
+share/drupal/includes/theme.inc
+share/drupal/includes/theme.maintenance.inc
+share/drupal/includes/token.inc
+share/drupal/includes/unicode.entities.inc
+share/drupal/includes/unicode.inc
+share/drupal/includes/update.inc
+share/drupal/includes/updater.inc
+share/drupal/includes/utility.inc
+share/drupal/includes/xmlrpc.inc
+share/drupal/includes/xmlrpcs.inc
+share/drupal/index.php
+share/drupal/install.php
+share/drupal/misc/ajax.js
+share/drupal/misc/arrow-asc.png
+share/drupal/misc/arrow-desc.png
+share/drupal/misc/authorize.js
+share/drupal/misc/autocomplete.js
+share/drupal/misc/batch.js
+share/drupal/misc/collapse.js
+share/drupal/misc/configure.png
+share/drupal/misc/draggable.png
+share/drupal/misc/drupal.js
+share/drupal/misc/druplicon.png
+share/drupal/misc/farbtastic/farbtastic.css
+share/drupal/misc/farbtastic/farbtastic.js
+share/drupal/misc/farbtastic/marker.png
+share/drupal/misc/farbtastic/mask.png
+share/drupal/misc/farbtastic/wheel.png
+share/drupal/misc/favicon.ico
+share/drupal/misc/feed.png
+share/drupal/misc/form.js
+share/drupal/misc/forum-icons.png
+share/drupal/misc/grippie.png
+share/drupal/misc/help.png
+share/drupal/misc/jquery.ba-bbq.js
+share/drupal/misc/jquery.cookie.js
+share/drupal/misc/jquery.form.js
+share/drupal/misc/jquery.js
+share/drupal/misc/jquery.once.js
+share/drupal/misc/machine-name.js
+share/drupal/misc/menu-collapsed-rtl.png
+share/drupal/misc/menu-collapsed.png
+share/drupal/misc/menu-expanded.png
+share/drupal/misc/menu-leaf.png
+share/drupal/misc/message-16-error.png
+share/drupal/misc/message-16-help.png
+share/drupal/misc/message-16-info.png
+share/drupal/misc/message-16-ok.png
+share/drupal/misc/message-16-warning.png
+share/drupal/misc/message-24-error.png
+share/drupal/misc/message-24-help.png
+share/drupal/misc/message-24-info.png
+share/drupal/misc/message-24-ok.png
+share/drupal/misc/message-24-warning.png
+share/drupal/misc/permissions.png
+share/drupal/misc/powered-black-135x42.png
+share/drupal/misc/powered-black-80x15.png
+share/drupal/misc/powered-black-88x31.png
+share/drupal/misc/powered-blue-135x42.png
+share/drupal/misc/powered-blue-80x15.png
+share/drupal/misc/powered-blue-88x31.png
+share/drupal/misc/powered-gray-135x42.png
+share/drupal/misc/powered-gray-80x15.png
+share/drupal/misc/powered-gray-88x31.png
+share/drupal/misc/print-rtl.css
+share/drupal/misc/print.css
+share/drupal/misc/progress.gif
+share/drupal/misc/progress.js
+share/drupal/misc/states.js
+share/drupal/misc/tabledrag.js
+share/drupal/misc/tableheader.js
+share/drupal/misc/tableselect.js
+share/drupal/misc/textarea.js
+share/drupal/misc/throbber.gif
+share/drupal/misc/timezone.js
+share/drupal/misc/tree-bottom.png
+share/drupal/misc/tree.png
+share/drupal/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png
+share/drupal/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png
+share/drupal/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png
+share/drupal/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png
+share/drupal/misc/ui/images/ui-bg_glass_75_dadada_1x400.png
+share/drupal/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png
+share/drupal/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png
+share/drupal/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+share/drupal/misc/ui/images/ui-icons_222222_256x240.png
+share/drupal/misc/ui/images/ui-icons_2e83ff_256x240.png
+share/drupal/misc/ui/images/ui-icons_454545_256x240.png
+share/drupal/misc/ui/images/ui-icons_888888_256x240.png
+share/drupal/misc/ui/images/ui-icons_cd0a0a_256x240.png
+share/drupal/misc/ui/jquery.effects.blind.min.js
+share/drupal/misc/ui/jquery.effects.bounce.min.js
+share/drupal/misc/ui/jquery.effects.clip.min.js
+share/drupal/misc/ui/jquery.effects.core.min.js
+share/drupal/misc/ui/jquery.effects.drop.min.js
+share/drupal/misc/ui/jquery.effects.explode.min.js
+share/drupal/misc/ui/jquery.effects.fade.min.js
+share/drupal/misc/ui/jquery.effects.fold.min.js
+share/drupal/misc/ui/jquery.effects.highlight.min.js
+share/drupal/misc/ui/jquery.effects.pulsate.min.js
+share/drupal/misc/ui/jquery.effects.scale.min.js
+share/drupal/misc/ui/jquery.effects.shake.min.js
+share/drupal/misc/ui/jquery.effects.slide.min.js
+share/drupal/misc/ui/jquery.effects.transfer.min.js
+share/drupal/misc/ui/jquery.ui.accordion.css
+share/drupal/misc/ui/jquery.ui.accordion.min.js
+share/drupal/misc/ui/jquery.ui.autocomplete.css
+share/drupal/misc/ui/jquery.ui.autocomplete.min.js
+share/drupal/misc/ui/jquery.ui.button.css
+share/drupal/misc/ui/jquery.ui.button.min.js
+share/drupal/misc/ui/jquery.ui.core.css
+share/drupal/misc/ui/jquery.ui.core.min.js
+share/drupal/misc/ui/jquery.ui.datepicker.css
+share/drupal/misc/ui/jquery.ui.datepicker.min.js
+share/drupal/misc/ui/jquery.ui.dialog.css
+share/drupal/misc/ui/jquery.ui.dialog.min.js
+share/drupal/misc/ui/jquery.ui.draggable.min.js
+share/drupal/misc/ui/jquery.ui.droppable.min.js
+share/drupal/misc/ui/jquery.ui.mouse.min.js
+share/drupal/misc/ui/jquery.ui.position.min.js
+share/drupal/misc/ui/jquery.ui.progressbar.css
+share/drupal/misc/ui/jquery.ui.progressbar.min.js
+share/drupal/misc/ui/jquery.ui.resizable.css
+share/drupal/misc/ui/jquery.ui.resizable.min.js
+share/drupal/misc/ui/jquery.ui.selectable.css
+share/drupal/misc/ui/jquery.ui.selectable.min.js
+share/drupal/misc/ui/jquery.ui.slider.css
+share/drupal/misc/ui/jquery.ui.slider.min.js
+share/drupal/misc/ui/jquery.ui.sortable.min.js
+share/drupal/misc/ui/jquery.ui.tabs.css
+share/drupal/misc/ui/jquery.ui.tabs.min.js
+share/drupal/misc/ui/jquery.ui.theme.css
+share/drupal/misc/ui/jquery.ui.widget.min.js
+share/drupal/misc/vertical-tabs-rtl.css
+share/drupal/misc/vertical-tabs.css
+share/drupal/misc/vertical-tabs.js
+share/drupal/misc/watchdog-error.png
+share/drupal/misc/watchdog-ok.png
+share/drupal/misc/watchdog-warning.png
+share/drupal/modules/README.txt
+share/drupal/modules/aggregator/aggregator-feed-source.tpl.php
+share/drupal/modules/aggregator/aggregator-item.tpl.php
+share/drupal/modules/aggregator/aggregator-rtl.css
+share/drupal/modules/aggregator/aggregator-summary-item.tpl.php
+share/drupal/modules/aggregator/aggregator-summary-items.tpl.php
+share/drupal/modules/aggregator/aggregator-wrapper.tpl.php
+share/drupal/modules/aggregator/aggregator.admin.inc
+share/drupal/modules/aggregator/aggregator.api.php
+share/drupal/modules/aggregator/aggregator.css
+share/drupal/modules/aggregator/aggregator.fetcher.inc
+share/drupal/modules/aggregator/aggregator.info
+share/drupal/modules/aggregator/aggregator.install
+share/drupal/modules/aggregator/aggregator.module
+share/drupal/modules/aggregator/aggregator.pages.inc
+share/drupal/modules/aggregator/aggregator.parser.inc
+share/drupal/modules/aggregator/aggregator.processor.inc
+share/drupal/modules/aggregator/aggregator.test
+share/drupal/modules/aggregator/tests/aggregator_test.info
+share/drupal/modules/aggregator/tests/aggregator_test.module
+share/drupal/modules/aggregator/tests/aggregator_test_atom.xml
+share/drupal/modules/aggregator/tests/aggregator_test_rss091.xml
+share/drupal/modules/block/block-admin-display-form.tpl.php
+share/drupal/modules/block/block.admin.inc
+share/drupal/modules/block/block.api.php
+share/drupal/modules/block/block.css
+share/drupal/modules/block/block.info
+share/drupal/modules/block/block.install
+share/drupal/modules/block/block.js
+share/drupal/modules/block/block.module
+share/drupal/modules/block/block.test
+share/drupal/modules/block/block.tpl.php
+share/drupal/modules/block/tests/block_test.info
+share/drupal/modules/block/tests/block_test.module
+share/drupal/modules/blog/blog.info
+share/drupal/modules/blog/blog.install
+share/drupal/modules/blog/blog.module
+share/drupal/modules/blog/blog.pages.inc
+share/drupal/modules/blog/blog.test
+share/drupal/modules/book/book-all-books-block.tpl.php
+share/drupal/modules/book/book-export-html.tpl.php
+share/drupal/modules/book/book-navigation.tpl.php
+share/drupal/modules/book/book-node-export-html.tpl.php
+share/drupal/modules/book/book-rtl.css
+share/drupal/modules/book/book.admin.inc
+share/drupal/modules/book/book.css
+share/drupal/modules/book/book.info
+share/drupal/modules/book/book.install
+share/drupal/modules/book/book.js
+share/drupal/modules/book/book.module
+share/drupal/modules/book/book.pages.inc
+share/drupal/modules/book/book.test
+share/drupal/modules/color/color-rtl.css
+share/drupal/modules/color/color.css
+share/drupal/modules/color/color.info
+share/drupal/modules/color/color.install
+share/drupal/modules/color/color.js
+share/drupal/modules/color/color.module
+share/drupal/modules/color/color.test
+share/drupal/modules/color/images/hook-rtl.png
+share/drupal/modules/color/images/hook.png
+share/drupal/modules/color/images/lock.png
+share/drupal/modules/color/preview.html
+share/drupal/modules/color/preview.js
+share/drupal/modules/comment/comment-node-form.js
+share/drupal/modules/comment/comment-rtl.css
+share/drupal/modules/comment/comment-wrapper.tpl.php
+share/drupal/modules/comment/comment.admin.inc
+share/drupal/modules/comment/comment.api.php
+share/drupal/modules/comment/comment.css
+share/drupal/modules/comment/comment.info
+share/drupal/modules/comment/comment.install
+share/drupal/modules/comment/comment.module
+share/drupal/modules/comment/comment.pages.inc
+share/drupal/modules/comment/comment.test
+share/drupal/modules/comment/comment.tokens.inc
+share/drupal/modules/comment/comment.tpl.php
+share/drupal/modules/contact/contact.admin.inc
+share/drupal/modules/contact/contact.info
+share/drupal/modules/contact/contact.install
+share/drupal/modules/contact/contact.module
+share/drupal/modules/contact/contact.pages.inc
+share/drupal/modules/contact/contact.test
+share/drupal/modules/contextual/contextual-rtl.css
+share/drupal/modules/contextual/contextual.api.php
+share/drupal/modules/contextual/contextual.css
+share/drupal/modules/contextual/contextual.info
+share/drupal/modules/contextual/contextual.js
+share/drupal/modules/contextual/contextual.module
+share/drupal/modules/contextual/images/gear-select.png
+share/drupal/modules/dashboard/dashboard-rtl.css
+share/drupal/modules/dashboard/dashboard.api.php
+share/drupal/modules/dashboard/dashboard.css
+share/drupal/modules/dashboard/dashboard.info
+share/drupal/modules/dashboard/dashboard.install
+share/drupal/modules/dashboard/dashboard.js
+share/drupal/modules/dashboard/dashboard.module
+share/drupal/modules/dashboard/dashboard.test
+share/drupal/modules/dblog/dblog-rtl.css
+share/drupal/modules/dblog/dblog.admin.inc
+share/drupal/modules/dblog/dblog.css
+share/drupal/modules/dblog/dblog.info
+share/drupal/modules/dblog/dblog.install
+share/drupal/modules/dblog/dblog.module
+share/drupal/modules/dblog/dblog.test
+share/drupal/modules/field/field.api.php
+share/drupal/modules/field/field.attach.inc
+share/drupal/modules/field/field.crud.inc
+share/drupal/modules/field/field.default.inc
+share/drupal/modules/field/field.form.inc
+share/drupal/modules/field/field.info
+share/drupal/modules/field/field.info.inc
+share/drupal/modules/field/field.install
+share/drupal/modules/field/field.module
+share/drupal/modules/field/field.multilingual.inc
+share/drupal/modules/field/modules/field_sql_storage/field_sql_storage.info
+share/drupal/modules/field/modules/field_sql_storage/field_sql_storage.install
+share/drupal/modules/field/modules/field_sql_storage/field_sql_storage.module
+share/drupal/modules/field/modules/field_sql_storage/field_sql_storage.test
+share/drupal/modules/field/modules/list/list.info
+share/drupal/modules/field/modules/list/list.install
+share/drupal/modules/field/modules/list/list.module
+share/drupal/modules/field/modules/list/tests/list.test
+share/drupal/modules/field/modules/list/tests/list_test.info
+share/drupal/modules/field/modules/list/tests/list_test.module
+share/drupal/modules/field/modules/number/number.info
+share/drupal/modules/field/modules/number/number.install
+share/drupal/modules/field/modules/number/number.module
+share/drupal/modules/field/modules/number/number.test
+share/drupal/modules/field/modules/options/options.api.php
+share/drupal/modules/field/modules/options/options.info
+share/drupal/modules/field/modules/options/options.module
+share/drupal/modules/field/modules/options/options.test
+share/drupal/modules/field/modules/text/text.info
+share/drupal/modules/field/modules/text/text.install
+share/drupal/modules/field/modules/text/text.js
+share/drupal/modules/field/modules/text/text.module
+share/drupal/modules/field/modules/text/text.test
+share/drupal/modules/field/tests/field.test
+share/drupal/modules/field/tests/field_test.entity.inc
+share/drupal/modules/field/tests/field_test.field.inc
+share/drupal/modules/field/tests/field_test.info
+share/drupal/modules/field/tests/field_test.install
+share/drupal/modules/field/tests/field_test.module
+share/drupal/modules/field/tests/field_test.storage.inc
+share/drupal/modules/field/theme/field-rtl.css
+share/drupal/modules/field/theme/field.css
+share/drupal/modules/field/theme/field.tpl.php
+share/drupal/modules/field_ui/field_ui-rtl.css
+share/drupal/modules/field_ui/field_ui.admin.inc
+share/drupal/modules/field_ui/field_ui.api.php
+share/drupal/modules/field_ui/field_ui.css
+share/drupal/modules/field_ui/field_ui.info
+share/drupal/modules/field_ui/field_ui.js
+share/drupal/modules/field_ui/field_ui.module
+share/drupal/modules/field_ui/field_ui.test
+share/drupal/modules/file/file.api.php
+share/drupal/modules/file/file.css
+share/drupal/modules/file/file.field.inc
+share/drupal/modules/file/file.info
+share/drupal/modules/file/file.install
+share/drupal/modules/file/file.js
+share/drupal/modules/file/file.module
+share/drupal/modules/file/icons/application-octet-stream.png
+share/drupal/modules/file/icons/application-pdf.png
+share/drupal/modules/file/icons/application-x-executable.png
+share/drupal/modules/file/icons/audio-x-generic.png
+share/drupal/modules/file/icons/image-x-generic.png
+share/drupal/modules/file/icons/package-x-generic.png
+share/drupal/modules/file/icons/text-html.png
+share/drupal/modules/file/icons/text-plain.png
+share/drupal/modules/file/icons/text-x-generic.png
+share/drupal/modules/file/icons/text-x-script.png
+share/drupal/modules/file/icons/video-x-generic.png
+share/drupal/modules/file/icons/x-office-document.png
+share/drupal/modules/file/icons/x-office-presentation.png
+share/drupal/modules/file/icons/x-office-spreadsheet.png
+share/drupal/modules/file/tests/file.test
+share/drupal/modules/file/tests/file_module_test.info
+share/drupal/modules/file/tests/file_module_test.module
+share/drupal/modules/filter/filter.admin.inc
+share/drupal/modules/filter/filter.admin.js
+share/drupal/modules/filter/filter.api.php
+share/drupal/modules/filter/filter.css
+share/drupal/modules/filter/filter.info
+share/drupal/modules/filter/filter.install
+share/drupal/modules/filter/filter.js
+share/drupal/modules/filter/filter.module
+share/drupal/modules/filter/filter.pages.inc
+share/drupal/modules/filter/filter.test
+share/drupal/modules/filter/tests/filter.url-input.txt
+share/drupal/modules/filter/tests/filter.url-output.txt
+share/drupal/modules/forum/forum-icon.tpl.php
+share/drupal/modules/forum/forum-list.tpl.php
+share/drupal/modules/forum/forum-rtl.css
+share/drupal/modules/forum/forum-submitted.tpl.php
+share/drupal/modules/forum/forum-topic-list.tpl.php
+share/drupal/modules/forum/forum.admin.inc
+share/drupal/modules/forum/forum.css
+share/drupal/modules/forum/forum.info
+share/drupal/modules/forum/forum.install
+share/drupal/modules/forum/forum.module
+share/drupal/modules/forum/forum.pages.inc
+share/drupal/modules/forum/forum.test
+share/drupal/modules/forum/forums.tpl.php
+share/drupal/modules/help/help-rtl.css
+share/drupal/modules/help/help.admin.inc
+share/drupal/modules/help/help.api.php
+share/drupal/modules/help/help.css
+share/drupal/modules/help/help.info
+share/drupal/modules/help/help.module
+share/drupal/modules/help/help.test
+share/drupal/modules/image/image-rtl.css
+share/drupal/modules/image/image.admin.css
+share/drupal/modules/image/image.admin.inc
+share/drupal/modules/image/image.api.php
+share/drupal/modules/image/image.css
+share/drupal/modules/image/image.effects.inc
+share/drupal/modules/image/image.field.inc
+share/drupal/modules/image/image.info
+share/drupal/modules/image/image.install
+share/drupal/modules/image/image.module
+share/drupal/modules/image/image.test
+share/drupal/modules/image/sample.png
+share/drupal/modules/image/tests/image_module_test.info
+share/drupal/modules/image/tests/image_module_test.module
+share/drupal/modules/locale/locale-rtl.css
+share/drupal/modules/locale/locale.admin.inc
+share/drupal/modules/locale/locale.api.php
+share/drupal/modules/locale/locale.css
+share/drupal/modules/locale/locale.datepicker.js
+share/drupal/modules/locale/locale.info
+share/drupal/modules/locale/locale.install
+share/drupal/modules/locale/locale.module
+share/drupal/modules/locale/locale.test
+share/drupal/modules/locale/tests/locale_test.info
+share/drupal/modules/locale/tests/locale_test.js
+share/drupal/modules/locale/tests/locale_test.module
+share/drupal/modules/locale/tests/translations/test.xx.po
+share/drupal/modules/menu/menu.admin.inc
+share/drupal/modules/menu/menu.admin.js
+share/drupal/modules/menu/menu.api.php
+share/drupal/modules/menu/menu.css
+share/drupal/modules/menu/menu.info
+share/drupal/modules/menu/menu.install
+share/drupal/modules/menu/menu.js
+share/drupal/modules/menu/menu.module
+share/drupal/modules/menu/menu.test
+share/drupal/modules/node/content_types.inc
+share/drupal/modules/node/content_types.js
+share/drupal/modules/node/node.admin.inc
+share/drupal/modules/node/node.api.php
+share/drupal/modules/node/node.css
+share/drupal/modules/node/node.info
+share/drupal/modules/node/node.install
+share/drupal/modules/node/node.js
+share/drupal/modules/node/node.module
+share/drupal/modules/node/node.pages.inc
+share/drupal/modules/node/node.test
+share/drupal/modules/node/node.tokens.inc
+share/drupal/modules/node/node.tpl.php
+share/drupal/modules/node/tests/node_access_test.info
+share/drupal/modules/node/tests/node_access_test.install
+share/drupal/modules/node/tests/node_access_test.module
+share/drupal/modules/node/tests/node_test.info
+share/drupal/modules/node/tests/node_test.module
+share/drupal/modules/node/tests/node_test_exception.info
+share/drupal/modules/node/tests/node_test_exception.module
+share/drupal/modules/openid/login-bg.png
+share/drupal/modules/openid/openid-rtl.css
+share/drupal/modules/openid/openid.api.php
+share/drupal/modules/openid/openid.css
+share/drupal/modules/openid/openid.inc
+share/drupal/modules/openid/openid.info
+share/drupal/modules/openid/openid.install
+share/drupal/modules/openid/openid.js
+share/drupal/modules/openid/openid.module
+share/drupal/modules/openid/openid.pages.inc
+share/drupal/modules/openid/openid.test
+share/drupal/modules/openid/tests/openid_test.info
+share/drupal/modules/openid/tests/openid_test.install
+share/drupal/modules/openid/tests/openid_test.module
+share/drupal/modules/overlay/images/background.png
+share/drupal/modules/overlay/images/close-rtl.png
+share/drupal/modules/overlay/images/close.png
+share/drupal/modules/overlay/overlay-child-rtl.css
+share/drupal/modules/overlay/overlay-child.css
+share/drupal/modules/overlay/overlay-child.js
+share/drupal/modules/overlay/overlay-parent.css
+share/drupal/modules/overlay/overlay-parent.js
+share/drupal/modules/overlay/overlay.api.php
+share/drupal/modules/overlay/overlay.info
+share/drupal/modules/overlay/overlay.install
+share/drupal/modules/overlay/overlay.module
+share/drupal/modules/overlay/overlay.tpl.php
+share/drupal/modules/path/path.admin.inc
+share/drupal/modules/path/path.api.php
+share/drupal/modules/path/path.info
+share/drupal/modules/path/path.js
+share/drupal/modules/path/path.module
+share/drupal/modules/path/path.test
+share/drupal/modules/php/php.info
+share/drupal/modules/php/php.install
+share/drupal/modules/php/php.module
+share/drupal/modules/php/php.test
+share/drupal/modules/poll/poll-bar--block.tpl.php
+share/drupal/modules/poll/poll-bar.tpl.php
+share/drupal/modules/poll/poll-results--block.tpl.php
+share/drupal/modules/poll/poll-results.tpl.php
+share/drupal/modules/poll/poll-rtl.css
+share/drupal/modules/poll/poll-vote.tpl.php
+share/drupal/modules/poll/poll.css
+share/drupal/modules/poll/poll.info
+share/drupal/modules/poll/poll.install
+share/drupal/modules/poll/poll.module
+share/drupal/modules/poll/poll.pages.inc
+share/drupal/modules/poll/poll.test
+share/drupal/modules/poll/poll.tokens.inc
+share/drupal/modules/profile/profile-block.tpl.php
+share/drupal/modules/profile/profile-listing.tpl.php
+share/drupal/modules/profile/profile-wrapper.tpl.php
+share/drupal/modules/profile/profile.admin.inc
+share/drupal/modules/profile/profile.css
+share/drupal/modules/profile/profile.info
+share/drupal/modules/profile/profile.install
+share/drupal/modules/profile/profile.js
+share/drupal/modules/profile/profile.module
+share/drupal/modules/profile/profile.pages.inc
+share/drupal/modules/profile/profile.test
+share/drupal/modules/rdf/rdf.api.php
+share/drupal/modules/rdf/rdf.info
+share/drupal/modules/rdf/rdf.install
+share/drupal/modules/rdf/rdf.module
+share/drupal/modules/rdf/rdf.test
+share/drupal/modules/rdf/tests/rdf_test.info
+share/drupal/modules/rdf/tests/rdf_test.install
+share/drupal/modules/rdf/tests/rdf_test.module
+share/drupal/modules/search/search-block-form.tpl.php
+share/drupal/modules/search/search-result.tpl.php
+share/drupal/modules/search/search-results.tpl.php
+share/drupal/modules/search/search-rtl.css
+share/drupal/modules/search/search.admin.inc
+share/drupal/modules/search/search.api.php
+share/drupal/modules/search/search.css
+share/drupal/modules/search/search.extender.inc
+share/drupal/modules/search/search.info
+share/drupal/modules/search/search.install
+share/drupal/modules/search/search.module
+share/drupal/modules/search/search.pages.inc
+share/drupal/modules/search/search.test
+share/drupal/modules/search/tests/UnicodeTest.txt
+share/drupal/modules/search/tests/search_embedded_form.info
+share/drupal/modules/search/tests/search_embedded_form.module
+share/drupal/modules/search/tests/search_extra_type.info
+share/drupal/modules/search/tests/search_extra_type.module
+share/drupal/modules/shortcut/shortcut-rtl.css
+share/drupal/modules/shortcut/shortcut.admin.css
+share/drupal/modules/shortcut/shortcut.admin.inc
+share/drupal/modules/shortcut/shortcut.admin.js
+share/drupal/modules/shortcut/shortcut.api.php
+share/drupal/modules/shortcut/shortcut.css
+share/drupal/modules/shortcut/shortcut.info
+share/drupal/modules/shortcut/shortcut.install
+share/drupal/modules/shortcut/shortcut.module
+share/drupal/modules/shortcut/shortcut.png
+share/drupal/modules/shortcut/shortcut.test
+share/drupal/modules/simpletest/drupal_web_test_case.php
+share/drupal/modules/simpletest/files/README.txt
+share/drupal/modules/simpletest/files/css_test_files/comment_hacks.css
+share/drupal/modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css
+share/drupal/modules/simpletest/files/css_test_files/comment_hacks.css.unoptimized.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_with_import.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_with_import.css.optimized.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_with_import.css.unoptimized.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_without_import.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_without_import.css.optimized.css
+share/drupal/modules/simpletest/files/css_test_files/css_input_without_import.css.unoptimized.css
+share/drupal/modules/simpletest/files/css_test_files/import1.css
+share/drupal/modules/simpletest/files/css_test_files/import2.css
+share/drupal/modules/simpletest/files/html-1.txt
+share/drupal/modules/simpletest/files/html-2.html
+share/drupal/modules/simpletest/files/image-1.png
+share/drupal/modules/simpletest/files/image-2.jpg
+share/drupal/modules/simpletest/files/image-test.gif
+share/drupal/modules/simpletest/files/image-test.jpg
+share/drupal/modules/simpletest/files/image-test.png
+share/drupal/modules/simpletest/files/javascript-1.txt
+share/drupal/modules/simpletest/files/javascript-2.script
+share/drupal/modules/simpletest/files/php-1.txt
+share/drupal/modules/simpletest/files/php-2.php
+share/drupal/modules/simpletest/files/sql-1.txt
+share/drupal/modules/simpletest/files/sql-2.sql
+share/drupal/modules/simpletest/simpletest.api.php
+share/drupal/modules/simpletest/simpletest.css
+share/drupal/modules/simpletest/simpletest.info
+share/drupal/modules/simpletest/simpletest.install
+share/drupal/modules/simpletest/simpletest.js
+share/drupal/modules/simpletest/simpletest.module
+share/drupal/modules/simpletest/simpletest.pages.inc
+share/drupal/modules/simpletest/simpletest.test
+share/drupal/modules/simpletest/tests/actions.test
+share/drupal/modules/simpletest/tests/actions_loop_test.info
+share/drupal/modules/simpletest/tests/actions_loop_test.install
+share/drupal/modules/simpletest/tests/actions_loop_test.module
+share/drupal/modules/simpletest/tests/ajax.test
+share/drupal/modules/simpletest/tests/ajax_forms_test.info
+share/drupal/modules/simpletest/tests/ajax_forms_test.module
+share/drupal/modules/simpletest/tests/ajax_test.info
+share/drupal/modules/simpletest/tests/ajax_test.module
+share/drupal/modules/simpletest/tests/batch.test
+share/drupal/modules/simpletest/tests/batch_test.callbacks.inc
+share/drupal/modules/simpletest/tests/batch_test.info
+share/drupal/modules/simpletest/tests/batch_test.module
+share/drupal/modules/simpletest/tests/bootstrap.test
+share/drupal/modules/simpletest/tests/cache.test
+share/drupal/modules/simpletest/tests/common.test
+share/drupal/modules/simpletest/tests/common_test.css
+share/drupal/modules/simpletest/tests/common_test.info
+share/drupal/modules/simpletest/tests/common_test.module
+share/drupal/modules/simpletest/tests/common_test.print.css
+share/drupal/modules/simpletest/tests/common_test_cron_helper.info
+share/drupal/modules/simpletest/tests/common_test_cron_helper.module
+share/drupal/modules/simpletest/tests/common_test_info.txt
+share/drupal/modules/simpletest/tests/database_test.info
+share/drupal/modules/simpletest/tests/database_test.install
+share/drupal/modules/simpletest/tests/database_test.module
+share/drupal/modules/simpletest/tests/database_test.test
+share/drupal/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+share/drupal/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
+share/drupal/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+share/drupal/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
+share/drupal/modules/simpletest/tests/entity_cache_test.info
+share/drupal/modules/simpletest/tests/entity_cache_test.module
+share/drupal/modules/simpletest/tests/entity_cache_test_dependency.info
+share/drupal/modules/simpletest/tests/entity_cache_test_dependency.module
+share/drupal/modules/simpletest/tests/entity_crud_hook_test.info
+share/drupal/modules/simpletest/tests/entity_crud_hook_test.module
+share/drupal/modules/simpletest/tests/entity_crud_hook_test.test
+share/drupal/modules/simpletest/tests/entity_query.test
+share/drupal/modules/simpletest/tests/error.test
+share/drupal/modules/simpletest/tests/error_test.info
+share/drupal/modules/simpletest/tests/error_test.module
+share/drupal/modules/simpletest/tests/file.test
+share/drupal/modules/simpletest/tests/file_test.info
+share/drupal/modules/simpletest/tests/file_test.module
+share/drupal/modules/simpletest/tests/filetransfer.test
+share/drupal/modules/simpletest/tests/filter_test.info
+share/drupal/modules/simpletest/tests/filter_test.module
+share/drupal/modules/simpletest/tests/form.test
+share/drupal/modules/simpletest/tests/form_test.file.inc
+share/drupal/modules/simpletest/tests/form_test.info
+share/drupal/modules/simpletest/tests/form_test.module
+share/drupal/modules/simpletest/tests/graph.test
+share/drupal/modules/simpletest/tests/http.php
+share/drupal/modules/simpletest/tests/https.php
+share/drupal/modules/simpletest/tests/image.test
+share/drupal/modules/simpletest/tests/image_test.info
+share/drupal/modules/simpletest/tests/image_test.module
+share/drupal/modules/simpletest/tests/lock.test
+share/drupal/modules/simpletest/tests/mail.test
+share/drupal/modules/simpletest/tests/menu.test
+share/drupal/modules/simpletest/tests/menu_test.info
+share/drupal/modules/simpletest/tests/menu_test.module
+share/drupal/modules/simpletest/tests/module.test
+share/drupal/modules/simpletest/tests/module_test.file.inc
+share/drupal/modules/simpletest/tests/module_test.info
+share/drupal/modules/simpletest/tests/module_test.install
+share/drupal/modules/simpletest/tests/module_test.module
+share/drupal/modules/simpletest/tests/password.test
+share/drupal/modules/simpletest/tests/path.test
+share/drupal/modules/simpletest/tests/registry.test
+share/drupal/modules/simpletest/tests/requirements1_test.info
+share/drupal/modules/simpletest/tests/requirements1_test.install
+share/drupal/modules/simpletest/tests/requirements1_test.module
+share/drupal/modules/simpletest/tests/requirements2_test.info
+share/drupal/modules/simpletest/tests/requirements2_test.module
+share/drupal/modules/simpletest/tests/schema.test
+share/drupal/modules/simpletest/tests/session.test
+share/drupal/modules/simpletest/tests/session_test.info
+share/drupal/modules/simpletest/tests/session_test.module
+share/drupal/modules/simpletest/tests/system.base.css
+share/drupal/modules/simpletest/tests/system_dependencies_test.info
+share/drupal/modules/simpletest/tests/system_dependencies_test.module
+share/drupal/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
+share/drupal/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module
+share/drupal/modules/simpletest/tests/system_incompatible_core_version_test.info
+share/drupal/modules/simpletest/tests/system_incompatible_core_version_test.module
+share/drupal/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
+share/drupal/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module
+share/drupal/modules/simpletest/tests/system_incompatible_module_version_test.info
+share/drupal/modules/simpletest/tests/system_incompatible_module_version_test.module
+share/drupal/modules/simpletest/tests/system_test.info
+share/drupal/modules/simpletest/tests/system_test.module
+share/drupal/modules/simpletest/tests/tablesort.test
+share/drupal/modules/simpletest/tests/taxonomy_test.info
+share/drupal/modules/simpletest/tests/taxonomy_test.install
+share/drupal/modules/simpletest/tests/taxonomy_test.module
+share/drupal/modules/simpletest/tests/theme.test
+share/drupal/modules/simpletest/tests/theme_test.info
+share/drupal/modules/simpletest/tests/theme_test.module
+share/drupal/modules/simpletest/tests/unicode.test
+share/drupal/modules/simpletest/tests/update.test
+share/drupal/modules/simpletest/tests/update_script_test.info
+share/drupal/modules/simpletest/tests/update_script_test.install
+share/drupal/modules/simpletest/tests/update_script_test.module
+share/drupal/modules/simpletest/tests/update_test_1.info
+share/drupal/modules/simpletest/tests/update_test_1.install
+share/drupal/modules/simpletest/tests/update_test_1.module
+share/drupal/modules/simpletest/tests/update_test_2.info
+share/drupal/modules/simpletest/tests/update_test_2.install
+share/drupal/modules/simpletest/tests/update_test_2.module
+share/drupal/modules/simpletest/tests/update_test_3.info
+share/drupal/modules/simpletest/tests/update_test_3.install
+share/drupal/modules/simpletest/tests/update_test_3.module
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.bare.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.comments.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.filled.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.forum.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.locale.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.menu.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.translatable.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.user-no-password-token.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-6.user-password-token.database.php
+share/drupal/modules/simpletest/tests/upgrade/drupal-7.bare.minimal.database.php.gz
+share/drupal/modules/simpletest/tests/upgrade/drupal-7.bare.standard_all.database.php.gz
+share/drupal/modules/simpletest/tests/upgrade/drupal-7.filled.minimal.database.php.gz
+share/drupal/modules/simpletest/tests/upgrade/drupal-7.filled.standard_all.database.php.gz
+share/drupal/modules/simpletest/tests/upgrade/upgrade.comment.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.filter.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.forum.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.locale.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.menu.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.node.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.poll.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.taxonomy.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.translatable.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.upload.test
+share/drupal/modules/simpletest/tests/upgrade/upgrade.user.test
+share/drupal/modules/simpletest/tests/url_alter_test.info
+share/drupal/modules/simpletest/tests/url_alter_test.install
+share/drupal/modules/simpletest/tests/url_alter_test.module
+share/drupal/modules/simpletest/tests/xmlrpc.test
+share/drupal/modules/simpletest/tests/xmlrpc_test.info
+share/drupal/modules/simpletest/tests/xmlrpc_test.module
+share/drupal/modules/statistics/statistics.admin.inc
+share/drupal/modules/statistics/statistics.info
+share/drupal/modules/statistics/statistics.install
+share/drupal/modules/statistics/statistics.module
+share/drupal/modules/statistics/statistics.pages.inc
+share/drupal/modules/statistics/statistics.test
+share/drupal/modules/statistics/statistics.tokens.inc
+share/drupal/modules/syslog/syslog.info
+share/drupal/modules/syslog/syslog.install
+share/drupal/modules/syslog/syslog.module
+share/drupal/modules/syslog/syslog.test
+share/drupal/modules/system/html.tpl.php
+share/drupal/modules/system/image.gd.inc
+share/drupal/modules/system/maintenance-page.tpl.php
+share/drupal/modules/system/page.tpl.php
+share/drupal/modules/system/region.tpl.php
+share/drupal/modules/system/system.admin-rtl.css
+share/drupal/modules/system/system.admin.css
+share/drupal/modules/system/system.admin.inc
+share/drupal/modules/system/system.api.php
+share/drupal/modules/system/system.archiver.inc
+share/drupal/modules/system/system.base-rtl.css
+share/drupal/modules/system/system.base.css
+share/drupal/modules/system/system.cron.js
+share/drupal/modules/system/system.info
+share/drupal/modules/system/system.install
+share/drupal/modules/system/system.js
+share/drupal/modules/system/system.mail.inc
+share/drupal/modules/system/system.maintenance.css
+share/drupal/modules/system/system.menus-rtl.css
+share/drupal/modules/system/system.menus.css
+share/drupal/modules/system/system.messages-rtl.css
+share/drupal/modules/system/system.messages.css
+share/drupal/modules/system/system.module
+share/drupal/modules/system/system.queue.inc
+share/drupal/modules/system/system.tar.inc
+share/drupal/modules/system/system.test
+share/drupal/modules/system/system.theme-rtl.css
+share/drupal/modules/system/system.theme.css
+share/drupal/modules/system/system.tokens.inc
+share/drupal/modules/system/system.updater.inc
+share/drupal/modules/system/theme.api.php
+share/drupal/modules/taxonomy/taxonomy-term.tpl.php
+share/drupal/modules/taxonomy/taxonomy.admin.inc
+share/drupal/modules/taxonomy/taxonomy.api.php
+share/drupal/modules/taxonomy/taxonomy.css
+share/drupal/modules/taxonomy/taxonomy.info
+share/drupal/modules/taxonomy/taxonomy.install
+share/drupal/modules/taxonomy/taxonomy.js
+share/drupal/modules/taxonomy/taxonomy.module
+share/drupal/modules/taxonomy/taxonomy.pages.inc
+share/drupal/modules/taxonomy/taxonomy.test
+share/drupal/modules/taxonomy/taxonomy.tokens.inc
+share/drupal/modules/toolbar/toolbar-rtl.css
+share/drupal/modules/toolbar/toolbar.css
+share/drupal/modules/toolbar/toolbar.info
+share/drupal/modules/toolbar/toolbar.js
+share/drupal/modules/toolbar/toolbar.module
+share/drupal/modules/toolbar/toolbar.png
+share/drupal/modules/toolbar/toolbar.tpl.php
+share/drupal/modules/tracker/tracker.css
+share/drupal/modules/tracker/tracker.info
+share/drupal/modules/tracker/tracker.install
+share/drupal/modules/tracker/tracker.module
+share/drupal/modules/tracker/tracker.pages.inc
+share/drupal/modules/tracker/tracker.test
+share/drupal/modules/translation/tests/translation_test.info
+share/drupal/modules/translation/tests/translation_test.module
+share/drupal/modules/translation/translation.info
+share/drupal/modules/translation/translation.module
+share/drupal/modules/translation/translation.pages.inc
+share/drupal/modules/translation/translation.test
+share/drupal/modules/trigger/tests/trigger_test.info
+share/drupal/modules/trigger/tests/trigger_test.module
+share/drupal/modules/trigger/trigger.admin.inc
+share/drupal/modules/trigger/trigger.api.php
+share/drupal/modules/trigger/trigger.info
+share/drupal/modules/trigger/trigger.install
+share/drupal/modules/trigger/trigger.module
+share/drupal/modules/trigger/trigger.test
+share/drupal/modules/update/tests/aaa_update_test.1_0.xml
+share/drupal/modules/update/tests/aaa_update_test.info
+share/drupal/modules/update/tests/aaa_update_test.module
+share/drupal/modules/update/tests/aaa_update_test.no-releases.xml
+share/drupal/modules/update/tests/aaa_update_test.tar.gz
+share/drupal/modules/update/tests/bbb_update_test.1_0.xml
+share/drupal/modules/update/tests/bbb_update_test.info
+share/drupal/modules/update/tests/bbb_update_test.module
+share/drupal/modules/update/tests/ccc_update_test.1_0.xml
+share/drupal/modules/update/tests/ccc_update_test.info
+share/drupal/modules/update/tests/ccc_update_test.module
+share/drupal/modules/update/tests/drupal.0.xml
+share/drupal/modules/update/tests/drupal.1.xml
+share/drupal/modules/update/tests/drupal.2-sec.xml
+share/drupal/modules/update/tests/drupal.dev.xml
+share/drupal/modules/update/tests/update_test.info
+share/drupal/modules/update/tests/update_test.module
+share/drupal/modules/update/tests/update_test_basetheme.1_1-sec.xml
+share/drupal/modules/update/tests/update_test_subtheme.1_0.xml
+share/drupal/modules/update/update-rtl.css
+share/drupal/modules/update/update.api.php
+share/drupal/modules/update/update.authorize.inc
+share/drupal/modules/update/update.compare.inc
+share/drupal/modules/update/update.css
+share/drupal/modules/update/update.fetch.inc
+share/drupal/modules/update/update.info
+share/drupal/modules/update/update.install
+share/drupal/modules/update/update.manager.inc
+share/drupal/modules/update/update.module
+share/drupal/modules/update/update.report.inc
+share/drupal/modules/update/update.settings.inc
+share/drupal/modules/update/update.test
+share/drupal/modules/user/tests/user_form_test.info
+share/drupal/modules/user/tests/user_form_test.module
+share/drupal/modules/user/user-picture.tpl.php
+share/drupal/modules/user/user-profile-category.tpl.php
+share/drupal/modules/user/user-profile-item.tpl.php
+share/drupal/modules/user/user-profile.tpl.php
+share/drupal/modules/user/user-rtl.css
+share/drupal/modules/user/user.admin.inc
+share/drupal/modules/user/user.api.php
+share/drupal/modules/user/user.css
+share/drupal/modules/user/user.info
+share/drupal/modules/user/user.install
+share/drupal/modules/user/user.js
+share/drupal/modules/user/user.module
+share/drupal/modules/user/user.pages.inc
+share/drupal/modules/user/user.permissions.js
+share/drupal/modules/user/user.test
+share/drupal/modules/user/user.tokens.inc
+share/drupal/profiles/minimal/minimal.info
+share/drupal/profiles/minimal/minimal.install
+share/drupal/profiles/minimal/minimal.profile
+share/drupal/profiles/minimal/translations/README.txt
+share/drupal/profiles/standard/standard.info
+share/drupal/profiles/standard/standard.install
+share/drupal/profiles/standard/standard.profile
+share/drupal/profiles/standard/translations/README.txt
+share/drupal/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+share/drupal/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
+share/drupal/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+share/drupal/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
+share/drupal/profiles/testing/testing.info
+share/drupal/profiles/testing/testing.install
+share/drupal/profiles/testing/testing.profile
+share/drupal/robots.txt
+share/drupal/scripts/code-clean.sh
+share/drupal/scripts/cron-curl.sh
+share/drupal/scripts/cron-lynx.sh
+share/drupal/scripts/drupal.sh
+share/drupal/scripts/dump-database-d6.sh
+share/drupal/scripts/dump-database-d7.sh
+share/drupal/scripts/generate-d6-content.sh
+share/drupal/scripts/generate-d7-content.sh
+share/drupal/scripts/password-hash.sh
+share/drupal/scripts/run-tests.sh
+share/drupal/scripts/test.script
+share/drupal/sites/all/README.txt
+share/drupal/themes/README.txt
+share/drupal/themes/bartik/bartik.info
+share/drupal/themes/bartik/color/base.png
+share/drupal/themes/bartik/color/color.inc
+share/drupal/themes/bartik/color/preview.css
+share/drupal/themes/bartik/color/preview.html
+share/drupal/themes/bartik/color/preview.js
+share/drupal/themes/bartik/color/preview.png
+share/drupal/themes/bartik/css/colors.css
+share/drupal/themes/bartik/css/ie-rtl.css
+share/drupal/themes/bartik/css/ie.css
+share/drupal/themes/bartik/css/ie6.css
+share/drupal/themes/bartik/css/layout-rtl.css
+share/drupal/themes/bartik/css/layout.css
+share/drupal/themes/bartik/css/maintenance-page.css
+share/drupal/themes/bartik/css/print.css
+share/drupal/themes/bartik/css/style-rtl.css
+share/drupal/themes/bartik/css/style.css
+share/drupal/themes/bartik/images/add.png
+share/drupal/themes/bartik/images/buttons.png
+share/drupal/themes/bartik/images/comment-arrow-rtl.gif
+share/drupal/themes/bartik/images/comment-arrow.gif
+share/drupal/themes/bartik/images/search-button.png
+share/drupal/themes/bartik/images/tabs-border.png
+share/drupal/themes/bartik/logo.png
+share/drupal/themes/bartik/screenshot.png
+share/drupal/themes/bartik/template.php
+share/drupal/themes/bartik/templates/comment-wrapper.tpl.php
+share/drupal/themes/bartik/templates/comment.tpl.php
+share/drupal/themes/bartik/templates/maintenance-page.tpl.php
+share/drupal/themes/bartik/templates/node.tpl.php
+share/drupal/themes/bartik/templates/page.tpl.php
+share/drupal/themes/engines/phptemplate/phptemplate.engine
+share/drupal/themes/garland/color/base.png
+share/drupal/themes/garland/color/color.inc
+share/drupal/themes/garland/color/preview.css
+share/drupal/themes/garland/color/preview.png
+share/drupal/themes/garland/comment.tpl.php
+share/drupal/themes/garland/fix-ie-rtl.css
+share/drupal/themes/garland/fix-ie.css
+share/drupal/themes/garland/garland.info
+share/drupal/themes/garland/images/bg-bar-white.png
+share/drupal/themes/garland/images/bg-bar.png
+share/drupal/themes/garland/images/bg-content-left.png
+share/drupal/themes/garland/images/bg-content-right.png
+share/drupal/themes/garland/images/bg-content.png
+share/drupal/themes/garland/images/bg-navigation-item-hover.png
+share/drupal/themes/garland/images/bg-navigation-item.png
+share/drupal/themes/garland/images/bg-navigation.png
+share/drupal/themes/garland/images/bg-tab.png
+share/drupal/themes/garland/images/body.png
+share/drupal/themes/garland/images/gradient-inner.png
+share/drupal/themes/garland/images/menu-collapsed-rtl.gif
+share/drupal/themes/garland/images/menu-collapsed.gif
+share/drupal/themes/garland/images/menu-expanded.gif
+share/drupal/themes/garland/images/menu-leaf.gif
+share/drupal/themes/garland/images/task-list.png
+share/drupal/themes/garland/logo.png
+share/drupal/themes/garland/maintenance-page.tpl.php
+share/drupal/themes/garland/node.tpl.php
+share/drupal/themes/garland/page.tpl.php
+share/drupal/themes/garland/print.css
+share/drupal/themes/garland/screenshot.png
+share/drupal/themes/garland/style-rtl.css
+share/drupal/themes/garland/style.css
+share/drupal/themes/garland/template.php
+share/drupal/themes/garland/theme-settings.php
+share/drupal/themes/seven/ie.css
+share/drupal/themes/seven/ie6.css
+share/drupal/themes/seven/ie7.css
+share/drupal/themes/seven/images/add.png
+share/drupal/themes/seven/images/arrow-asc.png
+share/drupal/themes/seven/images/arrow-desc.png
+share/drupal/themes/seven/images/arrow-next.png
+share/drupal/themes/seven/images/arrow-prev.png
+share/drupal/themes/seven/images/buttons.png
+share/drupal/themes/seven/images/fc-rtl.png
+share/drupal/themes/seven/images/fc.png
+share/drupal/themes/seven/images/list-item-rtl.png
+share/drupal/themes/seven/images/list-item.png
+share/drupal/themes/seven/images/task-check.png
+share/drupal/themes/seven/images/task-item-rtl.png
+share/drupal/themes/seven/images/task-item.png
+share/drupal/themes/seven/images/ui-icons-222222-256x240.png
+share/drupal/themes/seven/images/ui-icons-454545-256x240.png
+share/drupal/themes/seven/images/ui-icons-800000-256x240.png
+share/drupal/themes/seven/images/ui-icons-888888-256x240.png
+share/drupal/themes/seven/images/ui-icons-ffffff-256x240.png
+share/drupal/themes/seven/jquery.ui.theme.css
+share/drupal/themes/seven/logo.png
+share/drupal/themes/seven/maintenance-page.tpl.php
+share/drupal/themes/seven/page.tpl.php
+share/drupal/themes/seven/reset.css
+share/drupal/themes/seven/screenshot.png
+share/drupal/themes/seven/seven.info
+share/drupal/themes/seven/style-rtl.css
+share/drupal/themes/seven/style.css
+share/drupal/themes/seven/template.php
+share/drupal/themes/seven/vertical-tabs-rtl.css
+share/drupal/themes/seven/vertical-tabs.css
+share/drupal/themes/stark/README.txt
+share/drupal/themes/stark/layout.css
+share/drupal/themes/stark/logo.png
+share/drupal/themes/stark/screenshot.png
+share/drupal/themes/stark/stark.info
+share/drupal/themes/tests/README.txt
+share/drupal/themes/tests/block_test_theme/block_test_theme.info
+share/drupal/themes/tests/block_test_theme/page.tpl.php
+share/drupal/themes/tests/test_theme/template.php
+share/drupal/themes/tests/test_theme/test_theme.info
+share/drupal/themes/tests/update_test_basetheme/update_test_basetheme.info
+share/drupal/themes/tests/update_test_subtheme/update_test_subtheme.info
+share/drupal/update.php
+share/drupal/xmlrpc.php
+share/examples/drupal/default.settings.php
+share/examples/drupal/drupal.conf
+@pkgdir share/drupal/files
diff --git a/www/drupal7/distinfo b/www/drupal7/distinfo
new file mode 100644
index 00000000000..109b1464277
--- /dev/null
+++ b/www/drupal7/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+
+SHA1 (drupal-7.10.tar.gz) = 59a5eb9cf65ac806974d1b7ba1496b4e90a7eb50
+RMD160 (drupal-7.10.tar.gz) = bc56c58c530f08304aa183cb71a9fb041bb20343
+Size (drupal-7.10.tar.gz) = 3067653 bytes
diff --git a/www/drupal7/files/drupal.conf b/www/drupal7/files/drupal.conf
new file mode 100644
index 00000000000..691d992b847
--- /dev/null
+++ b/www/drupal7/files/drupal.conf
@@ -0,0 +1,104 @@
+# $NetBSD: drupal.conf,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+#
+# Drupal configuration file fragment for Apache
+
+#
+# Apache/PHP/Drupal settings:
+#
+
+<IfModule mod_alias.c>
+ Alias /drupal/ "@PREFIX@/@DRUPAL@/"
+</IfModule>
+
+<Directory "@PREFIX@/@DRUPAL@">
+AllowOverride Limit Options FileInfo
+Order allow,deny
+Allow from all
+
+# Protect files and directories from prying eyes.
+<FilesMatch "\.(engine|inc|info|install|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
+ Order allow,deny
+</FilesMatch>
+
+# Don't show directory listings for URLs which map to a directory.
+Options -Indexes
+
+# Follow symbolic links in this directory.
+Options +FollowSymLinks
+
+# Customized error messages.
+ErrorDocument 404 /index.php
+
+# Force simple error message for requests for non-existent favicon.ico.
+<Files favicon.ico>
+ # There is no end quote below, for compatibility with Apache 1.3.
+ ErrorDocument 404 "The requested file favicon.ico was not found.
+</Files>
+
+# Set the default handler.
+DirectoryIndex index.php
+
+# Override PHP settings. More in sites/default/settings.php
+# but the following cannot be changed at runtime.
+php_value memory_limit 16M
+
+# PHP 5, Apache 1 and 2.
+<IfModule mod_php5.c>
+ php_value magic_quotes_gpc 0
+ php_value register_globals 0
+ php_value session.auto_start 0
+ php_value mbstring.http_input pass
+ php_value mbstring.http_output pass
+ php_value mbstring.encoding_translation 0
+</IfModule>
+
+# Requires mod_expires to be enabled.
+<IfModule mod_expires.c>
+ # Enable expirations.
+ ExpiresActive On
+
+ # Cache all files for 2 weeks after access (A).
+ ExpiresDefault A1209600
+
+ # Do not cache dynamically generated pages.
+ ExpiresByType text/html A1
+</IfModule>
+
+# Various rewrite rules.
+<IfModule mod_rewrite.c>
+ RewriteEngine on
+
+ # If your site can be accessed both with and without the 'www.' prefix, you
+ # can use one of the following settings to redirect users to your preferred
+ # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
+ #
+ # To redirect all users to access the site WITH the 'www.' prefix,
+ # (http://example.com/... will be redirected to http://www.example.com/...)
+ # adapt and uncomment the following:
+ # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
+ # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
+ #
+ # To redirect all users to access the site WITHOUT the 'www.' prefix,
+ # (http://www.example.com/... will be redirected to http://example.com/...)
+ # uncomment and adapt the following:
+ # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
+ # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
+
+ # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
+ # VirtualDocumentRoot and the rewrite rules are not working properly.
+ # For example if your site is at http://example.com/drupal uncomment and
+ # modify the following line:
+ # RewriteBase /drupal
+ #
+ # If your site is running in a VirtualDocumentRoot at http://example.com/,
+ # uncomment the following line:
+ # RewriteBase /
+
+ # Rewrite URLs of the form 'index.php?q=x'.
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_URI} !=/favicon.ico
+ RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
+</IfModule>
+
+</Directory>
diff --git a/www/drupal7/options.mk b/www/drupal7/options.mk
new file mode 100644
index 00000000000..5f4912dd7ad
--- /dev/null
+++ b/www/drupal7/options.mk
@@ -0,0 +1,56 @@
+# $NetBSD: options.mk,v 1.1.1.1 2011/12/16 12:57:06 taca Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.drupal
+
+PKG_OPTIONS_REQUIRED_GROUPS= db
+PKG_OPTIONS_GROUP.db= mysql pgsql sqlite
+
+PKG_SUPPORTED_OPTIONS= drupal-xmlservices apache unicode
+PKG_SUGGESTED_OPTIONS= mysql drupal-xmlservices apache
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Use PostgreSQL for storing Drupal data
+###
+.if !empty(PKG_OPTIONS:Mpgsql)
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo_pgsql>=5.2.7:../../databases/php-pdo_pgsql
+.elif !empty(PKG_OPTIONS:Mmysql)
+###
+### Use MySQL for storing Drupal data
+###
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo_mysql>=5.2.7:../../databases/php-pdo_mysql
+.elif !empty(PKG_OPTIONS:Msqlite)
+###
+### Use SQLite for storing Drupal data
+###
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo_sqlite>=5.2.7:../../databases/php-pdo_sqlite
+.endif
+
+###
+### Enable XML-based services such as the Blogger API, Jabber and RSS
+### syndication.
+###
+.if !empty(PKG_OPTIONS:Mdrupal-xmlservices)
+DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.2.7:../../textproc/php-dom
+.endif
+
+###
+### Support for unicode
+###
+.if !empty(PKG_OPTIONS:Municode)
+EPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.7:../../converters/php-mbstring
+.endif
+
+###
+### Drupal can run on a number of web servers, we support apache by default
+###
+.if !empty(PKG_OPTIONS:Mapache)
+DEPENDS+= ${APACHE_PKG_PREFIX}-${PHP_PKG_PREFIX}>=5.2.7:../../www/ap-php
+. include "../../mk/apachever.mk"
+WWW_USER?= ${APACHE_USER}
+WWW_GROUP?= ${APACHE_GROUP}
+.else
+WWW_USER?= ${ROOT_USER}
+WWW_GROUP?= ${ROOT_GROUP}
+.endif