123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- Summary: A CSS2 parsing library
- Summary: CSS2 をパースするためのライブラリ
- Name: libcroco
- Version: 0.6.2
- Release: 1%{?_dist_release}
- License: LGPL
- Group: System Environment/Libraries
- Source: %{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Patch0: libcroco-0.6.1-multilib.patch
- Requires: glib2 >= 2.10
- Requires: libxml2 >= 2.4.23
- BuildRequires: pkgconfig >= 0.8
- BuildRequires: glib2-devel >= 2.10
- BuildRequires: pango-devel >= 1.16
- BuildRequires: libxml2-devel >= 2.4.23
- BuildRequires: libgnomeui-devel
- %description
- CSS2 parsing and manipulation library for GNOME
- %package devel
- Summary: Libraries and include files for developing with libcroco.
- Group: Development/Libraries
- Requires: %{name} = %{version}
- Requires: pkgconfig >= 0.8
- Requires: glib2-devel >= 2.10
- Requires: libxml2 >= 2.4.23
- Requires: libxml2-devel >= 2.4.23
- Requires: libgnomeui-devel
- %description devel
- This package provides the necessary development libraries and include
- files to allow you to develop with libcroco.
- %prep
- %setup -q -n libcroco-%{version}
- %patch0 -p1 -b .multilib
- %build
- :%configure --enable-seleng=yes --enable-layeng=yes
- make
- %install
- rm -rf $RPM_BUILD_ROOT
- # create file that the new redhat debuginfo stuff demands
- touch $RPM_BUILD_DIR/libcroco-%{version}/debugfiles.list
- %makeinstall
- # Clean out files that should not be part of the rpm.
- # This is the recommended way of dealing with it for RH8
- rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
- rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-, root, root)
- %doc AUTHORS COPYING COPYING.LIB ChangeLog NEWS README TODO
- %{_bindir}/csslint-0.6
- %{_libdir}/*.so.*
- %files devel
- %defattr(-, root, root)
- %{_libdir}/*.so
- %{_includedir}/libcroco-0.6
- %{_bindir}/croco-0.6-config
- %{_libdir}/pkgconfig/libcroco-0.6.pc
- %changelog
- * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.2-1
- - new upstream release
- * Wed Sep 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.1-1
- - applied new versioning policy
- - spec in UTF-8
- * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.1-0vl1
- - initial build for Vine Linux
- * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.6.1-2.1
- - rebuild
- * Tue May 23 2006 Matthias Clasen <mclasen@redhat.com> - 0.6.1-2
- - Make config script a pkg-config wrapper to fix multilib conflict
- * Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.6.1-1
- - Update to 0.6.1
- - Drop upstreamed patches
- * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-6.2.1
- - bump again for double-long bug on ppc(64)
- * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-6.2
- - rebuilt for new gcc4.1 snapshot and glibc changes
- * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- - rebuilt
- * Sat Oct 15 2005 Florian La Roche <laroche@redhat.com>
- - link shared lib against -lglib-2.0 and -lxml2
- * Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> - 0.6.0-5
- - Rebuild with gcc4
- * Wed Sep 22 2004 Matthias Clasen <mclasen@redhat.com> - 0.6.0-4
- - Move croco-config to the devel package
- * Mon Sep 20 2004 Matthias Clasen <mclasen@redhat.com> - 0.6-3
- - Don't memset() stack variables
- * Tue Aug 31 2004 Matthias Clasen <mclasen@redhat.com> - 0.6-2
- - Add missing ldconfig calls (#131279)
- * Fri Jul 30 2004 Matthias Clasen <mclasen@redhat.com> - 0.6-1
- - Update to 0.6
- * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- - rebuilt
- * Sat Apr 10 2004 Warren Togami <wtogami@redhat.com>
- - BR and -devel req libgnomeui-devel
- * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
- - rebuilt
- * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- - rebuilt
- * Tue Jan 27 2004 Jonathan Blandford <jrb@redhat.com> 0.4.0-1
- - new version
- * Wed Aug 13 2003 Jonathan Blandford <jrb@redhat.com> 0.3.0-1
- - initial import into the tree. Based on the spec file in the package
|