diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-09-17 10:28:43 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-09-17 10:28:43 +0000 |
commit | 6461eb506de8cd70851560fb1b2bfd7949613088 (patch) | |
tree | eb031f5d7c2cea8bcf7d192c81da55d14fa44772 /mail-client | |
parent | version bump wrt #278018 (diff) | |
download | gentoo-2-6461eb506de8cd70851560fb1b2bfd7949613088.tar.gz gentoo-2-6461eb506de8cd70851560fb1b2bfd7949613088.tar.bz2 gentoo-2-6461eb506de8cd70851560fb1b2bfd7949613088.zip |
Depend on php with correct useflags enabled when spell useflag is called.
(Portage version: 2.2_rc38/cvs/Linux i686)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/roundcube/ChangeLog | 5 | ||||
-rw-r--r-- | mail-client/roundcube/roundcube-0.3.ebuild | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/mail-client/roundcube/ChangeLog b/mail-client/roundcube/ChangeLog index b4bfd22e3293..6c4e15a46206 100644 --- a/mail-client/roundcube/ChangeLog +++ b/mail-client/roundcube/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-client/roundcube # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.7 2009/09/12 10:35:41 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.8 2009/09/17 10:28:43 scarabeus Exp $ + + 17 Sep 2009; Tomáš Chvátal <scarabeus@gentoo.org> roundcube-0.3.ebuild: + Depend on php with correct useflags enabled when spell useflag is called. 12 Sep 2009; Christian Faulhammer <fauli@gentoo.org> roundcube-0.2.2.ebuild: diff --git a/mail-client/roundcube/roundcube-0.3.ebuild b/mail-client/roundcube/roundcube-0.3.ebuild index e8ce56539805..8c7cc4b003e2 100644 --- a/mail-client/roundcube/roundcube-0.3.ebuild +++ b/mail-client/roundcube/roundcube-0.3.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.3.ebuild,v 1.1 2009/09/04 17:56:21 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.3.ebuild,v 1.2 2009/09/17 10:28:43 scarabeus Exp $ + +EAPI="2" MY_PN="${PN}mail" MY_P="${MY_PN}-${PV}-stable" @@ -18,7 +20,10 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="ldap mysql postgres sqlite ssl spell" DEPEND="" -RDEPEND="dev-php/PEAR-PEAR" +RDEPEND=" + spell? ( dev-lang/php[curl,spell] ) + dev-php/PEAR-PEAR +" need_httpd_cgi need_php_httpd @@ -60,9 +65,7 @@ pkg_setup() { webapp_pkg_setup } -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { mv config/db.inc.php{.dist,} mv config/main.inc.php{.dist,} } |