123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- %define clutter_gst_version 1.5
- %define clutter_gst_release 1%{?_dist_release}
- Name: clutter-gst
- Version: %{clutter_gst_version}.4
- Release: %{clutter_gst_release}
- Summary: ClutterMedia interface to GStreamer
- Group: Development/Languages
- License: LGPLv2+
- URL: http://www.clutter-project.org
- Source0: http://www.clutter-project.org/sources/%{name}/1.5/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- BuildRequires: clutter-devel gstreamer-plugins-base-devel gstreamer-devel
- BuildRequires: gobject-introspection-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- This package contains a video texture actor and an audio player object for
- use with clutter
- %package devel
- Summary: Clutter-gst development environment
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: clutter-devel gstreamer-devel gstreamer-plugins-base-devel
- %description devel
- Header files and libraries for building a extension library for the
- clutter-gst
- %prep
- %setup -q
- %build
- %configure --enable-introspection=yes
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc AUTHORS COPYING README
- %{_libdir}/libclutter-gst-1.0.so.*
- %{_libdir}/gstreamer-0.10/libgstclutter.so
- %{_libdir}/girepository-1.0/*.typelib
- %{_datadir}/gtk-doc/html/clutter-gst
- %exclude %{_libdir}/libclutter-gst-1.0.la
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/*
- %{_libdir}/pkgconfig/clutter-gst-1.0.pc
- %{_libdir}/libclutter-gst-1.0.so
- %{_datadir}/gir-1.0/*.gir
- %changelog
- * Sat Apr 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.4-1
- - new upstream release
- * Sat Jan 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.6-1
- - new upstream release
- * Thu Nov 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.4-1
- - new upstream release
- * Wed Oct 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.2-1
- - new upstream release
- * Sat Oct 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
- - new upstream release
- * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.14-2
- - rebuild with cogl-1.8.0
- * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.14-1
- - new upstream release
- * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.12-1
- - new upstream release
- * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-2
- - rebuild with rpm-4.8.1 for pkg-config file
- * Wed Mar 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-1
- - new upstream release
- * Sat Jan 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.0-1
- - build for Vine Linux
- * Wed Jul 29 2009 Bastien Nocera <bnocera@redhat.com> 0.10.0-1
- - Update to 0.10.0
- * Sat Jul 25 2009 Bastien Nocera <bnocera@redhat.com> 0.9.0-1
- - Update to 0.9.0
- * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Fri Jan 23 2009 Allisson Azevedo <allisson@gmail.com> 0.8.0-3
- - Rebuild
- * Fri Sep 12 2008 Allisson Azevedo <allisson@gmail.com> 0.8.0-2
- - Rebuild against new gstreamer-devel
- * Sat Sep 6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.0-1
- - Update to 0.8.0
- * Fri Feb 22 2008 Allisson Azevedo <allisson@gmail.com> 0.6.1-1
- - Update to 0.6.1
- * Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.0-2
- - Autorebuild for GCC 4.3
- * Mon Sep 3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.0-1
- - Update to 0.4.0
- * Sun May 13 2007 Allisson Azevedo <allisson@gmail.com> 0.1.1-2
- - INSTALL removed from docs
- - fix make install for keeping timestamps
- - changed license for LGPL
- - Fix requires/buildrequires
- * Fri Apr 13 2007 Allisson Azevedo <allisson@gmail.com> 0.1.1-1
- - Initial RPM release
|