Author: glen Date: Sun Mar 7 18:03:49 2010 GMT Module: packages Tag: HEAD ---- Log message: - add
---- Files affected: packages/jscolor: jscolor.spec (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: packages/jscolor/jscolor.spec diff -u /dev/null packages/jscolor/jscolor.spec:1.1 --- /dev/null Sun Mar 7 19:03:49 2010 +++ packages/jscolor/jscolor.spec Sun Mar 7 19:03:40 2010 @@ -0,0 +1,93 @@ +# $Revision$, $Date$ +Summary: JavaScript Color Picker (Chooser) +Name: jscolor +Version: 1.3.1 +Release: 1 +License: LGPL +Group: Applications/WWW +Source0: http://jscolor.com/release/%{name}-%{version}.zip +# Source0-md5: d930b60c74f1e9292188168dab3f478b +URL: http://www.jscolor.com/ +BuildRequires: rpmbuild(macros) > 1.268 +BuildRequires: unzip +Requires: webserver(access) +Requires: webserver(alias) +BuildArch: noarch +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%define _webapps /etc/webapps +%define _webapp %{name} +%define _sysconfdir %{_webapps}/%{_webapp} +%define _appdir %{_datadir}/%{name} + +%description +jscolor is a simple & user-friendly color picker for your web forms. +It extends all desired <input> fields of a smooth color selection +dialog. + +%prep +%setup -qc +mv jscolor/demo.html . + +# apache1/apache2 conf +cat > apache.conf <<'EOF' +Alias /js/%{name} %{_appdir} +<Directory %{_appdir}> + Allow from all +</Directory> +EOF + +# lighttpd conf +cat > lighttpd.conf <<'EOF' +alias.url += ( + "/js/%{name}" => "%{_appdir}", +) +EOF + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_appdir}} +cp -a jscolor/* $RPM_BUILD_ROOT%{_appdir} + +cp -a apache.conf $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf +cp -a apache.conf $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf +cp -a lighttpd.conf $RPM_BUILD_ROOT%{_sysconfdir}/lighttpd.conf + +%clean +rm -rf $RPM_BUILD_ROOT + +%triggerin -- apache1 < 1.3.37-3, apache1-base +%webapp_register apache %{_webapp} + +%triggerun -- apache1 < 1.3.37-3, apache1-base +%webapp_unregister apache %{_webapp} + +%triggerin -- apache < 2.2.0, apache-base +%webapp_register httpd %{_webapp} + +%triggerun -- apache < 2.2.0, apache-base +%webapp_unregister httpd %{_webapp} + +%triggerin -- lighttpd +%webapp_register lighttpd %{_webapp} + +%triggerun -- lighttpd +%webapp_unregister lighttpd %{_webapp} + +%files +%defattr(644,root,root,755) +%doc demo.html +%dir %attr(750,root,http) %{_sysconfdir} +%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf +%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/httpd.conf +%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/lighttpd.conf +%{_appdir} + +%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) +%changelog +* %{date} PLD Team <[email protected]> +All persons listed below can be reached at <cvs_login>@pld-linux.org + +$Log$ +Revision 1.1 2010/03/07 18:03:40 glen +- add ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
