diff options
author | William Hubbs <williamh@gentoo.org> | 2014-09-05 16:54:18 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2014-09-05 16:54:18 +0000 |
commit | 4cca13223fe36f9c4ffe537455afecc8384cfed5 (patch) | |
tree | 7605e291d14c90e0a94bdd927cf7cd322827bdcd /www-apps/joomla | |
parent | fixed minimum versions on some deps, fix is in-place, revbumps will be coming... (diff) | |
download | gentoo-2-4cca13223fe36f9c4ffe537455afecc8384cfed5.tar.gz gentoo-2-4cca13223fe36f9c4ffe537455afecc8384cfed5.tar.bz2 gentoo-2-4cca13223fe36f9c4ffe537455afecc8384cfed5.zip |
qa: after speaking with Brian from the db team, do not depend on a database directly. Instead, depend on php with the appropriate bindings and allow the user to pick them through use flags.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'www-apps/joomla')
-rw-r--r-- | www-apps/joomla/ChangeLog | 7 | ||||
-rw-r--r-- | www-apps/joomla/joomla-3.3.3.ebuild | 9 |
2 files changed, 11 insertions, 5 deletions
diff --git a/www-apps/joomla/ChangeLog b/www-apps/joomla/ChangeLog index 0ee3488a3054..2a4367c56d9c 100644 --- a/www-apps/joomla/ChangeLog +++ b/www-apps/joomla/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apps/joomla # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/joomla/ChangeLog,v 1.61 2014/09/05 07:51:00 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/joomla/ChangeLog,v 1.62 2014/09/05 16:54:18 williamh Exp $ + + 05 Sep 2014; William Hubbs <williamh@gentoo.org> joomla-3.3.3.ebuild: + qa: after speaking with Brian from the db team, do not depend on a database + directly. Instead, depend on php with the appropriate bindings and allow the + user to pick them through use flags. 05 Sep 2014; William Hubbs <williamh@gentoo.org> joomla-3.3.3.ebuild, metadata.xml: diff --git a/www-apps/joomla/joomla-3.3.3.ebuild b/www-apps/joomla/joomla-3.3.3.ebuild index 03815d73c99a..93962f8ee70d 100644 --- a/www-apps/joomla/joomla-3.3.3.ebuild +++ b/www-apps/joomla/joomla-3.3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/joomla/joomla-3.3.3.ebuild,v 1.2 2014/09/05 07:51:00 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/joomla/joomla-3.3.3.ebuild,v 1.3 2014/09/05 16:54:18 williamh Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="http://joomlacode.org/gf/download/frsrelease/${MAGIC_1}/${MAGIC_2}/Joom LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" +IUSE="mysql postgres" need_httpd_cgi need_php_httpd @@ -24,8 +24,9 @@ S="${WORKDIR}" DEPEND="${DEPEND} app-arch/unzip" -RDEPEND=">=dev-lang/php-5.3.10[json,mysql,zlib,xml] - >=virtual/mysql-5.2.14" +RDEPEND=">=dev-lang/php-5.3.10[json,mysql?,postgres?,zlib,xml]" + +REQUIRED_USE="|| ( mysql postgres )" src_install () { webapp_src_preinst |