2006-01-08 17:15:17 +00:00
|
|
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
|
|
|
|
Name: clearsilver
|
2007-03-28 18:04:33 +00:00
|
|
|
Version: 0.10.4
|
|
|
|
Release: 1%{?dist}
|
2006-01-08 17:15:17 +00:00
|
|
|
Summary: Fast and powerful HTML templating system
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: Neotonic ClearSilver Software License
|
|
|
|
URL: http://www.clearsilver.net/
|
|
|
|
Source0: http://www.clearsilver.net/downloads/%{name}-%{version}.tar.gz
|
2006-03-13 18:36:56 +00:00
|
|
|
Patch0: %{name}-0.10.3-fedora.patch
|
2006-01-08 17:15:17 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: zlib-devel
|
2007-03-28 18:04:33 +00:00
|
|
|
BuildRequires: httpd-devel
|
2006-01-08 17:15:17 +00:00
|
|
|
Provides: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description
|
|
|
|
ClearSilver is a fast, powerful, and language-neutral HTML template
|
|
|
|
system. In both static content sites and dynamic HTML applications,
|
|
|
|
it provides a separation between presentation code and application
|
|
|
|
logic which makes working with your project easier. The design of
|
|
|
|
ClearSilver began in 1999, and evolved during its use at onelist.com,
|
|
|
|
egroups.com, and Yahoo! Groups. Today many other projects and
|
|
|
|
websites are using it.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: ClearSilver development package
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides needed files to develop extensions
|
|
|
|
to ClearSilver.
|
|
|
|
|
|
|
|
%package -n python-%{name}
|
|
|
|
Summary: Python interface to the ClearSilver HTML templating system
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: python-devel >= 2.1
|
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python-%{name}
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%package -n perl-%{name}
|
|
|
|
Summary: Perl interface to the ClearSilver HTML templating system
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: perl
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
Provides: %{name}-perl = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n perl-%{name}
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%package -n ruby-%{name}
|
|
|
|
Summary: Ruby interface to the ClearSilver HTML templating system
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: ruby
|
|
|
|
BuildRequires: ruby-devel
|
|
|
|
Provides: %{name}-ruby = %{version}-%{release}
|
2006-06-01 19:13:26 +00:00
|
|
|
%define ruby_sitearchdir %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')
|
|
|
|
%define ruby_sitelibdir %(ruby -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]')
|
2006-01-08 17:15:17 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%description -n ruby-%{name}
|
|
|
|
%{summary}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%package -n java-%{name}
|
|
|
|
Summary: Java interface to the ClearSilver HTML templating system
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: java-devel
|
|
|
|
Provides: %{name}-java = %{version}-%{release}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%description -n java-%{name}
|
|
|
|
%{summary}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
|
|
|
touch configure
|
|
|
|
sed -i 's|/neo/opt/bin/python|%{__python}|' python/examples/*/*.py
|
2006-03-17 17:52:25 +00:00
|
|
|
sed -i 's|PYTHON_SITE = @PYTHON_SITE@|PYTHON_SITE = %{python_sitearch}|' rules.mk.in
|
2006-01-08 17:15:17 +00:00
|
|
|
find python/examples -type f | xargs chmod -x
|
|
|
|
|
|
|
|
%build
|
|
|
|
# java and ruby does not build on x86_64
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%configure \
|
|
|
|
--with-java=%{_libdir}/jvm/java \
|
|
|
|
--with-python=%{__python} \
|
|
|
|
--disable-csharp
|
|
|
|
%else
|
|
|
|
%configure \
|
|
|
|
--with-python=%{__python} \
|
|
|
|
--disable-java \
|
|
|
|
--disable-ruby \
|
|
|
|
--disable-csharp
|
|
|
|
%endif
|
|
|
|
cd perl && %{__perl} Makefile.PL INSTALLDIRS=vendor && cd ..
|
|
|
|
make %{?_smp_mflags} OPTIMIZE="$RPM_OPT_FLAGS"
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
|
|
|
|
chmod -R u+w $RPM_BUILD_ROOT/*
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
install -dm 755 $RPM_BUILD_ROOT%{_libdir}/java
|
|
|
|
mv $RPM_BUILD_ROOT%{_libdir}{,/java}/libclearsilver-jni.so
|
|
|
|
mv $RPM_BUILD_ROOT%{_libdir}/clearsilver.jar \
|
|
|
|
$RPM_BUILD_ROOT%{_libdir}/java/clearsilver-%{version}.jar
|
|
|
|
chmod 644 $RPM_BUILD_ROOT%{_libdir}/java/clearsilver-%{version}.jar
|
|
|
|
ln -s clearsilver-%{version}.jar $RPM_BUILD_ROOT%{_libdir}/java/clearsilver.jar
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc CS_LICENSE INSTALL LICENSE README
|
2007-03-28 18:04:33 +00:00
|
|
|
%{_bindir}/cs
|
2006-01-08 17:15:17 +00:00
|
|
|
%{_bindir}/cstest
|
2007-03-28 18:04:33 +00:00
|
|
|
%{_bindir}/cs_static.cgi
|
2006-01-08 17:15:17 +00:00
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-, root, root, 0755)
|
|
|
|
%doc CS_LICENSE LICENSE
|
|
|
|
%{_includedir}/ClearSilver/
|
|
|
|
%{_libdir}/libneo_*.a
|
|
|
|
|
|
|
|
%files -n python-clearsilver
|
|
|
|
%doc CS_LICENSE LICENSE
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README.python python/examples/
|
|
|
|
%{python_sitearch}/neo_cgi.so
|
|
|
|
|
|
|
|
%files -n perl-clearsilver
|
|
|
|
%doc CS_LICENSE LICENSE
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{perl_vendorarch}/auto/ClearSilver/
|
|
|
|
%{perl_vendorarch}/ClearSilver.pm
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%files -n ruby-clearsilver
|
|
|
|
%doc CS_LICENSE LICENSE
|
|
|
|
%defattr(-,root,root,-)
|
2006-06-01 19:13:26 +00:00
|
|
|
%{ruby_sitearchdir}/hdf.so
|
|
|
|
%{ruby_sitelibdir}/neo.rb
|
2006-01-08 17:15:17 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%ifarch %{ix86} ppc
|
|
|
|
%files -n java-clearsilver
|
|
|
|
%doc CS_LICENSE LICENSE
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/java/*clearsilver*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2007-03-28 18:04:33 +00:00
|
|
|
* Wed Mar 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.4-1
|
|
|
|
- Update to 0.10.4
|
|
|
|
|
2006-12-09 11:04:55 +00:00
|
|
|
* Sat Dec 9 2006 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.3-5
|
|
|
|
- Rebuild for python 2.5
|
|
|
|
|
2006-08-28 17:15:52 +00:00
|
|
|
* Mon Aug 28 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.3-4
|
|
|
|
- Rebuild for Fedora Extras 6
|
|
|
|
|
2006-06-01 19:13:26 +00:00
|
|
|
* Thu Jun 1 2006 Paul Howarth <paul@city-fan.org> - 0.10.3-4
|
|
|
|
- ruby subpackage fix: use ruby_sitearchdir and ruby_sitelibdir
|
|
|
|
|
2006-03-17 17:52:25 +00:00
|
|
|
* Fri Mar 17 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.3-3
|
|
|
|
- fix for x86_64
|
|
|
|
|
2006-03-13 18:36:56 +00:00
|
|
|
* Mon Mar 13 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.3-1
|
|
|
|
- release 0.10.3
|
|
|
|
|
2006-02-13 18:22:17 +00:00
|
|
|
* Mon Feb 13 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.2-3
|
|
|
|
- Rebuild for Fedora Extras 5
|
|
|
|
|
2006-01-08 17:15:17 +00:00
|
|
|
* Fri Jan 6 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.2-2
|
|
|
|
- Rebuild with disable-ruby, disable-java for any arch other than i386
|
|
|
|
- hardcoded version in Patch0
|
|
|
|
- extra line in prep-section
|
|
|
|
- license files in all subpackages
|
|
|
|
|
|
|
|
* Thu Dec 15 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.2-1
|
|
|
|
- Rebuild for 0.10.2
|
|
|
|
|
|
|
|
* Tue Nov 29 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10.1-1
|
|
|
|
- Rebuild for Fedora Extras
|
|
|
|
|
|
|
|
* Sun Jul 31 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.10.1-0.1
|
|
|
|
- 0.10.1, PIC issues fixed upstream.
|
|
|
|
|
|
|
|
* Sun May 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.9.14-0.3
|
|
|
|
- Rebuild for FC4.
|
|
|
|
- Rename subpackages to $foo-clearsilver.
|
|
|
|
|
|
|
|
* Mon Apr 25 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.9.14-0.2
|
|
|
|
- Build as PIC, fixes Ruby and Java builds on FC4.
|
|
|
|
- More parallel make fixing.
|
|
|
|
|
|
|
|
* Fri Apr 8 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.9.14-0.1
|
|
|
|
- First build.
|