diff options
| author | Remi Collet <fedora@famillecollet.com> | 2014-07-09 08:39:47 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2014-07-09 08:39:47 +0200 | 
| commit | 05d6c5bc90e3b93ee5823f717fe4e50feaa3bc04 (patch) | |
| tree | 693b95cfe4dcb8539179e3db7fd19e2dc7908df9 | |
| parent | fd7f28fd4c90c73c6c2d35ab8eb1c61ac1f13c8d (diff) | |
php-horde-Horde-Editor: use bundled ckeditor, not system one (for now)
| -rw-r--r-- | php-horde-horde.spec | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/php-horde-horde.spec b/php-horde-horde.spec index 063107a..2a56b5b 100644 --- a/php-horde-horde.spec +++ b/php-horde-horde.spec @@ -9,6 +9,7 @@  %{!?__pear:       %global __pear       %{_bindir}/pear}  %global pear_name    horde  %global pear_channel pear.horde.org +%global sysckeditor  0  Name:           php-horde-horde  Version:        5.2.0 @@ -37,7 +38,11 @@ Requires:       httpd  Requires:       prototype-httpd  Requires:       scriptaculous-httpd  Requires:       syntaxhighlighter-httpd +%if %{sysckeditor}  Requires:       ckeditor +%else +Requires:       horde-ckeditor +%endif  # PHP stuff, from package.xml  Requires:       php(language) >= 5.3.0  Requires:       php-filter @@ -191,7 +196,10 @@ ln -s %{_sysconfdir}/horde %{buildroot}%{pear_hordedir}/config  cp %{buildroot}%{_sysconfdir}/horde/conf.php.dist \     %{buildroot}%{_sysconfdir}/horde/conf.php -install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/httpd/conf.d/%{name}.conf +install -Dpm 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/httpd/conf.d/%{name}.conf +%if ! %{sysckeditor} +sed -e '/ckeditor/d'      -i %{buildroot}%{_sysconfdir}/httpd/conf.d/%{name}.conf +%endif  # Locales  for loc in locale/{??,??_??} @@ -251,6 +259,7 @@ fi  - Update to 5.2.0  - raise dep on Horde_Alarm, Horde_Autoloader, Horde_Core    and Horde_Service_Weather +- use bundled ckeditor  * Mon Jul 07 2014 Remi Collet <remi@fedoraproject.org> - 5.1.7-1  - Update to 5.1.7  | 
