~ubuntu-branches/ubuntu/vivid/mplayerplug-in/vivid

« back to all changes in this revision

Viewing changes to specfiles/mplayerplug-in-jds.spec

  • Committer: Bazaar Package Importer
  • Author(s): Ari Pollak
  • Date: 2006-08-06 14:28:57 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060806142857-rti2h4zrt8yvqwka
Tags: 3.30-1
* New upstream release
* Apply patch from upstream to fix media playing when LIRC is enabled in
  mplayer

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%define name mplayerplug-in
2
 
%define ver 2.85
3
 
%define mozilla_plugin_dir /usr/lib/mozilla/plugins
4
 
%define mozilla_component_dir /usr/lib/mozilla/components
5
 
%define config_dir /etc
6
 
%define rel jds
7
 
 
8
 
Name: %{name}
9
 
Version: %{ver}
10
 
Release: %{rel}
11
 
License: GPL
12
 
Group: Browser/Plugin
13
 
Summary: MPlayer Plugin for Netscape/Mozilla
14
 
URL: http://mplayerplug-in.sourceforge.net/
15
 
Packager: Hiroaki Nozaki <Hiroaki.Nozaki@Sun.COM>
16
 
Source0: %{name}-%{ver}.tar.gz
17
 
BuildRoot: %{_tmppath}/%{name}-%{ver}-root
18
 
 
19
 
%description
20
 
mplayerplug-in is a Netscape/Mozilla browser plugin to allow playing embedded movies on web pages.
21
 
 
22
 
%prep
23
 
rm -rf %buildroot
24
 
%setup -n %{name}
25
 
 
26
 
%build
27
 
./configure
28
 
%{__make}
29
 
 
30
 
%install
31
 
%{__mkdir} -p %buildroot%{mozilla_plugin_dir} && %{__mkdir} -p %buildroot%{config_dir} && %{__mkdir} -p %buildroot%{mozilla_component_dir}
32
 
%{__install} -m755 mplayerplug-in.so %buildroot%{mozilla_plugin_dir}
33
 
%{__install} -m755 mplayerplug-in.xpt %buildroot%{mozilla_component_dir}
34
 
%{__install} -m755 mplayerplug-in.types %buildroot%{config_dir}
35
 
%{__install} -m755 mplayerplug-in.conf %buildroot%{config_dir}
36
 
 
37
 
%clean
38
 
rm -rf %buildroot
39
 
 
40
 
%files
41
 
%defattr (-,root,root)
42
 
%doc ChangeLog INSTALL README TODO
43
 
%{mozilla_plugin_dir}/mplayerplug-in.so
44
 
%{mozilla_component_dir}/mplayerplug-in.xpt
45
 
%{config_dir}/mplayerplug-in.conf
46
 
%{config_dir}/mplayerplug-in.types
47
 
 
48
 
%changelog
49
 
* Tue Jun 14 2005 Kevin DeKorte
50
 
- v2.85
51
 
        French translation by AL 
52
 
        updated mimetype description MS ASF video for type video/x-ms-asf
53
 
        Build Fixes from Dag Wieers
54
 
        Minor change to getURLFilename
55
 
        Change to make NetFlix previews work
56
 
        Cap the cachebytes to twice the cachesize
57
 
        Fix up some issues with user-agent
58
 
        Italian translation by Roberto Inzerillo
59
 
        Brazilian Portugese translation by Danilo Bardusco
60
 
        Slovak translation by Jozef Riha
61
 
        Took & compare out of URLcmp so that http://www.dr.dk/netradio/?venstre=true should work.
62
 
        More fixes to make www.dr.dk to work better.
63
 
        Optimize the loop condition with 1 file to play
64
 
        Fix a bug in URLcmp with file:// urls
65
 
        Fix a bug in "loop" attribute make "loop=1" work.
66
 
        Merged and expanded Hiroa's loop patch.
67
 
        Russian translation by Nikolai Prokoschenko
68
 
        Danish translation by Anders Lind
69
 
        Progress Bar over video fix and crasher fix.
70
 
        Spanish translation by Azael Avalos
71
 
        getTime and getPercent patches from anonymous
72
 
        Added options cookies, nomouseinput and noconsolecontrols to config file to disable (set to 0) or enable (set to 1 [default])
73
 
 
74
 
* Wed Dec 15 2004 Kevin DeKorte
75
 
- v2.75
76
 
        Make sdp media urls work
77
 
        Make GTK1 code request XEmbed mode
78
 
        Only specify mplayer -cache option for streaming data
79
 
        Add mimetype application/x-ms-wmv to the list
80
 
        For realmedia, don't play when controls=statusbar
