Compare commits
19 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70ed38f665 | ||
|
|
e65018ef15 | ||
|
|
e5e2dd635b | ||
| c070aa2670 | |||
|
|
2f945303f8 | ||
| 10fb1d4ccc | |||
|
|
26683dbea6 | ||
|
|
ee2d074983 | ||
|
|
5edb5d008f | ||
|
|
59a66269b3 | ||
|
|
00a17a1f3c | ||
|
|
515cfc1214 | ||
|
|
2de28e8b37 | ||
|
|
579a0a4620 | ||
|
|
97e0eb78b7 | ||
| 154a99e333 | |||
|
|
7e20868228 | ||
| 26cd93fe8b | |||
|
|
fe12b8d5cf |
6 changed files with 1 additions and 123 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphan clean up
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
1328b75ef91d73690b3b43d74401754a xmms-cdread-0.14a.tar.gz
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- xmms-cdread-0.14a/playlist.c~ 2001-06-03 12:58:51.000000000 -0400
|
||||
+++ xmms-cdread-0.14a/playlist.c 2003-10-18 22:04:11.000000000 -0400
|
||||
@@ -161,7 +161,7 @@
|
||||
pthread_mutex_unlock(&playlist_mutex);
|
||||
|
||||
playlistwin_update_list();
|
||||
- if (regen_shuffle) playlist_generate_shuffle_list();
|
||||
+ /*if (regen_shuffle) playlist_generate_shuffle_list();*/
|
||||
if (set_info_text) mainwin_set_info_text();
|
||||
if (restart_playing)
|
||||
{
|
||||
--- xmms-cdread-0.14a/playlist.h~ 1999-10-11 05:42:53.000000000 -0400
|
||||
+++ xmms-cdread-0.14a/playlist.h 2003-10-18 22:04:49.000000000 -0400
|
||||
@@ -54,7 +54,7 @@
|
||||
gboolean playlist_load(gchar * filename);
|
||||
guint playlist_load_ins(gchar * filename, glong pos);
|
||||
GList *get_playlist(void);
|
||||
-void playlist_generate_shuffle_list(void);
|
||||
+/*void playlist_generate_shuffle_list(void);*/
|
||||
void playlist_start_get_info_thread(void);
|
||||
void playlist_stop_get_info_thread();
|
||||
void playlist_start_get_info_scan(void);
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
%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
|
||||
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
|
||||
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.
|
||||
|
||||
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
|
||||
|
||||
#---------------------------------------------------------------------
|
||||
%build
|
||||
%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
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING NEWS README TODO
|
||||
%{xmmsinputdir}/libcdread.so
|
||||
%exclude %{xmmsinputdir}/libcdread.la
|
||||
|
||||
#---------------------------------------------------------------------
|
||||
%changelog
|
||||
* 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().
|
||||
|
||||
* Sun Nov 23 2003 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.14-0.fdr.3.a
|
||||
- Set versioned XMMS dependency at built-time.
|
||||
|
||||
* Thu Aug 07 2003 Michel Alexandre Salim <salimma[AT]users.sourceforge.net> 0.fdr.2.a
|
||||
- Patch from Michael Schwendt (see below)
|
||||
- Fixed source URL
|
||||
- RPM_OPT_FLAGS fix
|
||||
|
||||
* Tue May 13 2003 Michel Alexandre Salim <salimma[AT]users.sourceforge.net> 0.fdr.1.a
|
||||
- Fixed summary
|
||||
- Packaged docs
|
||||
- Using $RPM_BUILD_ROOT
|
||||
- Unnecessary deps on automake/autoconf removed
|
||||
- make with SMP flags
|
||||
- uses xmms-config
|
||||
- ldconfig calls removed
|
||||
|
||||
* Mon May 12 2003 Michel Alexandre Salim <salimma[AT]users.sourceforge.net> 0.fdr.0.a
|
||||
- Adapted from xmms-mp3 by Dams <anvil[AT]livna.org>
|
||||
Reference in a new issue