From c61dec2891acc647673be4399409d16f5c03aef4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 9 May 2010 08:07:56 +0200 Subject: import tora-2.1.0-1 --- tora.spec | 165 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 tora.spec (limited to 'tora.spec') diff --git a/tora.spec b/tora.spec new file mode 100644 index 0000000..cc58b1d --- /dev/null +++ b/tora.spec @@ -0,0 +1,165 @@ +%ifarch ppc ppc64 +%define oraclever 10.2.0.2 +%else +%define oraclever 11.1.0.7 +%endif + +%ifarch x86_64 +# "client64" is only on 11.1 and x86_64, (10.2 use client) +%define oraclelib %{_libdir}/oracle/%{oraclever}/client64/lib +%define oracleinc %{_includedir}/oracle/%{oraclever}/client64 +%else +%define oraclelib %{_libdir}/oracle/%{oraclever}/client/lib +%define oracleinc %{_includedir}/oracle/%{oraclever}/client +%endif + + +Summary: Toolkit for Oracle +Name: tora +Version: 2.1.0 +Release: 1%{?dist} +URL: http://tora.sourceforge.net +Group: Development/Databases +License: GPLv2 + +Source: %{name}-%{version}.tar.gz + +Patch0: %{name}-2.1.0.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: desktop-file-utils +BuildRequires: postgresql-devel +BuildRequires: oracle-instantclient-devel = %{oraclever} +BuildRequires: oracle-instantclient-sqlplus = %{oraclever} +BuildRequires: qt-devel >= 4.3.0 qscintilla-devel +BuildRequires: perl cmake openssl-devel glib2-devel + +Requires: qt-mysql qt-postgresql + + +%description +TOra - Toolkit for Oracle + +TOra is supported for running with an Oracle 8.1.7 or newer +client installation. It has been verified to work with Oracle 10g and 11g. + +This RPM is build to work with Oracle client %{oraclever}. + +TOra also supports PostgreSQL and MySQL. + +TOra is developed by a community of Open Source developers. The original +(pre 1.3.15) development was done by Henrik Johnson of Quest Software, Inc. + +The homepage for the TOra project is http://tora.sourceforge.net. If you +encounter problems you can find both mailinglists and bugtracking tools +from this page. + +See the README file + +%prep +%setup -q + +%patch0 -p0 -b .orig + +cat >%{name}.desktop < /dev/null || : +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : +if [ -x %{_bindir}/gtk-update-icon-cache ]; then + %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +fi + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi +update-desktop-database &> /dev/null || : + + +%clean +%{__rm} -rf "${RPM_BUILD_ROOT}" + + +%changelog +* Fri Sep 25 2009 Remi Collet 2.1.0-1 +- Update + +* Sun May 10 2009 Remi Collet 2.0.0-3.fc11.remi +- F11 build with gcc44 patch + +* Wed Jan 07 2009 Remi Collet 2.0.0-2.fc10.remi +- PowerPC build againt Oracle 10.2 + +* Tue Jan 06 2009 Remi Collet 2.0.0-1.fc10.remi +- Fedora 10 build + +* Tue Oct 7 2008 Michael Mraka 2.0.0-0.3041svn +- changed to cmake driven build for 2.0.0 version +- built against oracle-instantclient + +* Mon Jun 29 2005 Nathan Neulinger +- standardize on a single tora spec file + + -- cgit