2006-12-27 21:42:37 +00:00
|
|
|
%{!?javabuild:%define javabuild 1}
|
|
|
|
%{!?utils:%define utils 1}
|
|
|
|
%{!?gcj_support:%define gcj_support 1}
|
|
|
|
|
2010-01-21 18:37:39 +00:00
|
|
|
%global majorversion 1.5
|
|
|
|
|
2006-12-27 21:42:37 +00:00
|
|
|
Summary: Geographic Information Systems Extensions to PostgreSQL
|
|
|
|
Name: postgis
|
2010-03-11 19:05:46 +00:00
|
|
|
Version: 1.5.1
|
2011-02-09 16:10:33 +00:00
|
|
|
Release: 2%{?dist}
|
2008-05-29 21:07:04 +00:00
|
|
|
License: GPLv2+
|
2006-12-27 21:42:37 +00:00
|
|
|
Group: Applications/Databases
|
2010-02-04 19:39:59 +00:00
|
|
|
Source0: http://postgis.refractions.net/download/%{name}-%{version}.tar.gz
|
|
|
|
Source2: http://www.postgis.org/download/%{name}-%{version}.pdf
|
2006-12-27 21:42:37 +00:00
|
|
|
Source4: filter-requires-perl-Pg.sh
|
|
|
|
URL: http://postgis.refractions.net/
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
2009-07-06 04:22:12 +00:00
|
|
|
BuildRequires: postgresql-devel >= 8.2, proj-devel, geos-devel >= 3.1.1, byacc, proj-devel, flex, sinjdoc, java, java-devel, ant
|
2010-01-20 20:42:54 +00:00
|
|
|
BuildRequires: gtk2-devel, libxml2-devel
|
2009-07-06 04:22:12 +00:00
|
|
|
Requires: postgresql >= 8.2, geos >= 3.1.1, proj
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
PostGIS adds support for geographic objects to the PostgreSQL object-relational
|
|
|
|
database. In effect, PostGIS "spatially enables" the PostgreSQL server,
|
|
|
|
allowing it to be used as a backend spatial database for geographic information
|
|
|
|
systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS
|
|
|
|
follows the OpenGIS "Simple Features Specification for SQL" and has been
|
|
|
|
certified as compliant with the "Types and Functions" profile.
|
|
|
|
|
2009-06-18 19:44:03 +00:00
|
|
|
%package docs
|
|
|
|
Summary: Extra documentation for PostGIS
|
|
|
|
Group: Applications/Databases
|
|
|
|
%description docs
|
|
|
|
The postgis-docs package includes PDF documentation of PostGIS.
|
|
|
|
|
2006-12-27 21:42:37 +00:00
|
|
|
%if %javabuild
|
|
|
|
%package jdbc
|
|
|
|
Summary: The JDBC driver for PostGIS
|
|
|
|
Group: Applications/Databases
|
2008-05-29 21:07:04 +00:00
|
|
|
License: LGPLv2+
|
2009-12-03 14:21:52 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}, postgresql-jdbc
|
2010-01-20 20:29:52 +00:00
|
|
|
BuildRequires: ant >= 0:1.6.2, junit >= 0:3.7, postgresql-jdbc
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%if %{gcj_support}
|
|
|
|
BuildRequires: gcc-java
|
2009-04-24 09:13:04 +00:00
|
|
|
BuildRequires: java-1.5.0-gcj-devel
|
2008-01-05 11:12:07 +00:00
|
|
|
Requires(post): %{_bindir}/rebuild-gcj-db
|
|
|
|
Requires(postun): %{_bindir}/rebuild-gcj-db
|
2006-12-27 21:42:37 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description jdbc
|
|
|
|
The postgis-jdbc package provides the essential jdbc driver for PostGIS.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %utils
|
|
|
|
%package utils
|
|
|
|
Summary: The utils for PostGIS
|
|
|
|
Group: Applications/Databases
|
2009-12-03 14:21:52 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}, perl-DBD-Pg
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%description utils
|
|
|
|
The postgis-utils package provides the utilities for PostGIS.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%define __perl_requires %{SOURCE4}
|
|
|
|
|
|
|
|
%prep
|
2010-02-04 19:39:59 +00:00
|
|
|
%setup -q -n %{name}-%{version}
|
2009-06-18 19:44:03 +00:00
|
|
|
# Copy .pdf file to top directory before installing.
|
|
|
|
cp -p %{SOURCE2} .
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%build
|
2010-01-06 10:41:06 +00:00
|
|
|
%configure --with-gui
|
2009-07-30 23:01:56 +00:00
|
|
|
#make %{?_smp_mflags} LPATH=`pg_config --pkglibdir` shlib="%{name}.so"
|
|
|
|
make LPATH=`pg_config --pkglibdir` shlib="%{name}.so"
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%if %javabuild
|
2010-02-04 19:39:59 +00:00
|
|
|
export BUILDXML_DIR=%{_builddir}/%{name}-%{version}/java/jdbc
|
2007-01-03 01:14:05 +00:00
|
|
|
JDBC_VERSION_RPM=`rpm -ql postgresql-jdbc| grep 'jdbc2.jar$'|awk -F '/' '{print $5}'`
|
2008-01-05 11:12:07 +00:00
|
|
|
sed 's/postgresql.jar/'${JDBC_VERSION_RPM}'/g' $BUILDXML_DIR/build.xml > $BUILDXML_DIR/build.xml.new
|
|
|
|
mv -f $BUILDXML_DIR/build.xml.new $BUILDXML_DIR/build.xml
|
|
|
|
pushd java/jdbc
|
|
|
|
ant
|
|
|
|
popd
|
2006-12-27 21:42:37 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %utils
|
|
|
|
make -C utils
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
install -d %{buildroot}%{_libdir}/pgsql/
|
|
|
|
install -d %{buildroot}%{_datadir}/pgsql/contrib/
|
|
|
|
install -m 644 *.sql %{buildroot}%{_datadir}/pgsql/contrib/
|
2010-01-20 20:29:52 +00:00
|
|
|
install -m 755 loader/shp2pgsql loader/shp2pgsql-gui %{buildroot}%{_bindir}/
|
2006-12-27 21:42:37 +00:00
|
|
|
rm -f %{buildroot}%{_datadir}/*.sql
|
|
|
|
|
2008-08-11 18:56:44 +00:00
|
|
|
if [ "%{_libdir}" = "/usr/lib64" ] ; then
|
2010-01-21 18:37:39 +00:00
|
|
|
mv %{buildroot}%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/postgis.sql %{buildroot}%{_datadir}/pgsql/contrib/postgis-64.sql
|
|
|
|
mv %{buildroot}%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/postgis_upgrade_13_to_15.sql %{buildroot}%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/postgis_upgrade_13_to_15-64.sql
|
|
|
|
mv %{buildroot}%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/postgis_upgrade_14_to_15.sql %{buildroot}%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/postgis_upgrade_14_to_15-64.sql
|
2008-08-11 18:56:44 +00:00
|
|
|
fi
|
|
|
|
|
2006-12-27 21:42:37 +00:00
|
|
|
%if %javabuild
|
|
|
|
install -d %{buildroot}%{_javadir}
|
2010-02-04 19:39:59 +00:00
|
|
|
install -m 755 java/jdbc/%{name}-%{version}.jar %{buildroot}%{_javadir}
|
2006-12-27 21:42:37 +00:00
|
|
|
%if %{gcj_support}
|
|
|
|
aot-compile-rpm
|
|
|
|
%endif
|
|
|
|
strip %{buildroot}/%{_libdir}/gcj/%{name}/*.jar.so
|
2007-07-03 06:41:57 +00:00
|
|
|
%endif
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%if %utils
|
|
|
|
install -d %{buildroot}%{_datadir}/%{name}
|
2010-01-20 20:29:52 +00:00
|
|
|
install -m 755 utils/*.pl %{buildroot}%{_datadir}/%{name}
|
2006-12-27 21:42:37 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
2007-07-03 06:41:57 +00:00
|
|
|
%if %javabuild
|
|
|
|
%if %gcj_support
|
2006-12-27 21:42:37 +00:00
|
|
|
%post -p %{_bindir}/rebuild-gcj-db
|
|
|
|
%postun -p %{_bindir}/rebuild-gcj-db
|
2007-07-03 06:41:57 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2009-07-06 04:22:12 +00:00
|
|
|
%doc COPYING CREDITS NEWS TODO README.%{name} doc/html loader/README.* doc/%{name}.xml doc/ZMSgeoms.txt
|
2006-12-27 21:42:37 +00:00
|
|
|
%attr(755,root,root) %{_bindir}/*
|
2009-07-06 04:22:12 +00:00
|
|
|
%attr(755,root,root) %{_libdir}/pgsql/postgis-*.so
|
2006-12-27 21:42:37 +00:00
|
|
|
%{_datadir}/pgsql/contrib/*.sql
|
2010-01-21 18:37:39 +00:00
|
|
|
%{_datadir}/pgsql/contrib/%{name}-%{majorversion}/*.sql
|
2006-12-27 21:42:37 +00:00
|
|
|
|
|
|
|
%if %javabuild
|
|
|
|
%files jdbc
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc java/jdbc/COPYING_LGPL java/jdbc/README
|
2010-02-04 19:39:59 +00:00
|
|
|
%attr(755,root,root) %{_javadir}/%{name}-%{version}.jar
|
2006-12-27 21:42:37 +00:00
|
|
|
%if %{gcj_support}
|
|
|
|
%dir %{_libdir}/gcj/%{name}
|
|
|
|
%{_libdir}/gcj/%{name}/*.jar.so
|
|
|
|
%{_libdir}/gcj/%{name}/*.jar.db
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %utils
|
|
|
|
%files utils
|
2010-01-20 20:29:52 +00:00
|
|
|
%defattr(755,root,root)
|
2006-12-27 21:42:37 +00:00
|
|
|
%doc utils/README
|
2009-06-18 19:44:03 +00:00
|
|
|
%dir %{_datadir}/%{name}/
|
2010-01-20 20:29:52 +00:00
|
|
|
%{_datadir}/%{name}/test_estimation.pl
|
|
|
|
%{_datadir}/%{name}/profile_intersects.pl
|
|
|
|
%{_datadir}/%{name}/test_joinestimation.pl
|
|
|
|
%{_datadir}/%{name}/create_undef.pl
|
|
|
|
%{_datadir}/%{name}/%{name}_proc_upgrade.pl
|
|
|
|
%{_datadir}/%{name}/%{name}_restore.pl
|
|
|
|
%{_datadir}/%{name}/new_postgis_restore.pl
|
|
|
|
%{_datadir}/%{name}/read_scripts_version.pl
|
|
|
|
%{_datadir}/%{name}/test_geography_estimation.pl
|
|
|
|
%{_datadir}/%{name}/test_geography_joinestimation.pl
|
2006-12-27 21:42:37 +00:00
|
|
|
%endif
|
|
|
|
|
2009-06-18 19:44:03 +00:00
|
|
|
%files docs
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc postgis*.pdf
|
|
|
|
|
2006-12-27 21:42:37 +00:00
|
|
|
%changelog
|
2011-02-09 16:10:33 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-03-11 19:05:46 +00:00
|
|
|
* Thu Mar 11 2010 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.5.1-1
|
|
|
|
- Update to 1.5.1
|
|
|
|
|
2010-02-04 19:39:59 +00:00
|
|
|
* Tue Jan 12 2010 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.5.0-1
|
|
|
|
- Update to 1.5.0
|
|
|
|
- Trim changelog a bit.
|
2010-01-20 20:29:52 +00:00
|
|
|
|
2010-01-06 10:41:06 +00:00
|
|
|
* Wed Jan 6 2010 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.4.1-2
|
|
|
|
- Add shp2pgsql-{cli-gui} among installed files.
|
|
|
|
|
2009-12-20 00:03:55 +00:00
|
|
|
* Sun Dec 20 2009 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.4.1-1
|
|
|
|
- Update to 1.4.1
|
|
|
|
|
2009-12-03 14:21:52 +00:00
|
|
|
* Thu Dec 03 2009 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.4.1-rc2_1.2
|
|
|
|
- Fix spec per rawhide report.
|
|
|
|
|
2009-11-30 23:32:26 +00:00
|
|
|
* Tue Dec 01 2009 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.4.1-rc2_1.1
|
|
|
|
- Update spec for rc2 changes.
|
|
|
|
|
2009-11-30 16:24:17 +00:00
|
|
|
* Mon Nov 30 2009 Devrim GUNDUZ <devrim@gunduz.org> - 1.4.1rc2-1
|
|
|
|
- Update to 1.4.1rc2
|
|
|
|
|
2009-11-23 18:48:34 +00:00
|
|
|
* Mon Nov 23 2009 Devrim GUNDUZ <devrim@gunduz.org> - 1.4.1rc1-1
|
|
|
|
- Update to 1.4.1rc1
|
|
|
|
|
2009-11-22 00:45:22 +00:00
|
|
|
* Sun Nov 22 2009 Devrim GÜNDÜZ <devrim@gunduz.org> - 1.4.0-2
|
|
|
|
- Fix spec, per bz #536860
|
|
|
|
|
2009-07-27 12:11:45 +00:00
|
|
|
* Mon Jul 27 2009 Devrim GUNDUZ <devrim@gunduz.org> - 1.4.0-1
|
|
|
|
- Update to 1.4.0
|
|
|
|
|
2009-07-26 19:14:21 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0rc1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-06 04:22:12 +00:00
|
|
|
* Mon Jul 6 2009 Devrim GUNDUZ <devrim@gunduz.org> - 1.4.0rc1-1
|
|
|
|
- Update to 1.4.0rc1
|
|
|
|
- Fix spec for 1.4
|