You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xerces-c/xerces-c.spec

187 lines
5.6 KiB

Summary: Validating XML Parser
Name: xerces-c
Version: 3.0.1
Release: 7%{?dist}
License: ASL 2.0
Group: System Environment/Libraries
URL: http://xml.apache.org/xerces-c/
Source0: http://archive.apache.org/dist/xml/xerces-c/Xerces-C_3_0_1/sources/xerces-c-3.0.1.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
Xerces-C is a validating XML parser written in a portable subset of
C++. Xerces-C makes it easy to give your application the ability to
read and write XML data. A shared library is provided for parsing,
generating, manipulating, and validating XML documents. Xerces-C is
faithful to the XML 1.0 recommendation and associated standards ( DOM
1.0, DOM 2.0. SAX 1.0, SAX 2.0, Namespaces).
%package devel
Summary: Header files, libraries and development documentation for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
This package contains the header files, static libraries and development
documentation for %{name}. If you like to develop programs using %{name},
you will need to install %{name}-devel.
%package doc
Group: Documentation
Summary: Documentation for Xerces-C++ validating XML parser
%description doc
Documentation for Xerces-C++.
Xerces-C++ is a validating XML parser written in a portable subset of C++.
Xerces-C++ makes it easy to give your application the ability to read and
write XML data. A shared library is provided for parsing, generating,
manipulating, and validating XML documents.
#%package samples
#Summary: Sample applications using Xerces-C++
#Group: Applications/Text
#Requires: %{name} = %{version}-devel-%{release}
#%description samples
#Sample applications using Xerces-C++.
%prep
%setup -q
%{__perl} -pi.orig -e 's|(PREFIX.)/lib\b|$1/%{_lib}|g' ./configure ./Makefile.in
# make rpmlint happy
# changing the line ending from dos/win to unix.
# sed -i 's/\r//' doc/*.xml
# convert the documents to utf8
# iconv -f iso8859-1 -t utf-8 credits.txt > credits.utf8 && mv -f credits.{utf8,txt}
# iconv -f iso8859-1 -t utf-8 doc/feedback.xml > doc/feedback.utf8 && mv -f doc/feedback.{utf8,xml}
# iconv -f iso8859-1 -t utf-8 doc/migration.xml > doc/migration.utf8 && mv -f doc/migration.{utf8,xml}
# iconv -f iso8859-1 -t utf-8 doc/releases_archive.xml > doc/releases_archive.utf8 && mv -f doc/releases_archive.{utf8,xml}
%build
%configure
make
%install
%{__rm} -rf $RPM_BUILD_ROOT
%{__make} install DESTDIR="$RPM_BUILD_ROOT"
cd samples; make clean
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE
%{_libdir}/libxerces-c-3.*.so
%exclude %{_bindir}/CreateDOMDocument
%exclude %{_bindir}/DOMCount
%exclude %{_bindir}/DOMPrint
%exclude %{_bindir}/EnumVal
%exclude %{_bindir}/MemParse
%exclude %{_bindir}/PParse
%exclude %{_bindir}/PSVIWriter
%exclude %{_bindir}/Redirect
%exclude %{_bindir}/SAX2Count
%exclude %{_bindir}/SAX2Print
%exclude %{_bindir}/SAXCount
%exclude %{_bindir}/SAXPrint
%exclude %{_bindir}/SCMPrint
%exclude %{_bindir}/SEnumVal
%exclude %{_bindir}/StdInParse
%exclude %{_bindir}/XInclude
%exclude %{_libdir}/libxerces-c.a
%exclude %{_libdir}/libxerces-c.la
%files devel
%defattr(-,root,root,-)
%{_libdir}/libxerces-c.so
%{_libdir}/pkgconfig/xerces-c.pc
%{_includedir}/xercesc/
%exclude %{_bindir}/CreateDOMDocument
%exclude %{_bindir}/DOMCount
%exclude %{_bindir}/DOMPrint
%exclude %{_bindir}/EnumVal
%exclude %{_bindir}/MemParse
%exclude %{_bindir}/PParse
%exclude %{_bindir}/PSVIWriter
%exclude %{_bindir}/Redirect
%exclude %{_bindir}/SAX2Count
%exclude %{_bindir}/SAX2Print
%exclude %{_bindir}/SAXCount
%exclude %{_bindir}/SAXPrint
%exclude %{_bindir}/SCMPrint
%exclude %{_bindir}/SEnumVal
%exclude %{_bindir}/StdInParse
%exclude %{_bindir}/XInclude
%exclude %{_libdir}/libxerces-c.a
%exclude %{_libdir}/libxerces-c.la
%files doc
%defattr(-,root,root,-)
%doc README LICENSE NOTICE CREDITS doc samples
#%files samples
#%defattr(-,root,root,-)
#%{_datadir}/%{name}/samples
%changelog
* Thu Feb 4 2010 Jonathan Robie <jonathan.robie@redhat.com> 3.0.1-5
Corrected .spec file
* Wed Feb 3 2010 Jonathan Robie <jonathan.robie@redhat.com> 3.0.1-1
Move to Xerces 3.0.1.
16 years ago
* Thu Aug 6 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.0-5
- Fix CVE-2009-1885
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Mon Jun 30 2008 Peter Lemenkov <lemenkov@gmail.com> 2.8.0-2
- Spec cleanups ( https://bugzilla.redhat.com/show_bug.cgi?id=435132 )
17 years ago
* Sun Feb 10 2008 Peter Lemenkov <lemenkov@gmail.com> 2.8.0-1
- Ver. 2.8.0
18 years ago
* Sat Nov 25 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-6
- typo fix
* Sat Nov 25 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-5
- fixed some rpmlint warnings
* Fri Nov 24 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-4
- Added samples to docs-package
* Sat Nov 18 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-3
- improvements suggested by Aurelien Bompard
* Sat Oct 14 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-2
- Disabled package 'samples'
* Fri Oct 13 2006 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-1
- initial build for FE
* Fri Jan 06 2006 Dag Wieers <dag@wieers.com> - 2.7.0-1 - 3891/dag
- Cleaned SPEC file.
* Tue Jan 03 2006 Dries Verachtert <dries@ulyssis.org> - 2.7.0-1
- Updated to release 2.7.0.
* Thu Sep 22 2005 C.Lee Taylor <leet@leenx.co.za> 2.6.1-1
- Update to 2.6.1
- Build for FC4 32/64bit
* Sat Aug 20 2005 Che
- initial rpm release