rpms/qmmp-plugins-freeworld/F-9 qmmp-filter-provides.sh, NONE, 1.1 qmmp-plugins-freeworld.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Thorsten Leemhuis thl at rpmfusion.org
Fri Aug 8 20:38:42 CEST 2008


Author: thl

Update of /cvs/free/rpms/qmmp-plugins-freeworld/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12390

Modified Files:
	.cvsignore sources 
Added Files:
	qmmp-filter-provides.sh qmmp-plugins-freeworld.spec 
Log Message:
initial import from livna


--- NEW FILE qmmp-filter-provides.sh ---
#!/bin/sh

if [ -x /usr/lib/rpm/redhat/find-provides ]; then
    FINDPROV=/usr/lib/rpm/redhat/find-provides
else
    FINDPROV=/usr/lib/rpm/find-provides
fi
      
$FINDPROV $* | sed -e '/libalsa.so/d' \
                   -e '/libffmpeg.so/d' \
                   -e '/libflac.so/d' \
                   -e '/libjack.so/d' \
                   -e '/libmad.so/d' \
                   -e '/libmpc.so/d' \
                   -e '/libvorbis.so/d'


--- NEW FILE qmmp-plugins-freeworld.spec ---
Name:		qmmp-plugins-freeworld
Version:	0.2.0
Release:	3%{?dist}
Summary:	Plugins for qmmp (Qt-based multimedia player)

Group:		Applications/Multimedia
License:	GPLv2+
URL:		http://qmmp.ylsoftware.com/index_en.html
Source:		http://qmmp.ylsoftware.com/files/qmmp-%{version}.tar.bz2
Source2:	qmmp-filter-provides.sh
%define		_use_internal_dependency_generator 0
%define		__find_provides %{_builddir}/%{buildsubdir}/qmmp-filter-provides.sh

BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root

BuildRequires:	cmake ffmpeg-devel >= 0.4.9-pre1 libmad-devel qt-devel >= 4.2
BuildRequires:	taglib-devel libcurl-devel
BuildRequires:	qmmp = %{version}
Requires:	qmmp = %{version}


%description
Qmmp is an audio-player, written with help of Qt library.
This package contains plugins needed to play MPEG (.mp3) and WMA files.


%prep
%setup -q -n qmmp-%{version}
cp %{SOURCE2} .
chmod +x qmmp-filter-provides.sh


%build
%cmake \
	-D USE_FLAC:BOOL=FALSE \
	-D USE_VORBIS:BOOL=FALSE \
	-D USE_MPC:BOOL=FALSE \
	-D USE_MODPLUG:BOOL=FALSE \
	-D USE_SNDFILE:BOOL=FALSE \
	-D USE_WAVPACK:BOOL=FALSE \
	-D USE_ALSA:BOOL=FALSE \
	-D USE_OSS:BOOL=FALSE \
	-D USE_JACK:BOOL=FALSE \
	-D USE_PULSE:BOOL=FALSE \
	-D USE_SRC:BOOL=FALSE \
	-D USE_ANALYZER:BOOL=FALSE \
	-D USE_DBUS:BOOL=FALSE \
	-D USE_SCROBBLER:BOOL=FALSE \
	-D USE_STATICON:BOOL=FALSE \
	-D USE_NOTIFIER:BOOL=FALSE \
	-D USE_QMMP_DIALOG:BOOL=FALSE \
	-D CMAKE_INSTALL_PREFIX=/usr \
	-D LIB_DIR=%{_lib} \
	./
make VERBOSE=1 %{?_smp_mflags} -C src/plugins/Input/ffmpeg
make VERBOSE=1 %{?_smp_mflags} -C src/plugins/Input/mad


%install
rm -rf %{buildroot}
make DESTDIR=%{buildroot} install -C src/plugins/Input/ffmpeg
make DESTDIR=%{buildroot} install -C src/plugins/Input/mad


%clean
rm -rf %{buildroot}


%files
%defattr(0755,root,root,0755)
%dir %{_libdir}/qmmp/Input
%{_libdir}/qmmp/Input/*.so


%post -p /sbin/ldconfig
 
%postun -p /sbin/ldconfig


%changelog
* Fri Aug 08 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.2.0-3
- rebuild

* Mon Aug 04 2008 Karel Volny <kvolny at redhat.com> 0.2.0-2
- added BuildRequires: libcurl-devel

* Thu Jul 31 2008 Karel Volny <kvolny at redhat.com> 0.2.0-1
- version bump

* Tue May 13 2008 Karel Volny <kvolny at redhat.com> 0.1.6-1
- version bump

* Sat Mar 15 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 0.1.5-3
- rebuild for new ffmpeg

* Mon Jan 21 2008 Karel Volny <kvolny at redhat.com> 0.1.5-2
- fixed permissions issue for the helper sript qmmp-filter-provides.sh

* Mon Jan 14 2008 Karel Volny <kvolny at redhat.com> 0.1.5-1
- package renamed to match conventions (from "qmmp-plugins")
- added "BuildRequires: qmmp = %%{version}"

* Mon Dec 10 2007 Karel Volny <kvolny at redhat.com> 0.1.5-1
- version bump
- simplified setting of the libraries destination

* Wed Sep 12 2007 Karel Volny <kvolny at redhat.com> 0.1.4-2
- specfile improvements (Fedora bug #280751 comment #4)

* Tue Sep 11 2007 Karel Volny <kvolny at redhat.com> 0.1.4-1
- initial release of separate plugins, as suggested in comment #1 to (Livna) bug #1631


Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	22 Jul 2008 16:54:28 -0000	1.1
+++ .cvsignore	8 Aug 2008 18:38:41 -0000	1.2
@@ -0,0 +1 @@
+qmmp-0.2.0.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	22 Jul 2008 16:54:28 -0000	1.1
+++ sources	8 Aug 2008 18:38:41 -0000	1.2
@@ -0,0 +1 @@
+3dd56fc0c9dd632572465f9eab3e4c80  qmmp-0.2.0.tar.bz2



More information about the rpmfusion-commits mailing list