diff options
author | Olivier Huber <huber@crans.org> | 2011-03-09 13:21:15 +0100 |
---|---|---|
committer | Olivier Huber <huber@crans.org> | 2011-03-09 13:21:15 +0100 |
commit | 578437fcd3af09dd6606d544ab9cbc42fbe2b95c (patch) | |
tree | 6bbcd607314058177911710ef3789878d7d159f9 /www-apps/joomla/joomla-1.6.1.ebuild | |
parent | [Joomla] fix path (diff) | |
download | xhub-578437fcd3af09dd6606d544ab9cbc42fbe2b95c.tar.gz xhub-578437fcd3af09dd6606d544ab9cbc42fbe2b95c.tar.bz2 xhub-578437fcd3af09dd6606d544ab9cbc42fbe2b95c.zip |
[Joomla] we need json support in php and configuration.php is still needed
Diffstat (limited to 'www-apps/joomla/joomla-1.6.1.ebuild')
-rw-r--r-- | www-apps/joomla/joomla-1.6.1.ebuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/www-apps/joomla/joomla-1.6.1.ebuild b/www-apps/joomla/joomla-1.6.1.ebuild index 482811f..80eb82f 100644 --- a/www-apps/joomla/joomla-1.6.1.ebuild +++ b/www-apps/joomla/joomla-1.6.1.ebuild @@ -21,29 +21,31 @@ S="${WORKDIR}" DEPEND="${DEPEND} app-arch/unzip" -RDEPEND="dev-lang/php[mysql,zlib,xml]" +RDEPEND="dev-lang/php[json,mysql,zlib,xml]" src_install () { webapp_src_preinst dodoc installation/CHANGELOG installation/INSTALL README.txt -# touch configuration.php + touch configuration.php insinto "${MY_HTDOCSDIR}" doins -r . - local files=" administrator/cache administrator/components administrator/language - administrator/language/en-GB administrator/manifests administrator/modules - administrator/templates cache components images images/banners language language/en-GB - media modules plugins plugins/authentication plugins/content plugins/editors - plugins/editors-xtd plugins/search plugins/system plugins/user plugins tmp templates" + local files=" administrator/cache administrator/components + administrator/language administrator/language/en-GB administrator/manifests + administrator/modules administrator/templates cache components images + images/banners installation/models/configuration.php language + language/en-GB media modules plugins plugins/authentication plugins/content + plugins/editors plugins/editors-xtd plugins/search plugins/system + plugins/user plugins tmp templates" for file in ${files}; do webapp_serverowned "${MY_HTDOCSDIR}"/${file} done -# webapp_configfile "${MY_HTDOCSDIR}"/configuration.php -# webapp_serverowned "${MY_HTDOCSDIR}"/configuration.php + webapp_configfile "${MY_HTDOCSDIR}"/configuration.php + webapp_serverowned "${MY_HTDOCSDIR}"/configuration.php webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt webapp_src_install |