Newer
Older
# threads
# values: pthreads, none
%define threads pthreads
Tinny Ng
committed
Summary: Xerces-C++ validating XML parser
Name: xerces-c
URL: http://xml.apache.org/xerces-c/
Source0: %{name}-src_%{tarversion}.tar.gz
Copyright: Apache
Group: Libraries
BuildRoot: %{_tmppath}/%{name}-root
Prefix: /usr
%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.
The parser provides high performance, modularity, and scalability. Source
code, samples and API documentation are provided with the parser. For
portability, care has been taken to make minimal use of templates, no RTTI,
and minimal use of #ifdefs.
%package devel
Requires: xerces-c = %{version}
Group: Development/Libraries
Tinny Ng
committed
Summary: Header files for Xerces-C++ validating XML parser
%description devel
Tinny Ng
committed
Header files you can use to develop XML applications with 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 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.
%prep
%setup -q -n %{name}-src_%{tarversion}
%build
export XERCESCROOT=$RPM_BUILD_DIR/%{name}-src_%{tarversion}
Tinny Ng
committed
cd $XERCESCROOT/src/xercesc
./runConfigure -plinux -cgcc -xg++ -minmem -nsocket -tnative -r%{threads} -P%{prefix}
make
Tinny Ng
committed
cd $XERCESCROOT/samples
./runConfigure -plinux -cgcc -xg++
make
%install
export XERCESCROOT=$RPM_BUILD_DIR/%{name}-src_%{tarversion}
Tinny Ng
committed
cd $XERCESCROOT/src/xercesc
make PREFIX=$RPM_BUILD_ROOT%{prefix} install
ln -sf %{prefix}/lib/libxerces-c.so.26 $RPM_BUILD_ROOT%{prefix}/lib/libxerces-c.so
mkdir -p $RPM_BUILD_ROOT%{prefix}/bin
Tinny Ng
committed
#we don't want obj directory
install `find $XERCESCROOT/bin -type f -maxdepth 1` $RPM_BUILD_ROOT%{prefix}/bin
mkdir -p $RPM_BUILD_ROOT%{prefix}/share/%{name}
Tinny Ng
committed
cp -a $XERCESCROOT/samples $RPM_BUILD_ROOT%{prefix}/share/%{name}
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(755,root,root)
Tinny Ng
committed
%{prefix}/bin/*
%{prefix}/lib/libxerces-c.so*
PeiYong Zhang
committed
%{prefix}/lib/libxerces-depdom.so*
%files devel
%defattr(-,root,root)
%{prefix}/include/xercesc
%{prefix}/share/%{name}/samples
Tinny Ng
committed
%files doc
%defattr(-,root,root)
Tinny Ng
committed
%changelog
* Fri Jun 6 2003 Tuan Hoang <tqhoang@bigfoot.com>
- updated for new Xerces-C filename and directory format
- fixed date format in changelog section
* Fri Mar 14 2003 Tinny Ng <tng@ca.ibm.com>
* Wed Dec 18 2002 Albert Strasheim <albert@stonethree.com>
- added symlink to libxerces-c.so in lib directory
Tinny Ng
committed
* Fri Dec 13 2002 Albert Strasheim <albert@stonethree.com>
- added seperate doc package
- major cleanups
* Tue Sep 03 2002 <thomas@linux.de>
- fixed missing DESTDIR in Makefile.util.submodule
* Mon Sep 02 2002 <thomas@linux.de>
- Initial build.