vcdimager-vl.spec 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. Summary: VideoCD (pre-)mastering and ripping tool
  2. Name: vcdimager
  3. Version: 0.7.24
  4. Release: 2%{?_dist_release}
  5. License: GPLv2+
  6. Group: Applications/Multimedia
  7. URL: http://www.gnu.org/software/vcdimager/
  8. Source: ftp://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-%{version}.tar.gz
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. Requires(post): info
  13. Requires(preun): info
  14. BuildRequires: libcdio-devel >= 0.72
  15. BuildRequires: libxml2-devel >= 2.3.8
  16. BuildRequires: zlib-devel
  17. BuildRequires: pkgconfig >= 0.9
  18. BuildRequires: popt-devel
  19. %description
  20. VCDImager allows you to create VideoCD BIN/CUE CD images from MPEG
  21. files. These can be burned with cdrdao or any other program capable of
  22. burning BIN/CUE files.
  23. Also included is VCDRip which does the reverse operation, that is to
  24. rip MPEG streams from images or burned VideoCDs and to show
  25. information about a VideoCD.
  26. %package devel
  27. Summary: Header files and static library for VCDImager
  28. Group: Development/Libraries
  29. Requires: %{name} = %{version}-%{release}
  30. Requires: pkgconfig
  31. Requires: libcdio-devel
  32. %description devel
  33. VCDImager allows you to create VideoCD BIN/CUE CD images from mpeg
  34. files which can be burned with cdrdao or any other program capable of
  35. burning BIN/CUE files.
  36. This package contains the header files and a static library to develop
  37. applications that will use VCDImager.
  38. %prep
  39. %setup -q
  40. %build
  41. %configure --disable-static --disable-dependency-tracking
  42. %{__make} %{?_smp_mflags}
  43. %install
  44. %{__rm} -rf %{buildroot}
  45. %{__make} DESTDIR=%{buildroot} install INSTALL="install -p"
  46. find $RPM_BUILD_ROOT -type f -name "*.la" -exec %__rm -f {} ';'
  47. # Sometimes this file gets created... but we don't want it!
  48. %__rm -f %{buildroot}%{_infodir}/dir
  49. %clean
  50. %__rm -rf %{buildroot}
  51. %post
  52. /sbin/ldconfig
  53. for infofile in vcdxrip.info vcdimager.info vcd-info.info; do
  54. /sbin/install-info %{_infodir}/${infofile} %{_infodir}/dir 2>/dev/null || :
  55. done
  56. %preun
  57. /sbin/ldconfig
  58. if [ $1 -eq 0 ]; then
  59. for infofile in vcdxrip.info vcdimager.info vcd-info.info; do
  60. /sbin/install-info --delete %{_infodir}/${infofile} %{_infodir}/dir \
  61. 2>/dev/null || :
  62. done
  63. fi
  64. %files
  65. %defattr(-,root,root,-)
  66. %doc AUTHORS BUGS ChangeLog* COPYING FAQ NEWS README THANKS TODO
  67. %doc frontends/xml/videocd.dtd
  68. %{_bindir}/*
  69. %{_infodir}/vcdxrip.info*
  70. %{_infodir}/vcdimager.info*
  71. %{_infodir}/vcd-info.info*
  72. %{_mandir}/man1/*
  73. ## libs
  74. %{_libdir}/libvcdinfo.so.*
  75. %files devel
  76. %defattr(-,root,root,-)
  77. %doc HACKING
  78. %{_includedir}/libvcd/
  79. %{_libdir}/libvcdinfo.so
  80. %{_libdir}/pkgconfig/libvcdinfo.pc
  81. %changelog
  82. * Sat Jul 2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.7.24-2
  83. - rebuilt with libcdio-0.93.
  84. * Sun Jul 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.7.24-1
  85. - update to 0.7.24
  86. * Thu Jul 01 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.7.23-1
  87. - initial build
  88. * Sun Jan 24 2010 Nicolas Chauvet <kwizart@fedoraproject.org> - 0.7.23-13
  89. - Rebuild for libcdio
  90. * Wed Nov 25 2009 Nicolas Chauvet <kwizart@fedoraproject.org> - 0.7.23-11
  91. - Rebuild for F-12
  92. * Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.7.23-10
  93. - rebuild for new F11 features
  94. * Thu Jan 15 2009 kwizart < kwizart at gmail.com > - 0.7.23-9
  95. - Rebuild for libcdio
  96. * Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.7.23-8
  97. - Fix URL
  98. - vcdimager-devel Requires libcdio-devel
  99. - Split libs (multilibs compliance)
  100. * Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.7.23-7
  101. - merge a few bits from livna spec
  102. * Fri May 16 2008 Matthias Saou <http://freshrpms.net/> 0.7.23-6
  103. - Rebuild for Fedora 9.
  104. - Add missing ldconfig calls and scriplet info requirements.
  105. * Sun Sep 24 2006 Matthias Saou <http://freshrpms.net/> 0.7.23-5
  106. - Rebuild against new libcdio.
  107. * Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 0.7.23-4
  108. - Release bump to drop the disttag number in FC5 build.
  109. * Fri Jan 13 2006 Matthias Saou <http://freshrpms.net/> 0.7.23-3
  110. - Silence install-info scriplets.
  111. * Sat Jul 30 2005 Matthias Saou <http://freshrpms.net/> 0.7.23-2
  112. - Rebuild against new libcdio.
  113. * Tue Jul 12 2005 Matthias Saou <http://freshrpms.net/> 0.7.23-1
  114. - Update to 0.7.23.
  115. - Update libcdio-devel requirement to >= 0.72.
  116. - Change source location from vcdimager.org to gnu.org for this release...
  117. * Tue Jun 28 2005 Matthias Saou <http://freshrpms.net/> 0.7.22-2
  118. - Prevent scriplets from failing if the info calls return an error.
  119. * Tue May 17 2005 Matthias Saou <http://freshrpms.net/> 0.7.22-1
  120. - Update to 0.7.22.
  121. * Sun Apr 17 2005 Matthias Saou <http://freshrpms.net/> 0.7.21-1
  122. - Update to 0.7.21 at last.
  123. - Split off new -devel package.
  124. - Added libcdio build requirement.
  125. - Update Source URL, it's not "UNSTABLE" anymore.
  126. - Remove vcddump.info and add vcd-info.info. Remove .gz from scriplets.
  127. * Mon Aug 30 2004 Matthias Saou <http://freshrpms.net/> 0.7.14-4
  128. - Added missing install-info calls.
  129. * Mon May 24 2004 Matthias Saou <http://freshrpms.net/> 0.7.14-3
  130. - Tried and update to 0.7.20, but the looping libcd* deps are a problem.
  131. - Rebuild for Fedora Core 2.
  132. * Fri Nov 7 2003 Matthias Saou <http://freshrpms.net/> 0.7.14-2
  133. - Rebuild for Fedora Core 1.
  134. * Fri May 2 2003 Matthias Saou <http://freshrpms.net/>
  135. - Update to 0.7.14.
  136. - Remove infodir/dir, thanks to Florin Andrei.
  137. - Updated URL/Source.
  138. * Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
  139. - Rebuilt for Red Hat Linux 9.
  140. * Fri Feb 28 2003 Matthias Saou <http://freshrpms.net/>
  141. - Update to 0.7.13.
  142. - Removed the now unnecessary libxml fix.
  143. * Tue Jan 14 2003 Matthias Saou <http://freshrpms.net/>
  144. - Fix xmlversion.h include path in configure since xml is disabled otherwise,
  145. thanks to Rudolf Kastl for spotting the problem.
  146. * Fri Jan 3 2003 Matthias Saou <http://freshrpms.net/>
  147. - Let's try the 1 year old 0.7 development branch!
  148. * Mon Dec 9 2002 Matthias Saou <http://freshrpms.net/>
  149. - Spec file cleanup.
  150. * Sat Jan 20 2001 Herbert Valerio Riedel <hvr@gnu.org>
  151. - added THANKS file as doc
  152. * Thu Jan 4 2001 Herbert Valerio Riedel <hvr@gnu.org>
  153. - fixed removal of info pages on updating packages
  154. * Sat Dec 23 2000 Herbert Valerio Riedel <hvr@gnu.org>
  155. - added vcdrip
  156. - removed glib dependancy
  157. * Sat Aug 26 2000 Herbert Valerio Riedel <hvr@gnu.org>
  158. - spec file improvements
  159. * Mon Aug 14 2000 Herbert Valerio Riedel <hvr@gnu.org>
  160. - first spec file