Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

19 commits

Author SHA1 Message Date
Fedora Release Engineering
a19a8aff57 dist-git conversion 2010-07-29 15:59:22 +00:00
Bill Nottingham
1ead403cbd Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:34:49 +00:00
Jesse Keating
3149f844db Initialize branch F-11 for xmms-cdread 2009-04-15 08:09:32 +00:00
1e9c6746f5 Solve the x86_64-redhat-linux-gnu configure target error 2009-03-03 22:50:15 +00:00
Jesse Keating
6ba5f0d8cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-26 10:16:20 +00:00
c3233fb3b0 - Fix license tag. 2008-08-12 01:24:39 +00:00
Jesse Keating
d45dfa5861 - Autorebuild for GCC 4.3 2008-02-19 07:21:38 +00:00
Joost Soeterbroek
4e0097a27d - rebuild for Fedora Extras 6 2006-08-30 20:12:59 +00:00
Ville Skyttä
7f9fb04d47 http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild 2006-08-27 21:17:57 +00:00
Joost Soeterbroek
2d55e0c560 - bumped release to stay in sync with FC-4 2006-04-13 16:43:34 +00:00
Joost Soeterbroek
bed77daf3d - changed Requires xmms -> xmms-libs 2006-04-08 07:03:11 +00:00
Joost Soeterbroek
16c51f944b x86_64 fixes 2006-03-05 10:00:28 +00:00
Joost Soeterbroek
f18d3da49b added {%dist} after release and added libtool --finish 2006-03-04 14:38:30 +00:00
Joost Soeterbroek
55bfc61b74 Rebuild for Fedora Extras 5 2006-03-01 17:07:38 +00:00
Jeremy Katz
aa63c9d541 - rebuild on all arches 2005-05-22 23:53:12 +00:00
da3b1f9bba mass release bump for packages not rebuilt after FC-3-split 2005-04-06 22:13:53 +00:00
Matthias Saou
979a3113c7 Mass letter "x"," y" and "z" update, one or more apply :
- Drop epoch: 0
- Remove %{epoch} requirements in sub-packages
- Remove trailing white spaces
- Keep consistent between spaces and tabs
2005-03-05 20:07:09 +00:00
7187a1ba6d Bump release, strip off fedora.us prefix and dist tag. 2004-12-10 22:03:13 +00:00
gafton
71ad988555 Fix braindead typo from the original import 2004-11-24 05:09:28 +00:00
4 changed files with 40916 additions and 37 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: xmms-cdread
# $Id$
NAME := xmms-cdread
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Rootx && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

40869
xmms-cdread-x86_64.patch Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,59 +1,90 @@
%define xmmsdep %(rpm -q --qf "%%{epoch}:%%{version}" xmms-devel)
%define xmmsinputdir %(xmms-config --input-plugin-dir)
Summary: Digital audio CD input plugin for XMMS
Name: xmms-cdread
Version: 0.14
Release: 0.fdr.4.a.2
Epoch: 0
License: GPL
Release: 16%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.xmms.org/
Source: ftp://ftp.stack.nl/pub/users/willem/xmms-cdread-0.14a.tar.gz
Patch1: xmms-cdread-shuffle.patch
Requires: xmms = %xmmsdep
BuildRequires: gtk+-devel glib-devel xmms-devel
Patch2: xmms-cdread-x86_64.patch
Requires: xmms-libs
BuildRequires: gtk+-devel glib-devel xmms-devel automake libtool
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
#---------------------------------------------------------------------
%description
XMMS is a multimedia (Ogg Vorbis, CDs) player for the X Window System
with an interface similar to Winamp's. XMMS supports playlists and
streaming content and has a configurable interface.
streaming content and has a configurable interface.
This is the input plugin needed to play audio CDs digitally, i.e. without a
connecting cable between the CD drive and sound card.
#---------------------------------------------------------------------
%prep
%setup -q -n %{name}-%{version}a
%patch1 -p1 -b .shuffle
%patch1 -p1
%patch2 -p1
#---------------------------------------------------------------------
%build
autoreconf -i -f
%configure --libdir=%{xmmsinputdir}
perl -pi -e 's/^(CFLAGS.*)-O2(.*)/$1\$\(RPM_OPT_FLAGS\)$2/' Makefile
make %{?_smp_mflags}
#---------------------------------------------------------------------
%install
rm -rf $RPM_BUILD_ROOT
mkdir $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
#---------------------------------------------------------------------
%clean
rm -rf $RPM_BUILD_ROOT
#---------------------------------------------------------------------
%files
%files
%defattr(-,root,root)
%doc AUTHORS COPYING NEWS README TODO
%{xmmsinputdir}/libcdread.so
%exclude %{xmmsinputdir}/libcdread.la
#---------------------------------------------------------------------
%changelog
* Tue Mar 03 2009 Robert Scheck <robert@fedoraproject.org> - 0.14-16
- Solve the x86_64-redhat-linux-gnu configure target error
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Mon Aug 11 2008 Jason L Tibbitts III <tibbs@math.uh.edu> - 0.14-14
- Fix license tag.
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.14-13
- Autorebuild for GCC 4.3
* Wed Aug 30 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-12
- rebuild for Fedora Extras 6
* Thu Apr 13 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-11
- bumped release to stay in sync with FC-4
* Sat Apr 8 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-10
- changed Requires xmms -> xmms-libs
* Sun Mar 5 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-9
- x86_64 fixes
* Sat Mar 4 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-8
- added libtool --finish
- added dist after release
* Wed Mar 1 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.14-7
- rebuild for Fedora Extras 5
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.14-6.a
- rebuild on all arches
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
- rebuilt
* Mon Nov 24 2003 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.14-0.fdr.4.a
- Add XMMS 1.2.8 compat.patch from Mandrake Contrib,
removes calls to private playlist_generate_shuffle_list().