xine-lib-vl.spec 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. %define libname libxine1
  2. %define plugindir %{_libdir}/xine/plugins
  3. %define pluginver 1.26
  4. %define build_alsa 1
  5. %define build_arts 1
  6. %define build_pulseaudio 1
  7. %define build_jack 1
  8. %if %{?_dist_release} == "vl4"
  9. %define build_pulseaudio 0
  10. %endif
  11. %define build_dxr3 0
  12. %define build_mpc 0
  13. Summary: A Free Multimedia Player (Libraries)
  14. Summary(ja): フリーのメディアプレイヤー (ライブラリ)
  15. Name: xine-lib
  16. Version: 1.1.16.3
  17. Release: 3%{?_dist_release}
  18. License: GPL
  19. Group: System Environment/Libraries
  20. URL: http://xinehq.de/
  21. Source: http://prdownloads.sourceforge.net/xine/%{name}-%{version}.tar.bz2
  22. Vendor: Project Vine
  23. Distribution: Vine Linux
  24. Packager: inagaki, daisuke
  25. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  26. %if %{?_dist_release} == "vl4"
  27. BuildRequires: XOrg-devel XOrg-gl-devel
  28. %else
  29. BuildRequires: libX11-devel
  30. BuildRequires: libXv-devel
  31. BuildRequires: libXinerama-devel
  32. BuildRequires: libXvMC-devel
  33. BuildRequires: libGLU-devel
  34. BuildRequires: libxcb-devel
  35. %endif
  36. # Video
  37. BuildRequires: SDL-devel >= 1.2.11
  38. BuildRequires: libtheora-devel
  39. BuildRequires: libmng-devel
  40. BuildRequires: aalib-devel >= 1.4
  41. BuildRequires: ImageMagick-devel
  42. %if %{?_dist_release} != "vl4"
  43. BuildRequires: fontconfig-devel
  44. %endif
  45. BuildRequires: freetype2-devel
  46. # Audio
  47. BuildRequires: alsa-lib-devel >= 0.9.0
  48. BuildRequires: esound-devel >= 0.2.8
  49. BuildRequires: flac-devel
  50. %if %{build_jack}
  51. BuildRequires: jack-audio-connection-kit-devel
  52. %endif
  53. BuildRequires: libvorbis-devel
  54. %if %{build_pulseaudio}
  55. BuildRequires: pulseaudio-lib-devel
  56. %endif
  57. BuildRequires: speex-devel
  58. %if %{build_arts}
  59. BuildRequires: arts-devel >= 0.9.5
  60. %endif
  61. # CDs
  62. BuildRequires: libcdio-devel
  63. # Other
  64. BuildRequires: pkgconfig libtool-ltdl-devel
  65. BuildRequires: gnome-vfs2-devel
  66. BuildRequires: gtk2-devel
  67. %if %{?_dist_release} == "vl4"
  68. BuildRequires: samba-libsmbclient-devel
  69. %else
  70. BuildRequires: libsmbclient-devel
  71. %endif
  72. BuildRequires: vine-release >= 4.2-1vl4
  73. %description
  74. xine-lib is a free multimedia player library.
  75. This package contains a library and essential plguins for xine.
  76. %description -l ja
  77. xine-lib はフリーのメディアプレイヤーライブラリです。
  78. このパッケージには、xine のライブラリと基本的なプラグインが
  79. 含まれています。
  80. %package devel
  81. Summary: Development files for xine-lib
  82. Summary(ja): xine-lib の開発用ファイル
  83. Group: Development/Libraries
  84. Requires: %{name} = %{version}-%{release}
  85. Requires: zlib-devel
  86. %description devel
  87. This package contains header files and documentation required
  88. to develope programs with xine-lib.
  89. %description -l ja devel
  90. このパッケージには、xine-lib を用いたプログラムの開発に必要なヘッダ
  91. ファイルやドキュメントが含まれています。
  92. ##### audio output plugins #################################
  93. %package esd
  94. Summary: EsounD audio output plugin for xine
  95. Summary(ja): xine - EsounD オーディオ出力プラグイン
  96. Group: System Environment/Libraries
  97. Requires: %{name} = %{version}-%{release}
  98. %description esd
  99. This package contains EsounD audio output plugin.
  100. %description -l ja esd
  101. このパッケージには EsounD オーディオ出力プラグインが含まれています。
  102. %if %{build_arts}
  103. %package arts
  104. Summary: aRts audio output plugin for xine
  105. Summary(ja): xine - aRts オーディオ出力プラグイン
  106. Group: System Environment/Libraries
  107. Requires: %{name} = %{version}-%{release}
  108. %description arts
  109. This package contains aRts audio output plugin.
  110. %description -l ja arts
  111. このパッケージには aRts オーディオ出力プラグインが含まれています。
  112. %endif
  113. %if %{build_alsa}
  114. %package alsa
  115. Summary: ALSA audio output plugin for xine
  116. Summary(ja): xine - ALSA オーディオ出力プラグイン
  117. Group: System Environment/Libraries
  118. Requires: %{name} = %{version}-%{release}
  119. %description alsa
  120. This package contains ALSA audio output plugin.
  121. %description -l ja alsa
  122. このパッケージには ALSA オーディオ出力プラグインが含まれています。
  123. %endif
  124. %if %{build_pulseaudio}
  125. %package pulseaudio
  126. Summary: Pulseaudio output plugin for xine
  127. Summary(ja): xine - Pulseaudio 出力プラグイン
  128. Group: System Environment/Libraries
  129. Requires: %{name} = %{version}-%{release}
  130. %description pulseaudio
  131. This package contains Pulseaudio output plugin.
  132. %description -l ja pulseaudio
  133. このパッケージには Pulseaudio 出力プラグインが含まれています。
  134. %endif
  135. %if %{build_jack}
  136. %package jack
  137. Summary: jack output plugin for xine
  138. Summary(ja): xine - jack 出力プラグイン
  139. Group: System Environment/Libraries
  140. Requires: %{name} = %{version}-%{release}
  141. %description jack
  142. This package contains jack output plugin.
  143. %description -l ja jack
  144. このパッケージには jack 出力プラグインが含まれています。
  145. %endif
  146. ##### video output plugins #################################
  147. %package sdl
  148. Summary: SDL video output plugin for xine
  149. Summary(ja): xine - SDL ビデオ出力プラグイン
  150. Group: System Environment/Libraries
  151. Requires: %{name} = %{version}-%{release}
  152. %description sdl
  153. This package contains SDL video output plugin.
  154. %description -l ja sdl
  155. このパッケージには SDL ビデオ出力プラグインが含まれています。
  156. %package opengl
  157. Summary: OpenGL video output plugin for xine
  158. Summary(ja): xine - OpenGL ビデオ出力プラグイン
  159. Group: System Environment/Libraries
  160. Requires: %{name} = %{version}-%{release}
  161. %description opengl
  162. This package contains OpenGL video output plugin.
  163. %description -l ja opengl
  164. このパッケージには OpenGL ビデオ出力プラグインが含まれています。
  165. %package aa
  166. Summary: Ascii ART video output plugin for xine
  167. Summary(ja): xine - アスキーアートビデオ出力プラグイン
  168. Group: System Environment/Libraries
  169. Requires: %{name} = %{version}-%{release}
  170. %description aa
  171. This package contains Ascii ART video output plugin.
  172. %description -l ja aa
  173. このパッケージにはアスキーアートビデオ出力プラグインが含まれています。
  174. %if %{build_dxr3}
  175. %package dxr3
  176. Summary: DXR3 video output plugin for xine
  177. Summary(ja): xine - DXR3 ビデオ出力プラグイン
  178. Group: System Environment/Libraries
  179. Requires: %{name} = %{version}-%{release}
  180. %description dxr3
  181. This package contains DXR3, a MPEG2 hardware decoder, video output
  182. plugin.
  183. %description -l ja dxr3
  184. このパッケージには DXR3 (MPEG2 ハードウェアデコーダ) ビデオ出力
  185. プラグインが含まれています。
  186. %endif
  187. ##### input plugins ########################################
  188. %package gnomevfs
  189. Summary: GNOME vfs input plugin for xine
  190. Summary(ja): xine - GNOME vfs 入力プラグイン
  191. Group: System Environment/Libraries
  192. Requires: %{name} = %{version}-%{release}
  193. %description gnomevfs
  194. This package contains GNOME vfs input plugin.
  195. %description -l ja gnomevfs
  196. このパッケージには GNOME vfs 入力プラグインが含まれています。
  197. %package smb
  198. Summary: Samba input plugin for xine
  199. Summary(ja): xine - Samba 入力プラグイン
  200. Group: System Environment/Libraries
  201. Requires: %{name} = %{version}-%{release}
  202. %description smb
  203. This package contains Samba input plugin.
  204. %description -l ja smb
  205. このパッケージには Samba 入力プラグインが含まれています。
  206. ##### ogg files demux & decode plugins #####################
  207. %package ogg
  208. Summary: Ogg/Ogm audio/video input plugin for xine
  209. Summary(ja): xine - Ogg/Ogm オーディオ/ビデオ入力プラグイン
  210. Group: System Environment/Libraries
  211. Requires: %{name} = %{version}-%{release}
  212. Provides: %{name}-oggvorbis
  213. Provides: %{name}-oggspeex
  214. Provides: %{name}-oggtheora
  215. %description ogg
  216. This package contains Ogg/Ogm audio/video input plugin.
  217. %description -l ja ogg
  218. このパッケージには Ogg/Ogm オーディオ/ビデオ入力プラグインが
  219. 含まれています。
  220. ##### decode plugins #######################################
  221. %package flac
  222. Summary: FLAC audio decode plugin for xine
  223. Summary(ja): xine - FLAC オーディオデコードプラグイン
  224. Group: System Environment/Libraries
  225. Requires: %{name} = %{version}-%{release}
  226. %description flac
  227. This package contains FLAC audio decode plugin.
  228. %description -l ja flac
  229. このパッケージには FLAC オーディオデコードプラグインが含まれています。
  230. %if %{build_mpc}
  231. %package musepack
  232. Summary: Musepack audio decode plugin for xine
  233. Summary(ja): xine - Musepack オーディオデコードプラグイン
  234. Group: System Environment/Libraries
  235. Requires: %{name} = %{version}-%{release}
  236. %description musepack
  237. This package contains Musepack audio decode plugin.
  238. %description -l ja musepack
  239. このパッケージには Musepack オーディオデコードプラグインが
  240. 含まれています。
  241. %endif
  242. %ifarch %{ix86}
  243. %package w32dll
  244. Summary: Decode plugin using Win32 DLLs for xine
  245. Summary(ja): xine - Win32 DLL を利用するデコードプラグイン
  246. Group: System Environment/Libraries
  247. Requires: %{name} = %{version}-%{release}
  248. %description w32dll
  249. This package contains decode plugin using Win32 DLLs.
  250. %description -l ja w32dll
  251. このパッケージには Win32 DLL を利用してデコードするプラグインが
  252. 含まれています。
  253. %endif
  254. %prep
  255. %setup -q
  256. # Avoid standard rpaths on lib64 archs:
  257. sed -i -e 's|"/lib /usr/lib\b|"/%{_lib} %{_libdir}|' configure
  258. %build
  259. export SDL_CFLAGS="$(sdl-config --cflags)" SDL_LIBS="$(sdl-config --libs)"
  260. %configure \
  261. %if %{?_dist_release} == "vl4"
  262. --with-xv-path=%{_prefix}/X11R6/%{_lib} \
  263. %else
  264. --with-xv-path=%{_libdir} \
  265. %endif
  266. --disable-a52dec \
  267. --disable-faad \
  268. --disable-mad \
  269. --disable-vcd \
  270. --disable-asf \
  271. --disable-nosefart \
  272. --with-libflac \
  273. --without-external-ffmpeg \
  274. %if !%{build_alsa}
  275. --without-alsa \
  276. %endif
  277. %if %{build_arts}
  278. --with-arts \
  279. %endif
  280. %if !%{build_pulseaudio}
  281. --without-pulseaudio \
  282. %endif
  283. %if !%{build_jack}
  284. --without-jack \
  285. %endif
  286. %if %{build_dxr3}
  287. --enable-dxr3 \
  288. %else
  289. --disable-dxr3 \
  290. %endif
  291. --with-freetype \
  292. --with-fontconfig \
  293. %ifarch %{ix86}
  294. --with-w32-path=%{_libdir}/codecs
  295. %endif
  296. make %{?_smp_mflags}
  297. %install
  298. rm -rf $RPM_BUILD_ROOT
  299. make DESTDIR=%{buildroot} LIBRARY_PATH=%{buildroot}%{_libdir} install
  300. rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
  301. # IMPORTANT: remove all stuffs which may cause patent violation
  302. pushd $RPM_BUILD_ROOT%{plugindir}/%{pluginver}
  303. PLUGINS_TO_REMOVE="xineplug_inp_dvd.so xineplug_inp_mms.so \
  304. xineplug_inp_vcdo.so xineplug_decode_dts.so \
  305. xineplug_decode_dvaudio.so xineplug_decode_ff.so \
  306. xineplug_decode_mpeg2.so post/xineplug_post_planar.so "
  307. for i in $PLUGINS_TO_REMOVE
  308. do
  309. rm -f $i
  310. done
  311. popd
  312. cp -pr %{buildroot}%{_docdir}/xine-lib installed-doc
  313. rm -rf %{buildroot}%{_docdir}/xine-lib
  314. # Removing useless files
  315. rm -Rf installed-doc/README \
  316. installed-doc/README.{freebsd,irix,solaris,MINGWCROSS,WIN32} \
  317. installed-doc/README.{dxr3,network_dvd}
  318. %if ! %{build_mpc}
  319. %__rm -f %{buildroot}%{plugindir}/%{pluginver}/xineplug_decode_mpc.so
  320. %endif
  321. %ifarch %{ix86}
  322. %__mkdir_p %{buildroot}%{_libdir}/codecs
  323. %endif
  324. %find_lang %{libname}
  325. %clean
  326. rm -rf $RPM_BUILD_ROOT
  327. %post -p /sbin/ldconfig
  328. %postun -p /sbin/ldconfig
  329. %files -f %{libname}.lang
  330. %defattr(-,root,root)
  331. %doc AUTHORS COPYING CREDITS ChangeLog NEWS README TODO
  332. %{_bindir}/xine-list-1.1
  333. %{_libdir}/*.so.*
  334. %{_datadir}/xine
  335. %dir %{_libdir}/xine
  336. %{_mandir}/man1/xine-list-1.1.*
  337. %{_mandir}/man5/*
  338. %dir %{plugindir}
  339. %dir %{plugindir}/%{pluginver}
  340. %{plugindir}/%{pluginver}/post
  341. %{plugindir}/%{pluginver}/mime.types
  342. # audio output
  343. %{plugindir}/%{pluginver}/xineplug_ao_out_none.so
  344. %{plugindir}/%{pluginver}/xineplug_ao_out_file.so
  345. %{plugindir}/%{pluginver}/xineplug_ao_out_oss.so
  346. # video output
  347. %{plugindir}/%{pluginver}/vidix
  348. %{plugindir}/%{pluginver}/xineplug_vo_out_none.so
  349. %{plugindir}/%{pluginver}/xineplug_vo_out_fb.so
  350. %if %{?_dist_release} == "vl5"
  351. %{plugindir}/%{pluginver}/xineplug_vo_out_xcbshm.so
  352. %{plugindir}/%{pluginver}/xineplug_vo_out_xcbxv.so
  353. %endif
  354. %{plugindir}/%{pluginver}/xineplug_vo_out_xv.so
  355. %{plugindir}/%{pluginver}/xineplug_vo_out_xshm.so
  356. %{plugindir}/%{pluginver}/xineplug_vo_out_xvmc.so
  357. %{plugindir}/%{pluginver}/xineplug_vo_out_xxmc.so
  358. %{plugindir}/%{pluginver}/xineplug_vo_out_syncfb.so
  359. %{plugindir}/%{pluginver}/xineplug_vo_out_raw.so
  360. %ifarch %{ix86}
  361. %{plugindir}/%{pluginver}/xineplug_vo_out_vidix.so
  362. %endif
  363. # demux
  364. ##{plugindir}/%{pluginver}/xineplug_dmx_asf.so
  365. %{plugindir}/%{pluginver}/xineplug_dmx_audio.so
  366. %{plugindir}/%{pluginver}/xineplug_dmx_avi.so
  367. %{plugindir}/%{pluginver}/xineplug_dmx_fli.so
  368. %{plugindir}/%{pluginver}/xineplug_dmx_flv.so
  369. %{plugindir}/%{pluginver}/xineplug_dmx_games.so
  370. %{plugindir}/%{pluginver}/xineplug_dmx_iff.so
  371. %{plugindir}/%{pluginver}/xineplug_dmx_image.so
  372. %{plugindir}/%{pluginver}/xineplug_dmx_matroska.so
  373. %{plugindir}/%{pluginver}/xineplug_dmx_mng.so
  374. %{plugindir}/%{pluginver}/xineplug_dmx_mpeg.so
  375. %{plugindir}/%{pluginver}/xineplug_dmx_mpeg_block.so
  376. %{plugindir}/%{pluginver}/xineplug_dmx_mpeg_elem.so
  377. %{plugindir}/%{pluginver}/xineplug_dmx_mpeg_pes.so
  378. %{plugindir}/%{pluginver}/xineplug_dmx_mpeg_ts.so
  379. %{plugindir}/%{pluginver}/xineplug_dmx_nsv.so
  380. %{plugindir}/%{pluginver}/xineplug_dmx_pva.so
  381. %{plugindir}/%{pluginver}/xineplug_dmx_qt.so
  382. %{plugindir}/%{pluginver}/xineplug_dmx_rawdv.so
  383. %{plugindir}/%{pluginver}/xineplug_dmx_real.so
  384. %{plugindir}/%{pluginver}/xineplug_dmx_slave.so
  385. %{plugindir}/%{pluginver}/xineplug_dmx_sputext.so
  386. %{plugindir}/%{pluginver}/xineplug_dmx_yuv4mpeg2.so
  387. %{plugindir}/%{pluginver}/xineplug_dmx_yuv_frames.so
  388. # input
  389. %{plugindir}/%{pluginver}/xineplug_inp_cdda.so
  390. %{plugindir}/%{pluginver}/xineplug_inp_dvb.so
  391. ##{plugindir}/%{pluginver}/xineplug_inp_dvd.so
  392. %{plugindir}/%{pluginver}/xineplug_inp_file.so
  393. %{plugindir}/%{pluginver}/xineplug_inp_http.so
  394. ##{plugindir}/%{pluginver}/xineplug_inp_mms.so
  395. %{plugindir}/%{pluginver}/xineplug_inp_net.so
  396. %{plugindir}/%{pluginver}/xineplug_inp_pnm.so
  397. %{plugindir}/%{pluginver}/xineplug_inp_pvr.so
  398. %{plugindir}/%{pluginver}/xineplug_inp_rtp.so
  399. %{plugindir}/%{pluginver}/xineplug_inp_rtsp.so
  400. %{plugindir}/%{pluginver}/xineplug_inp_stdin_fifo.so
  401. %{plugindir}/%{pluginver}/xineplug_inp_v4l.so
  402. ##{plugindir}/%{pluginver}/xineplug_inp_vcd.so
  403. ##{plugindir}/%{pluginver}/xineplug_inp_vcdo.so
  404. # decode
  405. ##{plugindir}/%{pluginver}/xineplug_decode_a52.so
  406. %{plugindir}/%{pluginver}/xineplug_decode_bitplane.so
  407. ##{plugindir}/%{pluginver}/xineplug_decode_dts.so
  408. ##{plugindir}/%{pluginver}/xineplug_decode_dvaudio.so
  409. ##{plugindir}/%{pluginver}/xineplug_decode_ff.so
  410. %{plugindir}/%{pluginver}/xineplug_decode_gdk_pixbuf.so
  411. %{plugindir}/%{pluginver}/xineplug_decode_gsm610.so
  412. %{plugindir}/%{pluginver}/xineplug_decode_image.so
  413. %{plugindir}/%{pluginver}/xineplug_decode_lpcm.so
  414. ##{plugindir}/%{pluginver}/xineplug_decode_mad.so
  415. ##{plugindir}/%{pluginver}/xineplug_decode_mpeg2.so
  416. ##{plugindir}/%{pluginver}/xineplug_decode_nsf.so
  417. %ifarch %{ix86}
  418. %{plugindir}/%{pluginver}/xineplug_decode_qt.so
  419. %endif
  420. %{plugindir}/%{pluginver}/xineplug_decode_real.so
  421. %{plugindir}/%{pluginver}/xineplug_decode_rgb.so
  422. %{plugindir}/%{pluginver}/xineplug_decode_spu.so
  423. %{plugindir}/%{pluginver}/xineplug_decode_spucc.so
  424. %{plugindir}/%{pluginver}/xineplug_decode_spucmml.so
  425. %{plugindir}/%{pluginver}/xineplug_decode_spudvb.so
  426. %{plugindir}/%{pluginver}/xineplug_decode_sputext.so
  427. %{plugindir}/%{pluginver}/xineplug_decode_yuv.so
  428. %files devel
  429. %defattr(-,root,root)
  430. %doc installed-doc/*
  431. %{_bindir}/xine-config
  432. #%{_libdir}/*.la
  433. %{_libdir}/*.so
  434. %{_libdir}/pkgconfig/*.pc
  435. %{_includedir}/*.h
  436. %{_includedir}/xine
  437. %{_datadir}/aclocal/*.m4
  438. %{_mandir}/man1/xine-config.*
  439. ##### audio output plugins #################################
  440. %files esd
  441. %defattr(-,root,root)
  442. %{plugindir}/%{pluginver}/xineplug_ao_out_esd.so
  443. %if %{build_arts}
  444. %files arts
  445. %defattr(-,root,root)
  446. %{plugindir}/%{pluginver}/xineplug_ao_out_arts.so
  447. %endif
  448. %if %{build_alsa}
  449. %files alsa
  450. %defattr(-,root,root)
  451. %{plugindir}/%{pluginver}/xineplug_ao_out_alsa.so
  452. %endif
  453. %if %{build_pulseaudio}
  454. %files pulseaudio
  455. %defattr(-,root,root)
  456. %{plugindir}/%{pluginver}/xineplug_ao_out_pulseaudio.so
  457. %endif
  458. %if %{build_jack}
  459. %files jack
  460. %defattr(-,root,root)
  461. %{plugindir}/%{pluginver}/xineplug_ao_out_jack.so
  462. %endif
  463. ##### video output plugins #################################
  464. %files sdl
  465. %defattr(-,root,root)
  466. %{plugindir}/%{pluginver}/xineplug_vo_out_sdl.so
  467. %files opengl
  468. %defattr(-,root,root)
  469. %{plugindir}/%{pluginver}/xineplug_vo_out_opengl.so
  470. %files aa
  471. %defattr(-,root,root)
  472. %{plugindir}/%{pluginver}/xineplug_vo_out_aa.so
  473. %if %{build_dxr3}
  474. %files dxr3
  475. %defattr(-,root,root)
  476. %{plugindir}/%{pluginver}/xineplug_*dxr3*.so
  477. %endif
  478. ##### input plugins ########################################
  479. %files gnomevfs
  480. %defattr(-,root,root)
  481. %{plugindir}/%{pluginver}/xineplug_inp_gnome_vfs.so
  482. %files smb
  483. %defattr(-,root,root)
  484. %{plugindir}/%{pluginver}/xineplug_inp_smb.so
  485. ##### ogg files demux & decode plugins #####################
  486. %files ogg
  487. %defattr(-,root,root)
  488. %{plugindir}/%{pluginver}/xineplug_dmx_ogg.so
  489. %{plugindir}/%{pluginver}/xineplug_decode_vorbis.so
  490. %{plugindir}/%{pluginver}/xineplug_decode_speex.so
  491. %{plugindir}/%{pluginver}/xineplug_decode_theora.so
  492. ##### decode plugins #######################################
  493. %files flac
  494. %defattr(-,root,root)
  495. %{plugindir}/%{pluginver}/xineplug_flac.so
  496. %if %{build_mpc}
  497. %files musepack
  498. %defattr(-,root,root)
  499. %{plugindir}/%{pluginver}/xineplug_decode_mpc.so
  500. %endif
  501. %ifarch %{ix86}
  502. %files w32dll
  503. %defattr(-,root,root)
  504. %{plugindir}/%{pluginver}/xineplug_decode_w32dll.so
  505. %dir %{_libdir}/codecs
  506. %endif
  507. %changelog
  508. * Fri May 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.16.3-3
  509. - add --without-external-ffmpeg to configure option
  510. - add post/xineplug_post_planar.so (ffmpeg postprocess) to remove list.
  511. * Wed May 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.16.3-2
  512. - build without gpm
  513. * Sat Apr 4 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.16.3-1
  514. - new upstream release with security fix
  515. - Fix another possible int overflow in the 4XM demuxer.
  516. (ref. TKADV2009-004, CVE-2009-0385)
  517. - Fix an integer overflow in the Quicktime demuxer.
  518. * Sat Feb 14 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.16.2-1
  519. - new upstream release with security fix
  520. - Heap overflow in Quicktime atom parsing. (CVE-2008-5234)
  521. - Multiple buffer overflows. (CVE-2008-5236)
  522. - Multiple integer overflows. (CVE-2008-5237)
  523. - Unchecked or incompletely-checked read function results. (CVE-2008-5239)
  524. - Unchecked malloc using untrusted values. (CVE-2008-5240, CVE-2008-5242)
  525. - Integer underflow in qt compressed atom handling. (CVE-2008-5241)
  526. - Buffer indexing using untrusted or unchecked values. (CVE-2008-5243)
  527. - Fix broken size checks in various input plugins (ref. CVE-2008-5239)
  528. - IMPORTANT: removed all plugins which may cause patent violation
  529. - these plugins will be provided self-build-xine-lib-extras package
  530. - added jack plugin subpackage
  531. * Sun Feb 8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.15-4
  532. - updated --with-xv-path
  533. - used more dist_release macros
  534. - rebuilt with ImageMagick 6.4.9-2 (only VineSeed)
  535. * Tue Oct 14 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.1.15-3
  536. - update Patch101 (changeset b3822572afa5)
  537. * Mon Oct 13 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.1.15-2
  538. - add Patch101 (changeset b3822572afa5)
  539. * Sun Aug 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.15-1vl5
  540. - new upstream release with a security fix (CVE-2008-3231)
  541. - dropped Patch100 (was included into upstream)
  542. - Requires: libX11 instead of XOrg-libs
  543. - added pulseaudio subpackage
  544. * Sun May 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.1.12-2
  545. - now BuildRequires xorg-x11-devel and libGLU-devel, not XOrg*-devel
  546. - spec in UTF-8
  547. * Mon Apr 28 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.12-1
  548. - new upstream release with a security fix (CVE-2008-1686)
  549. - added Patch100 for CVE-2008-1878
  550. - added --disable-a52dec
  551. * Mon Mar 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.11.1-1vl5
  552. - new upstream release with a security fix (CVE-2008-1482)
  553. * Mon Mar 24 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.11-1vl5
  554. - rebuilt for VineSeed
  555. - new upstream release with a security fix (CVE-2008-0073)
  556. - rebuilt with ImageMagick 6.3.9-10
  557. * Mon Mar 24 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.11-1vl4
  558. - new upstream release with a security fix (CVE-2008-0073)
  559. * Tue Mar 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.10.1-0vl1
  560. - new upstream release
  561. - using %%ver instead of %%version at %%files section
  562. * Tue Sep 04 2007 KAZUKI SHIMURA <ksh753@y5.don.ne.jp> 1.1.7-0vl5
  563. - use %%{_prefix}/X11R6/%%{_lib} for --with-xv-path to support x86_64
  564. * Tue Sep 04 2007 KAZUKI SHIMURA <ksh753@y5.don.ne.jp> 1.1.7-0vl4
  565. - update build dependencies
  566. - SDL-devel >= 1.2.11 (sdl.pc is required by xine-lib >= 1.1.3)
  567. - alsa-lib >= 0.9.0
  568. - flac-devel >= 1.2.0
  569. * Sat Aug 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.7-0vl3
  570. - rebuilt with flac 1.2.0
  571. * Mon Aug 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.7-0vl2
  572. - pass exclusively --with-xv-path=/usr/X11R6/lib to configure
  573. (libXv.* detection on configure seems somewhat corrupted at least on ppc)
  574. * Sat Aug 11 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 1.1.7-0vl1
  575. - new upstream release
  576. - disable arts plugin
  577. - add new file: mime.types
  578. * Fri May 11 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.6-0vl2
  579. - rebuilt with new toolchain
  580. - execute autoconf before doin' %%configure
  581. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.6-0vl1
  582. - new upstream release
  583. - drop Patch100,101,102 and 500 which are now merged in upstream
  584. * Sat Dec 09 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.2-0vl4
  585. - [SECURITY FIX]
  586. - add patch101 to fix buffer overflow in Real Media plugin (CVE-2006-6172)
  587. - add patch102 to fix heap overflow in mms plugin (related to CVE-2006-2200)
  588. - add %%{_libdir}/codecs to -w32dll package
  589. * Sat Oct 07 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.2-0vl3
  590. - [SECURITY FIX]
  591. - import patch100 to fix multiple buffer overflows (CVE-2006-4800)
  592. * Wed Sep 27 2006 Stew Benedict <sbenedict@mandriva.com> 1.1.2-3.1mdv2007.0
  593. - P2: security fix for CVE-2006-4800
  594. * Sun Aug 6 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.2-0vl2
  595. - added patch500 for ppc
  596. * Sun Jul 16 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.2-0vl1
  597. - [SECURITY] new upstream release
  598. - possible buffer overflow in libavcodec; crafted PNGs (CVE-2005-4048)
  599. - possible buffer overflow in the HTTP plugin (CVE-2006-2802)
  600. - possible buffer overflow via bad indexes in specially-crafted AVI files
  601. - drop unneeded patch100
  602. - add BuildRequires: samba-libsmbclient-devel instead of samba-libsmbclient
  603. - add %%{plugindir}/%%{version}/xineplug_decode_gdk_pixbuf.so
  604. - add BuildRequires: gtk2-devel
  605. - add Requires: gtk2
  606. * Mon Mar 6 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.1.1-0vl4
  607. - rebuild with ImageMagick-6.2.6.3-0vl1
  608. * Sat Jan 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.1-0vl3
  609. - add sub-package: xine-lib-aa
  610. - remove mpc decode plugin at %%install if builc-mpc disabled
  611. - [SECURITY FIX]
  612. - import patch100 to fix heap-based buffer overflow (CVE-2005-4048)
  613. * Wed Dec 14 2005 Glbz Waschk <waschk@mandriva.org> 1.1.1-2mdk
  614. - security update for CVE-2005-4048 (P2, embedded ffmpeg)
  615. * Sun Dec 25 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.1-0vl2
  616. - rebuilt with new ImageMagick
  617. - changed Group
  618. - added %%{plugindir}/%%{version}/xineplug_vo_out_{xvmc,xxmc}.so
  619. * Thu Nov 17 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.1-0vl1
  620. - upstream release
  621. - drop patch100
  622. * Mon Oct 17 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.0-0vl3
  623. - [SECURITY]
  624. - add patch100 to fix format string vulnerability (CAN-2005-2967)
  625. - cf. http://xinehq.de/index.php/security/XSA-2005-1
  626. * Fri Oct 14 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.0-0vl2
  627. - two plugins (xineplug_decode_qt.so and xineplug_vo_out_vidix.so)
  628. are only built on ix86 archtecture.
  629. * Sat Oct 01 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.0-0vl1
  630. - upstream release
  631. - add BuildRequires:
  632. ImageMagick-devel, bzip2-devel, libjpeg-devel, libtiff-devel,
  633. libtool-ltdl-devel
  634. - addRequires:
  635. ImageMagick, bzip2, libjpeg, libtiff
  636. * Sat Jul 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.2-0vl1
  637. - upstream release
  638. * Thu Jun 23 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.1-0vl2
  639. - rebuild with alsa-lib-devel
  640. - add build_{gvfs,smb} macros
  641. * Sun May 08 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.1-0vl1
  642. - initial build for Vine Linux
  643. * Thu Jan 06 2005 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  644. - enabled defining build or not to build subpackages at runtime
  645. using '--define "BUILD_XYZ 1"', you can find possible BUILD_
  646. defines at the top of the spec-file
  647. * Tue Dec 07 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  648. - included xxmc video out plugin into xvmc sub-rpm
  649. * Sat Sep 11 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  650. - added missing Requires-Statements in the subpackages
  651. * Fri Sep 03 2004 Franti邸ek Dvořák <valtri@users.sourceforge.net>
  652. - Czech translation update
  653. * Thu Sep 02 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  654. - konverted to UTF8
  655. - some fixes for non IA32 systems (especialy Athlon64/Opteron)
  656. * Sat May 01 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  657. - activated opengl plugin
  658. * Tue Apr 06 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  659. - removed xvid modules from -devel package and put it back
  660. to main package.
  661. * Fri Feb 13 2004 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  662. - added new sub-rpm for stk videoout plugin
  663. * Fri Nov 21 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  664. - use internal vcdlibs to keep dependencies low
  665. * Sun Oct 19 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  666. - added separate directfb-package to solve dependendies
  667. * Tue Oct 07 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  668. - activated separte xvmc package, when this is wanted.
  669. * Sun Jul 20 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  670. - made ogg-package out of oggvorbis, oggtheora and the new
  671. oggspeex xine-plugins
  672. * Sat May 24 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  673. - complete rework of the specfile
  674. * Wed May 14 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  675. - Update for > 1-beta13
  676. * Sat Mar 08 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  677. - added missing doc-files
  678. * Wed Jan 15 2003 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  679. - removed man3 manpages in devel-filelist
  680. * Tue Dec 24 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  681. - Update for libxine 1.0beta1 added pkgconfig-directory
  682. * Wed Dec 11 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  683. - Update for libxine 1.0beta0, fonts-directory has been changed
  684. * Sat Dec 07 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  685. - added translation for finnish by Tuukka Pasanen <illuusio@mailcity.com>
  686. - some updates to german and english descriptions
  687. - added post-directory to file-list
  688. * Sat Nov 09 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  689. - Final changes for libxine 1.0alpha1
  690. * Mon Nov 04 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  691. - another change to make it run with next version
  692. * Sat Nov 02 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  693. - Changes for next xine version
  694. * Sun Oct 27 2002 Manfred Tremmel <Manfred.Tremmel@iiv.de>
  695. - Update of the german descriptions.
  696. * Thu Jun 06 2002 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  697. - ability to pass args to configure. Fix vidix/dhahelper inclusion.
  698. * Mon May 27 2002 Matthias Dahl <matthew2k@web.de>
  699. - added passing of build parameter to configure
  700. * Sun May 26 2002 Matthias Dahl <matthew2k@web.de>
  701. - added german translations by Manfred Tremmel <Manfred.Tremmel@iiv.de>
  702. - added fixes (missing -l cs) by Manfred Tremmel <Manfred.Tremmel@iiv.de>
  703. * Sat May 18 2002 Matthias Dahl <matthew2k@web.de>
  704. - added czech translations by valtri@atlas.cz
  705. * Thu May 16 2002 Matthias Dahl <matthew2k@web.de>
  706. - replaced %configure because it was causing trouble on certain configurations
  707. * Sat May 11 2002 Matthias Dahl <matthew2k@web.de>
  708. - reworked/revamped spec file, still needs some tuning (BuildPreReq, ...)
  709. * Thu May 2 2002 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  710. - sync with new logo stuff.
  711. * Wed May 1 2002 Matthias Dahl <matthew2k@web.de>
  712. - added cinepak, cyuv and msvc decode plugins
  713. - commented out sdl related parts because this is currently broken in xine-lib
  714. - added 'cs,pl_PL' translation catalogs
  715. * Sun Mar 31 2002 Matthias Dahl <matthew2k@web.de>
  716. - added mms input plugin, spucc decoder and missing xine_logo.zyuy2.
  717. - commented out video fill decoder for now as it seems to be no longer built
  718. * Wed Feb 6 2002 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  719. - added 'de,fr,pt_BR' translation catalogs.
  720. * Sat Dec 26 2001 Matthias Dahl <matthew2k@web.de>
  721. - added sputext decode plugin and fonts.
  722. * Sat Dec 8 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  723. - ASF plugin is optional.
  724. * Thu Dec 6 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  725. - Add cda plugins.
  726. * Wed Nov 14 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  727. - fixed dxr3 header files inclusion, aalib deps: thanks to Andrew Meredith <andrew@anvil.org>.
  728. * Mon Oct 29 2001 Matthias Dahl <matthew2k@web.de>
  729. - added http input plugin
  730. * Thu Oct 18 2001 Matthias Dahl <matthew2k@web.de>
  731. - added asf demuxer plugin
  732. * Sun Oct 14 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  733. - move vorbis in separate package. Add DivX4 decoder plugin.
  734. * Wed Oct 10 2001 Matthias Dahl <matthew2k@web.de>
  735. - added vorbis files and missing man pages to filelist.
  736. * Thu Sep 27 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  737. - Add desktop stuff from patches by Miguel Freitas <miguel@cetuc.puc-rio.br>
  738. - Fixed xine.m4 installation from Andrew Meredith <andrew@anvil.org>
  739. * Fri Sep 21 2001 Matthias Dahl <matthew2k@web.de>
  740. - added two missing files (xine-config man page and xine.m4)
  741. * Sun Sep 16 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  742. - Merge patch from JosスCarlos Monteiro <jcm@netcabo.pt>:
  743. - Filelist and other minor updates,
  744. - Fixed some SuSE compatibility issues,
  745. - Added Portuguese summary.
  746. * Sun Sep 16 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  747. - Add missing files.
  748. * Sun Aug 19 2001 Matthias Dahl <matthew2k@web.de>
  749. - The usual update to the filelist :)
  750. - temporarily removed mpg123 decoder plugin from filelist cause it is not
  751. built with the recent CVS tree
  752. * Thu Jul 26 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  753. - Made oss, aa, xv, esd, w32dll, documentation as separate packages.
  754. * Thu Jul 26 2001 Matthias Dahl <matthew2k@web.de>
  755. - added seperate arts package and one missing demuxer plugin to filelist
  756. * Wed Jul 18 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  757. - list all plugins to avoid *strange* inclusion ;-).
  758. * Sun Jun 10 2001 Matthias Dahl <matthew2k@web.de>
  759. - updated filelist
  760. - re-activated execution of /sbin/ldconfig as post install script
  761. * Thu Mar 28 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  762. - add korean summary, patch from Louis JANG <louis@ns.mizi.com>
  763. * Thu Jan 11 2001 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  764. - patch from Sung-Hyun Nam <namsh@lgic.co.kr> applied.
  765. * Fri Oct 17 2000 Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
  766. - first spec file.