Error Buddy

Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.

If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.

corestack/ libxslt-1.1.14/ libxslt.spec.in [1.6]
001 Summary: Library providing the Gnome XSLT engine
002 Name: libxslt
003 Version: @VERSION@
004 Release: 1
005 License: MIT
006 Group: Development/Libraries
007 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
008 BuildRoot: %{_tmppath}/%{name}-%{version}-root
009 URL: http://xmlsoft.org/XSLT/
010 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@
011 BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@
012 BuildRequires: python python-devel
013 BuildRequires: libxml2-python
014 BuildRequires: libgcrypt-devel
015 Prefix: %{_prefix}
016 Docdir: %{_docdir}
017 
018 %description
019 This C library allows to transform XML files into other XML files
020 (or HTML, text, ...) using the standard XSLT stylesheet transformation
021 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_VERSION@
022 installed. The xsltproc command is a command line interface to the XSLT engine
023 
024 %package devel
025 Summary: Libraries, includes, etc. to embed the Gnome XSLT engine
026 Group: Development/Libraries
027 Requires: libxslt = %{version}
028 Requires: libxml2-devel >= 2.5.6
029 Requires: libgcrypt-devel
030 
031 %description devel
032 This C library allows to transform XML files into other XML files
033 (or HTML, text, ...) using the standard XSLT stylesheet transformation
034 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_VERSION@
035 installed.
036 
037 %package python
038 Summary: Python bindings for the libxslt library
039 Group: Development/Libraries
040 Requires: libxslt = %{version}
041 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@
042 Requires: libxml2-python >= @LIBXML_REQUIRED_VERSION@
043 Requires: %{_libdir}/python%(echo `python -c "import sys; print sys.version[0:3]"`)
044 
045 %description python
046 The libxslt-python package contains a module that permits applications
047 written in the Python programming language to use the interface
048 supplied by the libxslt library to apply XSLT transformations.
049 
050 This library allows to parse sytlesheets, uses the libxml2-python
051 to load and save XML and HTML files. Direct access to XPath and
052 the XSLT transformation context are possible to extend the XSLT language
053 with XPath functions written in Python.
054 
055 %prep
056 %setup -q
057 
058 %build
059 %configure
060 make
061 gzip -9 ChangeLog
062 
063 %install
064 rm -fr %{buildroot}
065 
066 %makeinstall
067 
068 %clean
069 rm -fr %{buildroot}
070 
071 %post
072 /sbin/ldconfig
073 
074 %postun
075 /sbin/ldconfig
076 
077 %files
078 %defattr(-, root, root)
079 
080 %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
081 %doc doc/*.html doc/html doc/tutorial doc/tutorial2 doc/*.gif
082 %doc doc/EXSLT
083 %doc %{_mandir}/man1/xsltproc.1*
084 %{_libdir}/lib*.so.*
085 %{prefix}/bin/xsltproc
086 
087 %files devel
088 %defattr(-, root, root)
089 
090 %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
091 %doc doc/libxslt-api.xml
092 %doc doc/libxslt-refs.xml
093 %doc doc/EXSLT/libexslt-api.xml
094 %doc doc/EXSLT/libexslt-refs.xml
095 %doc %{_mandir}/man3/libxslt.3*
096 %doc %{_mandir}/man3/libexslt.3*
097 %{_libdir}/lib*.so
098 %{_libdir}/*a
099 %{_libdir}/*.sh
100 %{prefix}/share/aclocal/libxslt.m4
101 %{prefix}/include/*
102 %{prefix}/bin/xslt-config
103 %{_libdir}/pkgconfig/libxslt.pc
104 %{_libdir}/pkgconfig/libexslt.pc
105 
106 %files python
107 %defattr(-, root, root)
108 
109 %doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES
110 %{_libdir}/python*/site-packages/libxslt.py
111 %{_libdir}/python*/site-packages/libxsltmod*
112 %doc python/TODO
113 %doc python/libxsltclass.txt
114 %doc python/tests/*.py
115 %doc python/tests/*.xml
116 %doc python/tests/*.xsl
117 
118 %changelog
119 * @RELDATE@ Daniel Veillard <veillard@redhat.com>
120 - upstream release @VERSION@ see http://xmlsoft.org/XSLT/news.html
121 
122 * Sun Nov  2 2003 Daniel Veillard <veillard@redhat.com>
123 - cleanup, removal of the deprecated breakpoint library and
124   automated libxml2 dependancy level in the generated spec file.
125 
126 * Wed Oct 23 2002 Daniel Veillard <veillard@redhat.com>
127 - revamped the spec file, cleaned up some rpm building problems
128 
129 * Wed Sep  4 2002 Daniel Veillard <veillard@redhat.com>
130 
131 - library paths fixed for x86-64
132 
133 * Fri Feb  8 2002 Daniel.Veillard <veillard@redhat.com>
134 
135 - added the python module
136 - changed the Licence to MIT
137 
138 * Sat Nov 10 2001 Daniel.Veillard <daniel@veillard.com>
139 
140 - cleaned up the specfile
141 
142 * Mon Jan 22 2001 Daniel.Veillard <daniel@veillard.com>
143 
144 - created based on libxml2 spec file
145 

Powered by Lucene and the LXR engine.