123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- Summary: Cairo - multi-platform 2D graphics library.
- Summary(ja): Cairo - マルチプラットフォーム 2D グラフィックスライブラリ
- Name: cairo
- Version: 1.12.8
- Release: 1%{?_dist_release}
- License: LGPL/MPL
- Group: System Environment/Libraries
- Source0: http://cairographics.org/releases/%{name}-%{version}.tar.xz
- # don't use serverside gradients, most drivers don't handle those and are
- # really slow, should workaround performances issues for ati, nouveau and nvidia
- # https://launchpad.net/ubuntu/maverick/+source/cairo/1.10.0-1ubuntu1
- Patch1: cairo-1.10.0-dont_use_server_side_gradients.patch
- URL: http://cairographics.org/
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: pkgconfig
- BuildRequires: pixman-devel
- BuildRequires: glib2-devel
- BuildRequires: libpng-devel
- BuildRequires: freetype2-devel
- BuildRequires: fontconfig-devel
- BuildRequires: libX11-devel
- BuildRequires: libXrender-devel
- BuildRequires: gtk-doc
- BuildRequires: librsvg2-devel
- BuildRequires: mesa-libGL-devel
- BuildRequires: mesa-libEGL-devel
- BuildConflicts: XOrg-compat70-devel
- %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
- %description
- Cairo provides anti-aliased vector-based rendering for X. Paths
- consist of line segments and cubic splines and can be rendered at any
- width with various join and cap styles. All colors may be specified
- with optional translucence (opacity/alpha) and combined using the
- extended Porter/Duff compositing algebra as found in the X Render
- Extension.
- Cairo exports a stateful rendering API similar in spirit to the path
- construction, text, and painting operators of PostScript, (with the
- significant addition of translucence in the imaging model). When
- complete, the API is intended to support the complete imaging model of
- PDF 1.4.
- Cairo relies on the Xc library for backend rendering. Xc provides an
- abstract interface for rendering to multiple target types. As of this
- writing, Xc allows Cairo to target X drawables as well as generic
- image buffers. Future backends such as PostScript, PDF, and perhaps
- OpenGL are currently being planned.
- %package -n compat32-%{name}
- Summary: Cairo - multi-platform 2D graphics library.
- Summary(ja): Cairo - マルチプラットフォーム 2D グラフィックスライブラリ
- Group: System Environment/Libraries
- Requires: %{name} = %{version}
- %description -n compat32-%{name}
- Cairo provides anti-aliased vector-based rendering for X. Paths
- consist of line segments and cubic splines and can be rendered at any
- width with various join and cap styles. All colors may be specified
- with optional translucence (opacity/alpha) and combined using the
- extended Porter/Duff compositing algebra as found in the X Render
- Extension.
- Cairo exports a stateful rendering API similar in spirit to the path
- construction, text, and painting operators of PostScript, (with the
- significant addition of translucence in the imaging model). When
- complete, the API is intended to support the complete imaging model of
- PDF 1.4.
- Cairo relies on the Xc library for backend rendering. Xc provides an
- abstract interface for rendering to multiple target types. As of this
- writing, Xc allows Cairo to target X drawables as well as generic
- image buffers. Future backends such as PostScript, PDF, and perhaps
- OpenGL are currently being planned.
- %package devel
- Summary: Development files for Cairo library.
- Summary(ja): Cairo ライブラリの開発用ファイル
- Group: Development/Libraries
- Provides: lib%{name}-devel = %{version}-%{release}
- Requires: %{name} = %{version}
- Requires: libpng-devel
- Requires: freetype2-devel
- Requires: fontconfig-devel
- Requires: libX11-devel
- Requires: libXrender-devel
- Requires: pixman-devel
- Requires: glib2-devel
- Requires: mesa-libEGL-devel
- %description devel
- Development files for Cairo library.
- %package tools
- Summary: Development tools for cairo
- Group: Development/Tools
- %description tools
- Cairo is a 2D graphics library designed to provide high-quality display
- and print output.
- This package contains tools for working with the cairo graphics library.
- * cairo-trace: Record cairo library calls for later playback
- %prep
- %setup -q
- %patch1 -p1 -b .dont-use-server-side-gradients
- %build
- %configure --disable-static \
- --enable-gtk-doc \
- --enable-xlib \
- --enable-freetype \
- --enable-ps \
- --enable-pdf \
- --enable-svg \
- --enable-tee \
- --enable-gobject \
- --enable-gl
- %ifarch x86_64
- cp libtool libtool.old
- ldpath="/lib64 /usr/lib64 /usr/lib /usr/X11R6/lib64 /usr/X11R6/lib"
- sed "s|^sys_lib_search_path_spec=.*|sys_lib_search_path_spec=$ldpath|" libtool.old \
- > libtool
- rm libtool.old
- %endif
- make
- %install
- rm -rf $RPM_BUILD_ROOT
- %makeinstall
- rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %post -n compat32-%{name} -p /sbin/ldconfig
- %postun -n compat32-%{name} -p /sbin/ldconfig
- %files
- %defattr(644,root,root,755)
- %doc AUTHORS BUGS COPYING COPYING-* ChangeLog NEWS README
- %{_libdir}/lib*.so.*
- %files devel
- %defattr(644,root,root,755)
- %{_libdir}/lib*.so
- #{_libdir}/lib*.la
- %{_includedir}/*
- %{_libdir}/pkgconfig/*.pc
- #{_libdir}/lib*.a
- %{_datadir}/gtk-doc/html/cairo
- %files tools
- %defattr(-,root,root,-)
- %{_bindir}/cairo-trace
- %{_bindir}/cairo-sphinx
- %{_libdir}/cairo
- %if %{build_compat32}
- %files -n compat32-%{name}
- %defattr(644,root,root,755)
- %{_libdir}/lib*.so.*
- %endif
- %changelog
- * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.8-1
- - new upstream release
- * Fri Nov 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.6-1
- - new upstream release
- * Sat Oct 13 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.4-1
- - new upstream release
- * Sun Jul 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.2-2
- - add Requires: mesa-libEGL-devel
- * Sat Jul 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.2-1
- - new upstream release
- - Enable OpenGL backend
- - add BR: librsvg2-devel, mesa-libGL-devel, mesa-libEGL-devel
- * Sat Mar 31 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.0-1
- - new upstream release
- * Tue Mar 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.2-2
- - enable tee support
- - add configure options specifically
- - disable static library
- * Wed Jan 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.2-1
- - new upstream release
- - add BuildRequires: glib2-devel
- - add Requires: glib2-devel (devel package)
- * Wed Oct 13 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.0-2
- - add patch1 from ubuntu to fix performance regressions
- - don't use serverside gradients, most drivers don't handle those and are
- really slow, should workaround performances issues for ati, nouveau and nvidia
- https://launchpad.net/ubuntu/maverick/+source/cairo/1.10.0-1ubuntu1
- * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.0-1
- - new upstream release
- - add tools sub package
- * Tue Sep 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.10-3
- - add BuildRequires: fontconfig-devel
- - add Requires: fontconfig-devel (devel package)
- * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.8.10-2
- - build with rpm-4.8.1-1 for pkg-config file
- * Tue Mar 2 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.8.10-1
- - new upstream release
- * Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.8-1
- - new upstream release
- * Sat May 02 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.8.6-2
- - applied cairo-1.8.6-status-return-fix.patch from Gentoo Linux
- - added BuildRequires: gtk-doc
- * Sat Jan 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.6-1
- - new upstream release
- * Tue Nov 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.4-1
- - new upstream release
- * Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-1
- - new upstream release
- * Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.6-1
- - new upstream release
- * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.4-1
- - new upstream release
- * Wed May 28 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.6.4-3
- - add Requires: pixman-devel to -devel
- * Sun May 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.4-2
- - rebuilt with xorg-x11 7.3
- - spec in UTF-8
- * Thu May 1 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.4-1
- - new upstream release
- - removed lib*.la from devel package
- * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.14-1vl5
- - used %%{?_dist_release}
- * Thu Feb 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.14-0vl1
- - new upstream release
- * Sun Dec 9 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.12-0vl1
- - new upstream release
- * Tue Jul 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.10-0vl1
- - new upstream release
- * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.6-0vl1
- - new upstream release
- - remove BuildRequires: pango-devel, gtk2-devel
- (these are only needed for testing)
- * Sat Mar 31 2007 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 1.4.2-0vl1
- - upstream release
- - Patch30 and Patch40 is skipped (not working correctly)
- but held in src.rpm
- - add BUGS, ROADMAP to %%doc
- - add BuildRequires: pango-devel, gtk2-devel
- * Tue Oct 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-0vl2
- - rebuild without XOrg-compat70-devel
- - add BuildConflicts: XOrg-compat70-devel
- * Sun Oct 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-0vl1
- - new upstream release
- - remove unneeded Patch20 which breaks 8bpp rendering (<BTS:297>)
- * Tue Sep 19 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.2.2-0vl3
- - added Patch40 for 15bpp problem
- * Tue Sep 5 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.2.2-0vl2
- - added ad-hoc Patch30 for 16bpp problem
- * Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-0vl1
- - new upstream release
- * Sat Aug 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl1
- - new upstream release
- * Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl1
- - new upstream release
- * Sat May 20 2006 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.2-0vl4
- - added compat32- package for x86_64 architecture support
- * Sun Mar 05 2006 Shu KONNO <owa@bg.wakwak.com> 1.0.2-0vl3
- - added x86_64 architecture support
- * Sat Dec 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl2
- - add Patch20 to fix broken desktop rendering on xorg-x11-6.9
- - add X.Org 6.9.0 (6090000) to blacklist
- * Wed Oct 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
- - new upstream release
- * Tue Oct 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl5
- - update Patch10
- * Sun Oct 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl4
- - add Patch10 to use embedded bitmap font if available.
- (controllable by "embeddedbitmap" in fontconfig)
- * Thu Sep 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl3
- - rebuild with new fontconfig
- * Sun Sep 25 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl2
- - add Requires: libpng-devel, XOrg-devel, freetype2-devel
- to devel package instead of BuildRequires (typo)
- - add Japanese summaries
- * Sun Aug 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl1
- - new upstream release
- - remove libpixman dependency (which is now included in cairo)
- - obsoletes libpixman <= 0.1.6
- - add more BuildRequires
- * Sat Aug 20 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.2-0vl1
- - new upstream version
- * Sun Jul 10 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.5.1-0vl1
- - new upstream version
- - fixed License (http://cairographics.org/introduction)
- * Sun Mar 20 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.4.0-0vl1
- - new upstream version
- - include gtk-doc files
- * Sun Jan 23 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.0-0vl1
- - new upstream version
- - add Requires: libpixman
- * Mon Nov 01 2004 Satoshi MACHINO <machino@vinelinux.org> 0.2.0-0vl1
- - new upstream version (cairo-0.2.0)
- * Mon Oct 11 2004 Satoshi MACHINO <machino@vinelinux.org> 0.1.23-1vl1
- - rebuilt for VineLinux
- * Tue Jun 01 2004 Marcel Pol <mpol@mandrake.org> 0.1.23-1mdk
- - 0.1.23
- - reenable libtoolize
- * Wed May 5 2004 G魚Waschk <waschk@linux-mandrake.com> 0.1.22-1mdk
- - fix devel provides
- - drop redundant buildrequires
- - requires new pixman
- - autoconf 2.5 macro
- - New release 0.1.22
- * Fri Feb 06 2004 Marcel Pol <mpol@mandrake.org> 0.1.17-2mdk
- - build with X11
- * Sun Feb 01 2004 Marcel Pol <mpol@mandrake.org> 0.1.17-1mdk
- - 0.1.17
- - provides cairo
- - drop patch, use --disable-xlib
- - buildrequires
- - don't run libtoolize
- * Sun Dec 14 2003 Marcel Pol <mpol@mandrake.org> 0.1.13-1mdk
- - initial mandrake package
|