xine-lib.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. ##
  2. ## xine-lib.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2004 The OpenPKG Project <http://www.openpkg.org/>
  4. ## Copyright (c) 2000-2004 Ralf S. Engelschall <rse@engelschall.com>
  5. ## Copyright (c) 2000-2004 Cable & Wireless <http://www.cw.com/>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. # FIXME: ms: still slightly broken due to video drivers/plugins failures?!
  26. # package version
  27. %define V_dist 1-rc3c
  28. %define V_opkg 1rc3c
  29. # package information
  30. Name: xine-lib
  31. Summary: Media Player Library
  32. URL: http://www.xinehq.de/
  33. Vendor: Guenter Bartsch et al.
  34. Packager: The OpenPKG Project
  35. Distribution: OpenPKG
  36. Class: EVAL
  37. Group: Video
  38. License: GPL
  39. Version: %{V_opkg}
  40. Release: 20040409
  41. # list of sources
  42. Source0: http://download.sourceforge.net/xine/xine-lib-%{V_dist}.tar.gz
  43. Patch0: xine-lib.patch
  44. # build information
  45. Prefix: %{l_prefix}
  46. BuildRoot: %{l_buildroot}
  47. BuildPreReq: OpenPKG, openpkg >= 20040130, X11, libiconv, sdl, vorbis-libs, gcc
  48. PreReq: OpenPKG, openpkg >= 20040130, X11, libiconv, sdl, vorbis-libs
  49. AutoReq: no
  50. AutoReqProv: no
  51. %description
  52. This is the xine library, implementing a multimedia engine. It
  53. plays back CDs, DVDs, and VCDs. It also decodes multimedia files
  54. like AVI, MOV, WMV, and MP3 from local disk drives, and displays
  55. multimedia streamed over the Internet. It interprets many of the
  56. most common multimedia formats available and some of the most
  57. uncommon formats, too.
  58. %track
  59. prog xine-lib = {
  60. version = %{V_dist}
  61. url = http://prdownloads.sourceforge.net/xine/
  62. regex = xine-lib-(__VER__)\.tar\.gz
  63. }
  64. %prep
  65. %setup -q -n xine-lib-%{V_dist}
  66. %patch -p0
  67. %build
  68. CC="%{l_cc}" \
  69. CXX="%{l_cxx}" \
  70. CFLAGS="%{l_cflags -O}" \
  71. CXXFLAGS="%{l_cxxflags -O}" \
  72. CPPFLAGS="%{l_cppflags}" \
  73. LDFLAGS="%{l_ldflags}" \
  74. ./configure \
  75. --prefix=%{l_prefix} \
  76. --with-x \
  77. --x-includes=`%{l_prefix}/etc/rc --query x11_incdir` \
  78. --x-libraries=`%{l_prefix}/etc/rc --query x11_libdir` \
  79. --enable-static --enable-shared \
  80. --with-libiconv-prefix=%{l_prefix} \
  81. --with-sdl-prefix=%{l_prefix} \
  82. --with-ogg-prefix=%{l_prefix} \
  83. --with-vorbis-prefix=%{l_prefix}
  84. %{l_make} %{l_mflags -O}
  85. %install
  86. rm -rf $RPM_BUILD_ROOT
  87. %{l_shtool} mkdir -f -p -m 755 \
  88. $RPM_BUILD_ROOT%{l_prefix}/include/xine \
  89. $RPM_BUILD_ROOT%{l_prefix}/lib/pkgconfig \
  90. $RPM_BUILD_ROOT%{l_prefix}/lib/xine/plugins/1.0.0 \
  91. $RPM_BUILD_ROOT%{l_prefix}/share/xine/libxine1/fonts \
  92. $RPM_BUILD_ROOT%{l_prefix}/man/man1
  93. %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
  94. rm -rf \
  95. $RPM_BUILD_ROOT%{l_prefix}/lib/*.so* \
  96. $RPM_BUILD_ROOT%{l_prefix}/share/aclocal \
  97. $RPM_BUILD_ROOT%{l_prefix}/share/doc \
  98. $RPM_BUILD_ROOT%{l_prefix}/share/locale
  99. %{l_shtool} subst \
  100. -e 's;\(\)libxine\.so[\ \.0-9]*\(\);\1\2;g' \
  101. $RPM_BUILD_ROOT%{l_prefix}/lib/libxine.la
  102. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  103. %{l_files_std} \
  104. '%not %dir %{l_prefix}/lib/pkgconfig'
  105. %files -f files
  106. %clean
  107. rm -rf $RPM_BUILD_ROOT