]> git.wh0rd.org - fontconfig.git/blobdiff - fontconfig.spec.in
Check also for DLL_EXPORT as indication of being built as a DLL on Win32.
[fontconfig.git] / fontconfig.spec.in
index 6722dc64fa5974d01632a7cfabcf099b6fd38df2..47e80aa58cbfe28b14870895a8a4d0867e3a4ca7 100644 (file)
@@ -42,12 +42,19 @@ will use fontconfig.
 %setup -q
 
 %build
-%configure --with-x-fonts=/usr/X11R6/lib/X11/fonts
+%configure --with-x-fonts=/usr/X11R6/lib/X11/fonts --disable-gtk-doc --disable-docs
 make %{_smp_mflags}
 
 %install
 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
-%makeinstall
+{
+  %makeinstall
+  # fontconfig is currently installing these in improper location for RPM
+  # based Linux distributions, so we remove what it installs here, and let
+  # RPM pick up the same files with 'doc' directives in the file lists as
+  # a workaround
+  rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/fontconfig
+}
 
 %clean
 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
@@ -62,6 +69,7 @@ make %{_smp_mflags}
 %postun -p /sbin/ldconfig
 
 %files
+%defattr(-, root, root)
 %doc README AUTHORS COPYING ChangeLog doc/fontconfig-*.{html,txt}
 %dir %{_sysconfdir}/fonts
 %{_sysconfdir}/fonts/fonts.conf
@@ -69,20 +77,40 @@ make %{_smp_mflags}
 %config %{_sysconfdir}/fonts/local.conf
 %{_bindir}/fc-*
 %{_libdir}/libfontconfig*.so.*
-%{_mandir}/man1/*
+%{_mandir}/man5/*
 
 %files devel
 %defattr(-, root, root)
+%doc doc/fontconfig-devel.txt doc/fontconfig-devel/*
 %dir %{_includedir}/fontconfig
 %{_includedir}/fontconfig
 %{_libdir}/*.a
 %{_libdir}/*.la
 %{_libdir}/libfontconfig.so
 %{_libdir}/pkgconfig
+%{_mandir}/man3/*
 
 %changelog
+* Fri Mar  7 2003 Mike A. Harris <mharris@redhat.com> 2.1.92-1
+- Removed man1/* and added man5/* to main package and man3/* to devel package
+- Added missing defattr(-, root, root) to main package
+- Added HTML and text development documentation to -devel subpackage
+
+* Wed Mar  5 2003 Mike A. Harris <mharris@redhat.com>
+- Added back the configure macro options --disable-docs because otherwise
+  fontconfig installs docs into /usr/share/doc/fontconfig (with no version
+  number) unconditionally, causing RPM to fail the build due to unpackaged
+  files terminate build
+
+* Wed Mar  5 2003 Mike A. Harris <mharris@redhat.com>
+- Removed commented out rpm macro define at top of spec file, replacing it with
+  a simple explanation, since rpm macros are expanded by rpm even in comments
+- Changed /usr/bin to _bindir in BuildRequires lines
+- Cleaned up rpm postinstall script, and made fc-cache use _bindir
+- Reorganized file manifest lists
+
 * Sun Mar  2 2003 Owen Taylor <otaylor@redhat.com>
 - Various improvements from Red Hat spec file
 
-* Sun Mar 2 2003 Mike A. Harris <mharris@redhat.com> 2.1.90-0.1
+* Sun Mar  2 2003 Mike A. Harris <mharris@redhat.com>
 - Initial changelog entry