Summary: The zlib compression and decompression library. Name: zlib Version: 1.1.4 Release: 3 Group: System Environment/Libraries Source: ftp://ftp.info-zip.org/pub/infozip/zlib/zlib-%{version}.tar.gz Patch0: zlib-1.1.4-make-test.patch URL: http://www.gzip.org/zlib/ License: BSD Prefix: %{_prefix} BuildRoot: %{_tmppath}/%{name}-%{version}-root %description Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs. %package devel Summary: Header files and libraries for Zlib development. Group: Development/Libraries Requires: zlib = %{version} %description devel The zlib-devel package contains the header files and libraries needed to develop programs that use the zlib compression and decompression library. %prep %setup -q %patch0 -p1 -b .make-test %build CFLAGS="$RPM_OPT_FLAGS -fPIC" ./configure --shared --prefix=%{_prefix} make test # now build the static lib CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} make test %install rm -rf ${RPM_BUILD_ROOT} mkdir -p ${RPM_BUILD_ROOT}%{_prefix} CFLAGS="$RPM_OPT_FLAGS" ./configure --shared --prefix=%{_prefix} make install prefix=${RPM_BUILD_ROOT}%{_prefix} CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} make install prefix=${RPM_BUILD_ROOT}%{_prefix} install -m644 zutil.h ${RPM_BUILD_ROOT}%{_includedir}/zutil.h mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man3 install -m644 zlib.3 ${RPM_BUILD_ROOT}%{_mandir}/man3 if [ "%{_prefix}/lib" != "%{_libdir}" ]; then mkdir -p ${RPM_BUILD_ROOT}%{_libdir} mv ${RPM_BUILD_ROOT}%{_prefix}/lib/* ${RPM_BUILD_ROOT}%{_libdir} rmdir ${RPM_BUILD_ROOT}%{_prefix}/lib fi %clean rm -rf ${RPM_BUILD_ROOT} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root) %doc README %{_libdir}/libz.so.* %files devel %defattr(-,root,root) %doc ChangeLog algorithm.txt minigzip.c example.c %{_libdir}/*.a %{_libdir}/*.so %{_includedir}/* %{_mandir}/man3/zlib.3* %changelog * Thu May 23 2002 Tim Powers - automated rebuild * Fri Apr 26 2002 Jakub Jelinek 1.1.4-2 - remove glibc patch, it is no longer needed (zlib uses gcc -shared as it should) - run tests and only build the package if they succeed * Thu Apr 25 2002 Trond Eivind Glomsrød 1.1.4-1 - 1.1.4 * Wed Jan 30 2002 Trond Eivind Glomsrød 1.1.3-25.7 - Fix double free * Sun Aug 26 2001 Trond Eivind Glomsrød 1.1.3-24 - Add example.c and minigzip.c to the doc files, as they are listed as examples in the README (#52574) * Mon Jun 18 2001 Trond Eivind Glomsrød - Updated URL - Add version dependency for zlib-devel - s/Copyright/License/ * Wed Feb 14 2001 Trond Eivind Glomsrød - bumped version number - this is the old version without the performance enhancements * Fri Sep 15 2000 Florian La Roche - add -fPIC for shared libs (patch by Fritz Elfert) * Thu Sep 7 2000 Jeff Johnson - on 64bit systems, make sure libraries are located correctly. * Thu Aug 17 2000 Jeff Johnson - summaries from specspo. * Thu Jul 13 2000 Prospector - automatic rebuild * Sun Jul 02 2000 Trond Eivind Glomsrød - rebuild * Tue Jun 13 2000 Jeff Johnson - FHS packaging to build on solaris2.5.1. * Wed Jun 07 2000 Trond Eivind Glomsrød - use %%{_mandir} and %%{_tmppath} * Fri May 12 2000 Trond Eivind Glomsrød - updated URL and source location - moved README to main package * Mon Feb 7 2000 Jeff Johnson - compress man page. * Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 5) * Wed Sep 09 1998 Cristian Gafton - link against glibc * Mon Jul 27 1998 Jeff Johnson - upgrade to 1.1.3 * Fri May 08 1998 Prospector System - translations modified for de, fr, tr * Wed Apr 08 1998 Cristian Gafton - upgraded to 1.1.2 - buildroot * Tue Oct 07 1997 Donnie Barnes - added URL tag (down at the moment so it may not be correct) - made zlib-devel require zlib * Thu Jun 19 1997 Erik Troan - built against glibc