123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- Summary: Icecast streaming library
- Summary(ja): Icecast ストリーミングライブラリ
- Name: libshout
- Version: 2.2.2
- Release: 2%{?_dist_release}
- Group: System Environment/Libraries
- License: LGPLv2+
- URL: http://www.icecast.org/
- Source: http://downloads.us.xiph.org/releases/libshout/libshout-%{version}.tar.gz
- Patch0: libshout-2.2.2-fix_speex.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: libogg-devel
- BuildRequires: libvorbis-devel
- BuildRequires: libtheora-devel
- BuildRequires: speex-devel
- %description
- libshout is a library for communicating with and sending data to an
- icecast server. It handles the socket connection, the timing of the
- data, and prevents most bad data from getting to the icecast server.
- %package devel
- Summary: Development files for %{name}
- Summary(ja): %{name} の開発ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: libogg-devel
- Requires: libvorbis-devel
- Requires: libtheora-devel
- Requires: speex-devel
- %description devel
- The libshout-devel package contains the header files needed for developing
- applications that send data to an icecast server. Install libshout-devel if
- you want to develop applications using libshout.
- %prep
- %setup -q
- %patch0 -p1 -b .fix_speex
- %build
- %configure --disable-static
- # clean unused-direct-shlib-dependencies
- sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make DESTDIR="$RPM_BUILD_ROOT" INSTALL="install -p " install
- find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
- rm -rf $RPM_BUILD_ROOT%{_docdir}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc COPYING NEWS README
- %{_libdir}/libshout.so.*
- %files devel
- %defattr(-,root,root,-)
- %doc examples/*.c doc/*.xml doc/*.xsl
- %{_libdir}/libshout.so
- %{_libdir}/pkgconfig/shout.pc
- %dir %{_includedir}/shout/
- %{_includedir}/shout/shout.h
- %{_datadir}/aclocal/shout.m4
- %changelog
- * Fri Sep 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.2-2
- - rebuilt with rpm-4.8.1 for pkg-config
- * Thu Oct 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-1
- - initial build for Vine Linux
- * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2.2-3
- - Autorebuild for GCC 4.3
- * Fri Dec 7 2007 kwizart < kwizart at gmail.com > - 2.2.2-2
- - Fix http://bugzilla.redhat.com/415121
- - Add disable-static
- - Don't use makeinstall macro
- - Update License field
- * Thu Sep 07 2006 Thomas Vander Stichele <thomas at apestaart dot org>
- - 2.2.2-1
- - updated to new release
- * Fri Mar 17 2006 Thomas Vander Stichele <thomas at apestaart dot org>
- - 2.2-3
- - add Requires: to -devel package
- * Fri Mar 17 2006 Thomas Vander Stichele <thomas at apestaart dot org>
- - 2.2-2
- - rebuild to please the extras repository
- * Fri Mar 10 2006 Thomas Vander Stichele <thomas at apestaart dot org>
- - 2.2-1
- - new (incompatible) version, but deps are updated
- - various cleanups
- * Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 1.0.9-4
- - rebuild on all arches
- * Fri Apr 1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.9-3
- - Include headers directory entry in -devel package.
- * Sat Feb 26 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.0.9-2
- - Remove redundant explicit /sbin/ldconfig dependency.
- * Wed Jun 04 2003 Thomas Vander Stichele <thomas at apestaart dot org>
- - 1.0.9-0.fdr.1: initial RPM release
|