xine-lib.spec 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. ##
  2. ## xine-lib.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2003 Cable & Wireless Deutschland GmbH
  4. ## Copyright (c) 2000-2003 The OpenPKG Project <http://www.openpkg.org/>
  5. ## Copyright (c) 2000-2003 Ralf S. Engelschall <rse@engelschall.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: JUNK because of core dumps on FreeBSD. The real problem might be the..
  26. # FIXME: ms: ...package xine-ui instead, but I'm not sure.
  27. # package version
  28. %define V_dist 1-beta12
  29. %define V_opkg 1.0b12
  30. # package information
  31. Name: xine-lib
  32. Summary: Media Player Library
  33. URL: http://www.xinehq.de/
  34. Vendor: Guenter Bartsch et al.
  35. Packager: The OpenPKG Project
  36. Distribution: OpenPKG [JUNK]
  37. Group: Video
  38. License: GPL
  39. Version: %{V_opkg}
  40. Release: 20030604
  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 >= 20030103, X11, libiconv, sdl, vorbis-libs, gcc
  48. PreReq: OpenPKG, openpkg >= 20030103, 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. %prep
  59. %setup -q -n xine-lib-%{V_dist}
  60. %patch -p0
  61. %build
  62. CC="%{l_cc}" \
  63. CXX="%{l_cxx}" \
  64. CFLAGS="%{l_cflags -O}" \
  65. CXXFLAGS="%{l_cxxflags -O}" \
  66. CPPFLAGS="%{l_cppflags}" \
  67. LDFLAGS="%{l_ldflags}" \
  68. ./configure \
  69. --prefix=%{l_prefix} \
  70. --with-x \
  71. --x-includes=`%{l_prefix}/etc/rc --query x11_incdir` \
  72. --x-libraries=`%{l_prefix}/etc/rc --query x11_libdir` \
  73. --enable-static --enable-shared \
  74. --with-libiconv-prefix=%{l_prefix} \
  75. --with-sdl-prefix=%{l_prefix} \
  76. --with-ogg-prefix=%{l_prefix} \
  77. --with-vorbis-prefix=%{l_prefix}
  78. %{l_make} %{l_mflags -O}
  79. %install
  80. rm -rf $RPM_BUILD_ROOT
  81. %{l_shtool} mkdir -f -p -m 755 \
  82. $RPM_BUILD_ROOT%{l_prefix}/include/xine \
  83. $RPM_BUILD_ROOT%{l_prefix}/lib/pkgconfig \
  84. $RPM_BUILD_ROOT%{l_prefix}/lib/xine/plugins/1.0.0 \
  85. $RPM_BUILD_ROOT%{l_prefix}/share/xine/libxine1/fonts \
  86. $RPM_BUILD_ROOT%{l_prefix}/man/man1
  87. %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
  88. rm -rf \
  89. $RPM_BUILD_ROOT%{l_prefix}/lib/*.so* \
  90. $RPM_BUILD_ROOT%{l_prefix}/share/aclocal \
  91. $RPM_BUILD_ROOT%{l_prefix}/share/doc \
  92. $RPM_BUILD_ROOT%{l_prefix}/share/locale
  93. %{l_shtool} subst \
  94. -e 's;\(\)libxine\.so[\ \.0-9]*\(\);\1\2;g' \
  95. $RPM_BUILD_ROOT%{l_prefix}/lib/libxine.la
  96. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  97. %{l_files_std} \
  98. '%not %dir %{l_prefix}/lib/pkgconfig'
  99. %files -f files
  100. %clean
  101. rm -rf $RPM_BUILD_ROOT