auto-import changelog data from cdrdao-1.1.7-4.src.rpm
Wed Feb 26 2003 Harald Hoyer <harald@redhat.de> 1.1.7-4 - refined O_EXCL patch Tue Feb 25 2003 Harald Hoyer <harald@redhat.de> 1.1.7-3 - readded O_EXCL patch Tue Feb 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.7-2 - Added s390x again as newer models will have SCSI. Wed Jan 29 2003 Harald Hoyer <harald@redhat.de> 1.1.7-1 - updated to 1.1.7 Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Thu Nov 28 2002 Harald Hoyer <harald@redhat.de> 1.1.5-11 - added cdrdao-1.1.5-EXCL.patch to lock the CDROM device - more archs for scsilib (cdrtools)
This commit is contained in:
parent
e5cad36322
commit
15a1e71c36
@ -1 +1 @@
|
|||||||
cdrdao-1.1.5.src.tar.bz2
|
cdrdao-1.1.7.src.tar.bz2
|
||||||
|
57
cdrdao.spec
57
cdrdao.spec
@ -1,19 +1,21 @@
|
|||||||
Summary: Writes audio CD-Rs in disk-at-once (DAO) mode.
|
Summary: Writes audio CD-Rs in disk-at-once (DAO) mode.
|
||||||
Name: cdrdao
|
Name: cdrdao
|
||||||
Version: 1.1.5
|
Version: 1.1.7
|
||||||
Release: 10
|
Release: 4
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
URL: http://www.ping.de/sites/daneb/cdrdao.html
|
URL: http://unc.dl.sourceforge.net/sourceforge/cdrdao/cdrdao-1.1.7.src.tar.bz2
|
||||||
|
#URL: http://cdrdao.sourceforge.net/download.html
|
||||||
Source0: %{name}-%{version}.src.tar.bz2
|
Source0: %{name}-%{version}.src.tar.bz2
|
||||||
Source1: xcdrdao.desktop
|
Source1: xcdrdao.desktop
|
||||||
Patch0: cdrdao-1.1.15-endianness.patch
|
Patch0: cdrdao-1.1.15-endianness.patch
|
||||||
Patch1: cdrdao-1.1.5-c++.patch
|
#Patch1: cdrdao-1.1.5-c++.patch
|
||||||
|
Patch2: cdrdao-1.1.5-EXCL.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
BuildRequires: pccts >= 1.33mr22
|
BuildRequires: pccts >= 1.33mr22
|
||||||
|
|
||||||
# s390 has no hardware that can use this
|
# Only exclude s390
|
||||||
Excludearch: s390 s390x
|
ExcludeArch: s390
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Cdrdao records audio CD-Rs in disk-at-once (DAO) mode, based on a
|
Cdrdao records audio CD-Rs in disk-at-once (DAO) mode, based on a
|
||||||
@ -25,12 +27,28 @@ of pre-gaps, the pause areas between tracks.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p0 -b .endianness
|
%patch0 -p0 -b .endianness
|
||||||
%patch1 -p1 -b .c++
|
#%patch1 -p1 -b .c++
|
||||||
|
%patch2 -p1 -b .excl
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd scsilib/RULES
|
cd scsilib
|
||||||
for foo in gcc cc ; do ln -s i586-linux-$foo.rul ia64-linux-$foo.rul ; done
|
ln -s i686-linux-gcc.rul RULES/ia64-linux-gcc.rul
|
||||||
cd ../../
|
ln -s i686-linux-cc.rul RULES/ia64-linux-cc.rul
|
||||||
|
ln -s i686-linux-gcc.rul RULES/s390-linux-gcc.rul
|
||||||
|
ln -s i686-linux-cc.rul RULES/s390-linux-cc.rul
|
||||||
|
ln -s i686-linux-gcc.rul RULES/s390x-linux-gcc.rul
|
||||||
|
ln -s i686-linux-cc.rul RULES/s390x-linux-cc.rul
|
||||||
|
ln -s i686-linux-cc.rul RULES/ppc64-linux-cc.rul
|
||||||
|
ln -s i686-linux-gcc.rul RULES/ppc64-linux-gcc.rul
|
||||||
|
ln -s i686-linux-cc.rul RULES/x86_64-linux-cc.rul
|
||||||
|
ln -s i686-linux-gcc.rul RULES/x86_64-linux-gcc.rul
|
||||||
|
rm -f mkisofs/README.compression.zisofs-support-hpa
|
||||||
|
find . |xargs chmod a+r
|
||||||
|
find . -name \*.mk|xargs perl -pi -e 's/INSDIR=\s*lib\s*$/INSDIR=%{_lib}\n/g'
|
||||||
|
cd conf
|
||||||
|
aclocal
|
||||||
|
libtoolize --copy --force
|
||||||
|
cd ../..
|
||||||
%configure --prefix=%{_prefix}\
|
%configure --prefix=%{_prefix}\
|
||||||
--with-pcctsbin=%{_prefix}/bin \
|
--with-pcctsbin=%{_prefix}/bin \
|
||||||
--with-pcctsinc=%{_prefix}/include/pccts
|
--with-pcctsinc=%{_prefix}/include/pccts
|
||||||
@ -58,6 +76,25 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 26 2003 Harald Hoyer <harald@redhat.de> 1.1.7-4
|
||||||
|
- refined O_EXCL patch
|
||||||
|
|
||||||
|
* Tue Feb 25 2003 Harald Hoyer <harald@redhat.de> 1.1.7-3
|
||||||
|
- readded O_EXCL patch
|
||||||
|
|
||||||
|
* Tue Feb 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.7-2
|
||||||
|
- Added s390x again as newer models will have SCSI.
|
||||||
|
|
||||||
|
* Thu Jan 29 2003 Harald Hoyer <harald@redhat.de> 1.1.7-1
|
||||||
|
- updated to 1.1.7
|
||||||
|
|
||||||
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Nov 28 2002 Harald Hoyer <harald@redhat.de> 1.1.5-11
|
||||||
|
- added cdrdao-1.1.5-EXCL.patch to lock the CDROM device
|
||||||
|
- more archs for scsilib (cdrtools)
|
||||||
|
|
||||||
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
|
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
|
||||||
- rebuilt with gcc-3.2 (we hope)
|
- rebuilt with gcc-3.2 (we hope)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user