auto-import changelog data from unixODBC-1.8.13-2.src.rpm
Wed Feb 28 2001 Trond Eivind Glomsrd <teg@redhat.com> - rebuild Tue Nov 28 2000 Trond Eivind Glomsrd <teg@redhat.com> - 1.8.13 Tue Oct 10 2000 Trond Eivind Glomsrd <teg@redhat.com> - enable GUI now that we have KDE compiled with the standard compiler - move the applnk entries to the KDE package
This commit is contained in:
parent
fc5859ae62
commit
d1bb7590b6
@ -1 +1 @@
|
|||||||
unixODBC-1.8.12.tar.gz
|
unixODBC-1.8.13.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
cbd336f24048e1000874452cd13054c2 unixODBC-1.8.12.tar.gz
|
732338e03ab52a7382968ef2a0f6dd51 unixODBC-1.8.13.tar.gz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Summary: A complete ODBC Driver Manager for Linux
|
Summary: A complete ODBC Driver Manager for Linux
|
||||||
Name: unixODBC
|
Name: unixODBC
|
||||||
Version: 1.8.12
|
Version: 1.8.13
|
||||||
Release: 2
|
Release: 2
|
||||||
Copyright: LGPL
|
License: LGPL
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: http://www.unixODBC.org/%{name}-%{version}.tar.gz
|
Source: http://www.unixODBC.org/%{name}-%{version}.tar.gz
|
||||||
Source1: odbcinst.ini
|
Source1: odbcinst.ini
|
||||||
@ -10,6 +10,7 @@ Source2: ODBCConfig.desktop
|
|||||||
Source3: DataManager.desktop
|
Source3: DataManager.desktop
|
||||||
URL: http://www.unixODBC.org/
|
URL: http://www.unixODBC.org/
|
||||||
Conflicts: iodbc
|
Conflicts: iodbc
|
||||||
|
BuildPrereq: kdelibs-devel qt-devel libmng-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -34,13 +35,13 @@ Install unixODBC if you'd like to access databases through ODBC drivers.
|
|||||||
If you want to develop programs that will access data through ODBC,
|
If you want to develop programs that will access data through ODBC,
|
||||||
you'll also need to install the unixODBC-devel (this) package.
|
you'll also need to install the unixODBC-devel (this) package.
|
||||||
|
|
||||||
#%package kde
|
%package kde
|
||||||
#Summary: KDE DriverManager components for ODBC
|
Summary: KDE DriverManager components for ODBC
|
||||||
#Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
#requires: qt >= 2.1
|
requires: qt >= 2.1
|
||||||
|
|
||||||
#%description kde
|
%description kde
|
||||||
#Components for the ODBCConfig and DataManager (KDE) Components of unixODBC.
|
Components for the ODBCConfig and DataManager (KDE) Components of unixODBC.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -52,7 +53,7 @@ export QTDIR=
|
|||||||
# clean up old moc files
|
# clean up old moc files
|
||||||
(cd ODBCConfig && rm -f mclass*.cpp)
|
(cd ODBCConfig && rm -f mclass*.cpp)
|
||||||
(cd DataManager && rm -f mclass*.cpp)
|
(cd DataManager && rm -f mclass*.cpp)
|
||||||
%configure --with-gnu-ld=yes --enable-threads=yes
|
%configure --with-gnu-ld=yes --enable-threads=yes --enable-gui=yes
|
||||||
make all
|
make all
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -77,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README COPYING AUTHORS ChangeLog NEWS INSTALL doc
|
%doc README COPYING AUTHORS ChangeLog NEWS INSTALL doc
|
||||||
%config %{_sysconfdir}/*
|
%config %{_sysconfdir}/odbc*
|
||||||
%{_libdir}/libodbcinst.so.1*
|
%{_libdir}/libodbcinst.so.1*
|
||||||
%{_libdir}/libodbc.so.1*
|
%{_libdir}/libodbc.so.1*
|
||||||
%{_libdir}/libodbccr.so.1*
|
%{_libdir}/libodbccr.so.1*
|
||||||
@ -107,13 +108,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/*.la
|
%{_libdir}/*.la
|
||||||
%{_libdir}/*.a
|
%{_libdir}/*.a
|
||||||
|
|
||||||
#%files kde
|
%files kde
|
||||||
#%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
#%{_bindir}/ODBCConfig
|
%{_bindir}/ODBCConfig
|
||||||
#%{_bindir}/DataManager
|
%{_bindir}/DataManager
|
||||||
|
/etc/X11/applnk/System/*
|
||||||
|
|
||||||
#%post kde -p /sbin/ldconfig
|
%post kde -p /sbin/ldconfig
|
||||||
#%postun kde -p /sbin/ldconfig
|
%postun kde -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
@ -121,6 +123,17 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Tue Nov 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
|
- 1.8.13
|
||||||
|
|
||||||
|
* Tue Oct 10 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
|
- enable GUI now that we have KDE compiled with the standard
|
||||||
|
compiler
|
||||||
|
- move the applnk entries to the KDE package
|
||||||
|
|
||||||
* Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
|
* Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
- add the missing shared libs to the non-devel package
|
- add the missing shared libs to the non-devel package
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user