mapserver/mapserver.spec

432 lines
13 KiB
RPMSpec
Raw Normal View History

2007-05-11 09:50:50 +00:00
Name: mapserver
Version: 6.0.2
Release: 1%{?dist}
2007-05-11 09:50:50 +00:00
Summary: Environment for building spatially-enabled internet applications
Group: Development/Tools
License: BSD
URL: http://mapserver.gis.umn.edu
2009-12-25 16:47:21 +00:00
Source: http://download.osgeo.org/mapserver/mapserver-%{version}.tar.gz
2007-05-11 09:50:50 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: httpd
2009-02-11 16:34:12 +00:00
Requires: bitstream-vera-sans-fonts
2009-12-04 18:59:42 +00:00
BuildRequires: libXpm-devel readline-devel
2010-03-18 08:59:14 +00:00
BuildRequires: httpd-devel php-devel libxslt-devel pam-devel fcgi-devel
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: postgresql-devel mysql-devel java-devel
BuildRequires: swig > 1.3.24 java
2010-03-18 08:21:12 +00:00
BuildRequires: geos-devel proj-devel gdal-devel agg-devel cairo-devel
2007-05-11 09:50:50 +00:00
BuildRequires: php-devel freetype-devel gd-devel >= 2.0.16
BuildRequires: python-devel curl-devel zlib-devel libxml2-devel
2011-07-19 13:56:24 +00:00
BuildRequires: libjpeg-devel libpng-devel libtiff-devel fribidi-devel giflib-devel
2007-05-11 09:50:50 +00:00
%define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")
%description
Mapserver is an internet mapping program that converts GIS data to
map images in real time. With appropriate interface pages,
Mapserver can provide an interactive internet map based on
custom GIS data.
%package -n php-mapserver
Summary: PHP/Mapscript map making extensions to PHP
Group: Development/Languages
2007-05-11 21:58:53 +00:00
Requires: httpd php-gd
2007-05-11 09:50:50 +00:00
%description -n php-mapserver
The PHP/Mapscript extension provides full map customization capabilities within
the PHP scripting language.
%package perl
Summary: Perl/Mapscript map making extensions to Perl
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
2007-05-11 09:50:50 +00:00
%description perl
The Perl/Mapscript extension provides full map customization capabilities
within the Perl programming language.
%package python
Summary: Python/Mapscript map making extensions to Python
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
%description python
The Python/Mapscript extension provides full map customization capabilities
within the Python programming language.
%package java
Summary: Java/Mapscript map making extensions to Java
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
2007-05-11 21:58:53 +00:00
Requires: java-gcj-compat
2007-05-11 09:50:50 +00:00
%description java
The Java/Mapscript extension provides full map customization capabilities
within the Java programming language.
%prep
2009-12-25 16:47:21 +00:00
%setup -q
2007-05-11 09:50:50 +00:00
# fix spurious perm bits
chmod -x tests/home.png
2011-07-19 13:56:24 +00:00
chmod -x mapscript/php/php_mapscript.c
2007-05-11 09:50:50 +00:00
chmod -x mappluginlayer.c
2011-07-19 13:56:24 +00:00
chmod -x mapscript/php/mapscript_i.c
chmod -x mapscript/php/examples/test_writeshape.phtml
2007-05-11 09:50:50 +00:00
chmod -x mapscript/python/examples/*.py
chmod -x mapscript/python/tests/rundoctests.dist
2007-05-11 09:50:50 +00:00
chmod -x mapscript/perl/examples/*.pl
2011-07-19 13:56:24 +00:00
chmod -x mapscript/php/README
2007-05-11 09:50:50 +00:00
# remove fonts
# alias as symlinks
rm -rf tests/vera/Vera.ttf
rm -rf tests/vera/VeraBd.ttf
pushd tests/vera/
ln -sf /usr/share/fonts/bitstream-vera/Vera.ttf Vera.ttf
ln -sf /usr/share/fonts/bitstream-vera/VeraBd.ttf VeraBd.ttf
popd
2007-05-11 09:50:50 +00:00
%build
CFLAGS="${CFLAGS} -ldl" ; export CFLAGS
# fix a UTF-8 one
iconv -f ISO-8859-1 -t UTF-8 < \
mapscript/java/examples/QueryByAttributeUnicode.java > \
mapscript/java/examples/QueryByAttributeUnicode-tmp.java
mv -f mapscript/java/examples/QueryByAttributeUnicode-tmp.java \
mapscript/java/examples/QueryByAttributeUnicode.java
2007-05-11 09:50:50 +00:00
# fix gdal lookup
%{__sed} -i.libs -e 's|`\$GDAL_CONFIG --dep-libs`||' configure
%configure \
--with-gd \
--with-zlib \
--with-tiff \
--with-agg \
--with-experimental-png \
2007-05-11 09:50:50 +00:00
--with-freetype=%{_bindir}/freetype-config \
--with-gdal=%{_bindir}/gdal-config \
--with-ogr=%{_bindir}/gdal-config \
--with-geos=%{_bindir}/geos-config \
2010-03-18 08:21:12 +00:00
--with-cairo=yes \
2007-05-11 09:50:50 +00:00
--with-proj \
--with-wfs \
--with-wcs \
--with-sos \
2007-05-11 09:50:50 +00:00
--with-wmsclient \
--with-wfsclient \
--with-xpm \
--with-postgis=%{_bindir}/pg_config \
--with-mygis=%{_bindir}/mysql_config \
--with-curl-config=%{_bindir}/curl-config \
--with-xml2-config=%{_bindir}/xml2-config \
--with-php=`php-config --include-dir` \
--with-fribidi-config=%{_libdir}/pkgconfig/fribidi.pc \
2010-03-18 08:59:14 +00:00
--with-fastcgi=/usr \
2007-05-11 09:50:50 +00:00
--without-pdf \
--without-eppl \
--with-threads \
--enable-debug \
--disable-runpath
2010-03-18 08:21:12 +00:00
# disable pgport library lookup.
for makefile in `find . -type f -name 'Makefile'`; do
sed -i 's|-lpgport||g' $makefile
done
2007-05-11 09:50:50 +00:00
# WARNING !!!
# using %{?_smp_mflags} may break build
make
# build perl
cd mapscript/perl
perl Makefile.PL
make
# build python
cd ../python
python setup.py build
# build java
cd ../java
make interface
make
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/%{_sbindir}
mkdir -p %{buildroot}/%{_sysconfdir}/php.d
mkdir -p %{buildroot}%{_libdir}/php/modules
mkdir -p %{buildroot}/%{_bindir}
install -p -m 755 mapserv %{buildroot}/%{_sbindir}
install -p -m 755 shp2img %{buildroot}/%{_bindir}
install -p -m 755 shptree %{buildroot}/%{_bindir}
install -p -m 755 sortshp %{buildroot}/%{_bindir}
install -p -m 755 tile4ms %{buildroot}/%{_bindir}
install -p -m 755 mapscript/php/php_mapscript.so %{buildroot}/%{_libdir}/php/modules/
2007-05-11 09:50:50 +00:00
# install perl module
pushd mapscript/perl
make DESTDIR=%{buildroot} pure_vendor_install
popd
# install python module
pushd mapscript/python
python setup.py install --root %{buildroot}
popd
# install java
mkdir -p %{buildroot}%{_javadir}
install -p -m 644 mapscript/java/mapscript.jar %{buildroot}%{_javadir}/
# install php config file
mkdir -p %{buildroot}%{_sysconfdir}/php.d/
cat > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini <<EOF
; Enable %{name} extension module
extension=php_mapscript.so
EOF
# cleanup junks
for junk in {*.pod,*.bs,.packlist} ; do
find %{buildroot} -name "$junk" -exec rm -rf '{}' \;
done
# fix some exec bits
chmod 755 %{buildroot}/%{perl_vendorarch}/auto/mapscript/mapscript.so
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc README COMMITERS GD-COPYING HISTORY.TXT
%doc INSTALL MIGRATION_GUIDE.txt
2009-04-26 19:53:19 +00:00
%doc symbols tests
2007-05-11 09:50:50 +00:00
%doc fonts
%{_bindir}/shp2img
%{_bindir}/shptree
%{_bindir}/sortshp
%{_bindir}/tile4ms
%{_sbindir}/mapserv
%files -n php-mapserver
%defattr(-,root,root)
%doc mapscript/php/README
%doc mapscript/php/examples
2007-05-11 09:50:50 +00:00
%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini
%{_libdir}/php/modules/php_mapscript.so
%files perl
%defattr(-,root,root)
%doc mapscript/perl/examples
%dir %{perl_vendorarch}/auto/mapscript
%{perl_vendorarch}/auto/mapscript/*
%{perl_vendorarch}/mapscript.pm
%files python
%defattr(-,root,root)
%doc mapscript/python/README
%doc mapscript/python/examples
%doc mapscript/python/tests
%{python_sitearch}/*
%files java
%defattr(-,root,root)
%doc mapscript/java/README
%doc mapscript/java/examples
%doc mapscript/java/tests
%{_javadir}/*.jar
%changelog
* Mon Apr 16 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.2-1
- Update to 6.0.2, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-6-0-2/mapserver/HISTORY.TXT
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-06 05:19:57 +00:00
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 6.0.1-4
- Rebuild for new libpng
2011-07-21 16:34:19 +00:00
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 6.0.1-3
- Perl mass rebuild
2011-07-20 09:46:18 +00:00
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 6.0.1-2
- Perl mass rebuild
* Mon Jul 18 2011 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.1-1
- Update to 6.0.1, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-6-0-1/mapserver/HISTORY.TXT
- Fixes bz #722545
- Apply changes to spec file for new major version.
2011-06-17 13:01:34 +00:00
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 5.6.5-6
- Perl mass rebuild
* Wed Mar 23 2011 Dan Horák <dan@danny.cz> - 5.6.5-5
- rebuilt for mysql 5.5.10 (soname bump in libmysqlclient)
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.6.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sun Jan 30 2011 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.6.5-3
- Fix VeraBd symlink (trivial fix requested by Volker Fröhlich)
* Thu Jan 27 2011 Oliver Falk <oliver@linux-kernel.at> - 5.6.5-2
- Rebuild against new kerberos and new perl
* Mon Jul 26 2010 Devrim GÜNDÜZ <devrim@gunduz.org> - 5.6.5-1
- Update to 5.6.5, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-5-6-5/mapserver/HISTORY.TXT
Also fixes CVE-2010-2539, CVE-2010-2540, per bz #617301 and #617312.
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 5.6.3-3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2010-06-01 18:53:00 +00:00
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 5.6.3-2
- Mass rebuild with perl-5.12.0
* Tue Mar 23 2010 Devrim GÜNDÜZ <devrim@gunduz.org> - 5.6.3-1
- Update to 5.6.3, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-5-6-3/mapserver/HISTORY.TXT
2010-03-18 08:59:14 +00:00
* Thu Mar 18 2010 Balint Cristian <cristian.balint@gmail.com> - 5.6.1-3
- fix bz#538198
- enable fastcgi
2010-03-18 08:21:12 +00:00
* Thu Mar 18 2010 Balint Cristian <cristian.balint@gmail.com> - 5.6.1-2
- fix bz#555480
- enable cairo
* Sun Jan 10 2010 Devrim GUNDUZ <devrim@commandprompt.com> - 5.6.1-1
- Update to 5.6.1, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-5-6-1/mapserver/HISTORY.TXT
2009-12-25 16:47:21 +00:00
* Fri Dec 25 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.6.0-1
- Update to 5.6.0
2009-12-04 18:26:23 +00:00
* Fri Dec 4 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.6.0-rc1-1
- Update to 5.6.0-rc1, which includes fixes described in:
http://trac.osgeo.org/mapserver/browser/tags/rel-5-6-0-rc1/mapserver/HISTORY.TXT
* Mon Aug 31 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.4.2-1
- Update to 5.4.2, which fixes CVE-2009-0840 and various fixes
described in :
http://trac.osgeo.org/mapserver/browser/tags/rel-5-4-2/mapserver/HISTORY.TXT
2009-08-21 14:29:18 +00:00
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 5.4.1-3
- rebuilt with new openssl
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-06-17 20:34:33 +00:00
* Wed Jun 17 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.4.1-1
- Update to 5.4.1
2009-04-26 19:18:41 +00:00
* Sun Apr 26 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.4.0-1
- Update to 5.4.0
2009-04-04 21:49:19 +00:00
* Sun Apr 5 2009 Devrim GUNDUZ <devrim@commandprompt.com> - 5.2.2-1
- Update to 5.2.2 which fixes :
CVE-2009-0839, CVE-2009-0840, CVE-2009-0841, CVE-2009-0842,
CVE-2009-0843, CVE-2009-1176, CVE-2009-1177.
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2009-02-11 16:34:12 +00:00
* Wed Feb 11 2009 Balint Cristian <cristian.balint@gmail.com> - 5.2.1-6
- fix vera font requirement
2009-02-05 13:35:31 +00:00
* Thu Feb 05 2009 Balint Cristian <cristian.balint@gmail.com> - 5.2.1-5
- fix email typo
- rebuild
* Thu Jan 29 2009 Balint Cristian <cristian.balint@gmail.com> - 5.2.1-4
- email change
- rebuild against new gdal
2009-01-17 14:59:40 +00:00
* Sat Jan 03 2009 Balint Cristian <rezso@rdsor.ro> 5.2.1-3
- require external fonts
- get rid of internal fonts
* Sat Dec 07 2008 Balint Cristian <rezso@rdsor.ro> 5.2.1-2
- enable agg render engine
- enable fribidi renderer
- build require agg-devel fribidi-devel
2008-12-01 22:08:30 +00:00
* Mon Dec 01 2008 Balint Cristian <rezso@rdsor.ro> 5.2.1-1
- new stable upstream
2008-11-29 16:55:37 +00:00
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 5.2.0-2
- Rebuild for Python 2.6
* Wed Jul 23 2008 Balint Cristian <rezso@rdsor.ro> 5.2.0-1
- new 5.2 series upstream
* Thu Jul 05 2008 Balint Cristian <rezso@rdsor.ro> 5.0.3-3
- address bz#453925
2008-06-25 23:03:45 +00:00
* Thu Jun 26 2008 Devrim GUNDUZ <devrim@commandprompt.com> - 5.0.3-2
- Rebuilt against Geos 3.0.0
* Thu Jun 12 2008 Balint Cristian <rezso@rdsor.ro> 5.0.3-1
- update to 5.0.3 bugfix release
- fix some rpmlint warnings
2008-02-19 21:33:28 +00:00
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.0.2-2
- Autorebuild for GCC 4.3
2008-02-13 02:19:46 +00:00
* Sat Feb 9 2008 Devrim GUNDUZ <devrim@commandprompt.com> - 5.0.2-1
- Update to 5.0.2
* Sat Jan 5 2008 Devrim GUNDUZ <devrim@commandprompt.com> - 5.0.0-2
- Update BR for java-devel, per Patrice Dumas
* Fri Jan 4 2008 Devrim GUNDUZ <devrim@commandprompt.com> - 5.0.0-1
2008-01-05 10:43:19 +00:00
- Update to 5.0.0
- Removed patch0, since it is already in upstream.
- Updated BRs
2007-12-06 19:51:13 +00:00
* Thu Dec 06 2007 Release Engineering <rel-eng at fedoraproject dot org> - 4.10.3-3
- Rebuild for deps
* Thu Aug 30 2007 Oliver Falk <oliver@linux-kernel.at> 4.10.3-2
- Add fix to include libmapserver (in some places), instead of
libmap, that doesn't exist (anymore)
* Thu Aug 30 2007 Oliver Falk <oliver@linux-kernel.at> 4.10.3-1
- Update to fix bz#256561, CVE-2007-4542
2007-05-11 21:58:53 +00:00
* Fri May 11 2007 Balint Cristian <cbalint@redhat.com> 4.10.2-4
- update require list properly.
2007-05-11 09:50:50 +00:00
* Thu May 10 2007 Balint Cristian <cbalint@redhat.com> 4.10.2-3
- use macros if possible in spec
* Thu May 10 2007 Balint Cristian <cbalint@redhat.com> 4.10.2-2
- further fixups for inclusion
* Thu May 10 2007 Balint Cristian <cbalint@redhat.com> 4.10.2-1
- new upsream tarball (bugfix)
- further fixups for inclusion
* Tue Apr 24 2007 Balint Cristian <cbalint@redhat.com> 4.10.1-3
- further fixups for inclusion
- enable java
* Fri Mar 16 2007 Balint Cristian <cbalint@redhat.com> 4.10.1-2
- add docs
* Fri Mar 16 2007 Balint Cristian <cbalint@redhat.com> 4.10.1-1
- first package