cdrdao-vl.spec 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. Name: cdrdao
  2. Version: 1.2.2
  3. Release: 4%{?_dist_release}
  4. Summary: Writes audio CD-Rs in disk-at-once (DAO) mode.
  5. Summary(ja): ディスクアットワンス(DAO)モードで、audioをCD-Rへ書き込む事が出来ます。
  6. Source: %{name}-%{version}.tar.bz2
  7. Patch0: cdrdao-1.2.2-sigc.patch
  8. License: GPL
  9. Group: Applications/Multimedia
  10. URL: http://cdrdao.sourceforge.net/
  11. BuildRequires: libgnomeuimm-devel
  12. BuildRequires: libao-devel
  13. BuildRequires: pccts >= 1.33mr33
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. %description
  18. Cdrdao records audio CD-Rs in disk-at-once (DAO) mode, based on a
  19. textual description of the CD contents. Recording in DAO mode writes
  20. the complete disc (lead-in, one or more tracks, and lead-out) in a
  21. single step.
  22. %description -l ja
  23. Cdrdaoはディスクアットワンス(DAO)モードでaudioをCD-Rへ記録します。
  24. CD中身の原文の説明に基づきます。DAOモードのレコーディングは、一回のステップに完全なディスク(lead-in、一つ以上のトラックとlead-out)を書きます。
  25. %package -n gcdmaster
  26. Summary: Graphical front end to cdrdao for composing audio CDs
  27. Group: Applications/Multimedia
  28. Requires: %{name} = %{version}
  29. Requires(post): shared-mime-info
  30. Requires(postun): shared-mime-info
  31. %description -n gcdmaster
  32. gcdmaster allows the creation of toc-files for cdrdao and can control
  33. the recording process. Its main application is the composition of
  34. audio CDs from one or more audio files. It supports PQ-channel editing,
  35. entry of meta data like ISRC codes/CD-TEXT and non destructive cut of
  36. the audio data.
  37. %prep
  38. %setup -q
  39. %patch0 -p0 -b .sigc
  40. %build
  41. %configure --with-pcctsinc=%{_includedir}/pccts \
  42. --without-lame \
  43. --without-mp3-support
  44. %__make
  45. %install
  46. rm -rf $RPM_BUILD_ROOT
  47. %makeinstall
  48. %post -n gcdmaster
  49. %{_bindir}/update-mime-database %{_datadir}/mime &> /dev/null
  50. %postun -n gcdmaster
  51. %{_bindir}/update-mime-database %{_datadir}/mime &> /dev/null
  52. %clean
  53. rm -rf $RPM_BUILD_ROOT
  54. %files
  55. %defattr(-,root,root)
  56. %{_bindir}/cdrdao
  57. %{_datadir}/cdrdao/*
  58. %{_bindir}/toc2*
  59. %{_bindir}/cue2toc
  60. %{_mandir}/man1/*.gz
  61. %doc AUTHORS COPYING CREDITS ChangeLog README NEWS README.PlexDAE README.Win32
  62. %files -n gcdmaster
  63. %defattr(-,root,root)
  64. %doc AUTHORS COPYING README
  65. %{_bindir}/gcdmaster
  66. %{_datadir}/application-registry/*
  67. %{_datadir}/applications/*
  68. %{_datadir}/gcdmaster
  69. %{_datadir}/mime-info/*
  70. %{_datadir}/mime/packages/*
  71. %{_datadir}/pixmaps/*
  72. %changelog
  73. * Tue Apr 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-4
  74. - add --without-mp3-support
  75. * Tue Mar 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-3
  76. - add --without-lame
  77. - remove BR: libmad-devel
  78. * Sat Oct 4 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.2-2vl5
  79. - added BuildRequires: libao-devel, libmad-devel
  80. * Fri Sep 19 2008 Shu KONNO <owa@bg.wakwak.com> 1.2.2-1vl5
  81. - applied new versioning policy, spec in utf-8
  82. - added cdrdao-1.2.2-sigc.patch from mdv
  83. * Tue Sep 11 2007 Adam Williamson <awilliamson@mandriva.com> 1.2.2-5mdv2008.0
  84. + Revision: 84331
  85. - add patch0 to fix compilation issue caused by use of old sigc++ API
  86. * Sat Nov 4 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.2-0vl1
  87. - update to 1.2.2
  88. - fixed BuildRequires and Prereq
  89. * Mon May 22 2006 TOSHI <vine-jp@mail.goo.ne.jp> 1.1.9-0vl1
  90. - update to 1.1.9
  91. - added Requires -> libstdc++2_10,libstdc++2_10-compat
  92. * Mon Jun 10 2002 Tomoya TAKA <taka@vinelinux.org> 1.1.5-7vl2
  93. - separate gcdmaster into subpackage
  94. - add /etc/profile.d/gcdmaster.{sh,csh} to exec gcdmaster on C locale
  95. # end of file