81
 
        Applied mms playlist detection patch from Yasuhiro Matsumoto (fixes TSN.ca among others)
82
 
        Fix for older mozilla include paths. Fix based on info from FreeBSD package patch.
83
 
        Applied sync A/V options patch from Yasuhiro Matsumoto
84
 
        Applied some Sun JDS patches from Hiroaki Nozaki - did not apply all since they used global variables
85
 
        Added in support for Nullsoft Streaming Video mimetype: application/x-nsv-vp3-mp3
86
 
        Fixed problem with http://www.vg.no/video media
87
 
        Added fallback to smb:// when getting a file:// url that is not found
88
 
        Make Netflix previews work after Netflix website update
89
 
        Apply NetBSD patches from Juan RP
90
 
        Add back in the signal mask patch and a slight pause
91
 
        Add some more pthread_cancel checks in
92
 
        Fixed a buffer overrun that was identified by Adam Feakin
93
 
        Fixes some minor nits with the fullscreen window in GTK2
94
 
        Applied more patches from Hiroaki Nozaki - more HTML property support
95
 
        Added config option enable_smil, default to 1 or enabled. Added so that SMIL support can be disabled independently
96
 
        Fix automake issues on FreeBSD
97
 
        Fix issue with http://www.camerata-trajectina.nl/, autoplay and buttons showing up
98
 
        Add support for keyboard commands, these only work when the mouse is over the buttons or background, not over media
99
 
                space/P/p - play or pause depending on current state
100
 
                S/s - stop
101
 
                </, - rewind 10 seconds
102
 
                >/. - fast forward 10 seconds
103
 
                F/f - fullscreen or not
104
 
 
105
 
* Mon Nov 22 2004 Hiroaki Nozaki <Hiroaki.Nozaki@Sun.COM> 2.66-jds5
106
 
- add flags to appear/disappear each control component
107
 
- fix tracker problem : pause button appears not to work
108
 
- add "keepratio" flag to select whether keeping original image ratio or
109
 
  adjusting image into width x height
110
 
 
111
 
* Mon Aug 16 2004 Hisao SHIBUYA <Hisao.Shibuya@Sun.COM> 2.66-jds4
112
 
- clean up control bottun problem
113
 
 
114
 
* Thu Aug 12 2004 Hisao SHIBUYA <Hisao.Shibuya@Sun.COM> 2.66-jds3
115
 
- fix play count problem
116
 
 
117
 
* Thu Aug 12 2004 Hisao SHIBUYA <Hisao.Shibuya@Sun.COM> 2.66-jds2
118
 
- fix control bottun problem
119
 
 
120
 
* Fri Aug 06 2004 Hisao SHIBUYA <Hisao.Shibuya@Sun.COM> 2.66-jds1
121
 
- rebuild on JDS2
122
 
 
123
 
* Thu Jul 01 2004 Nick Pietraniec
124
 
  Updated to version 2.66 for Suse9.1
125
 
 
126
 
* Wed Apr 21 2004 Nick Pietraniec
127
 
  Updated to version 2.60 for Suse 9.
128
 
 
129
 
* Fri Apr 02 2004 Nick Pietraniec
130
 
  Updated to version 2.50 for Suse 9.
131
 
 
132
 
* Mon Mar 15 2004 Nick Pietraniec
133
 
  Updated to version 2.45 for Suse 9.  I've purposfully left out
134
 
  rpm dependencies due to the fact that there doesn't seem to be
135
 
  any official suse mplayer RPMS.
136
 
 
137
 
* Fri Jan 16 2004 Nick Pietraniec
138
 
  Updated to version 1.1 for SuSE 9
139
 
 
140
 
* Tue Dec 02 2003 Nick Pietraniec
141
 
  Updated to version 1.0 for SuSE
142
 
 
143
 
* Mon Oct 20 2003 Kevin DeKorte
144
 
  More fixes
145
 
 
146
 
* Thu Oct 16 2003 Kevin DeKorte
147
 
  v1.0pre2
148
 
  compatibility with mplayer 1.0pre2
149
 
 
150
 
* Fri Oct 03 2003 Kevin DeKorte
151
 
  v0.95
152
 
  True streaming support
153
 
  Improved playlist capability
154
 
  Improved status window
155
 
  Mplayer 0.92 is a prerequisite
156
 
 
157
 
* Wed Sep 10 2003 Kevin DeKorte
158
 
  Fix errors in 0.90
159
 
  Downloading feature disabled for now.
160
 
 
161
 
* Sun Sep 07 2003 Kevin DeKorte
162
 
  See ChangeLog for code changes
163
 
 
164
 
* Mon Mar 03 2003 Michael A. Peters <mpeters@mac.com>
165
 
- created spec file