| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- ##
- ## mozilla-mplayer.spec -- OpenPKG RPM Package Specification
- ## Copyright (c) 2000-2005 OpenPKG Foundation e.V. <http://openpkg.net/>
- ## Copyright (c) 2000-2005 Ralf S. Engelschall <http://engelschall.com/>
- ##
- ## Permission to use, copy, modify, and distribute this software for
- ## any purpose with or without fee is hereby granted, provided that
- ## the above copyright notice and this permission notice appear in all
- ## copies.
- ##
- ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
- ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- ## SUCH DAMAGE.
- ##
- # package information
- Name: mozilla-mplayer
- Summary: Mozilla MPlayer Plugin
- URL: http://mplayerplug-in.sourceforge.net/
- Vendor: Kevin DeKorte
- Packager: OpenPKG
- Distribution: OpenPKG
- Class: EVAL
- Group: Web
- License: GPL
- Version: 3.15
- Release: 20051104
- # list of sources
- Source0: http://osdn.dl.sourceforge.net/mplayerplug-in/mplayerplug-in-%{version}.tar.gz
- Patch0: mozilla-mplayer.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20040130, gcc
- PreReq: OpenPKG, openpkg >= 20040130, mplayer
- BuildPreReq: X11, mozilla, mozilla::with_sdk = yes
- PreReq: X11, mozilla, mozilla::with_sdk = yes
- AutoReq: no
- AutoReqProv: no
- %description
- This is the MPLayer Plugin for the Mozilla web browser. It allows
- embedded playing of Windows Media, Quicktime and MPEG video format
- files.
- %track
- prog mozilla-mplayer = {
- version = %{version}
- url = http://prdownloads.sourceforge.net/mplayerplug-in/
- regex = mplayerplug-in-(__VER__)\.tar\.gz
- }
- %prep
- %setup -q -n mplayerplug-in
- %patch -p0
- %{l_shtool} subst \
- -e '/\/etc\/mplayerplug/s;/etc;%{l_prefix}/etc/mozilla-mplayer;' \
- Source/plugin-setup.cpp
- %build
- # determine standard build flags
- export CC="%{l_cc}"
- export CPPFLAGS="%{l_cppflags}"
- export CFLAGS="%{l_cflags -O} %{l_cppflags}"
- export LDFLAGS="%{l_ldflags}"
- export LIBS="%{l_ldflags}"
- # determine additional X11 build flags
- CPPFLAGS="$CPPFLAGS -I`%{l_rc} --query x11_incdir`"
- CFLAGS="$CFLAGS -I`%{l_rc} --query x11_incdir`"
- LDFLAGS="$LDFLAGS -L`%{l_rc} --query x11_libdir`"
- LIBS="$LIBS -L`%{l_rc} --query x11_libdir`"
- # determine additional Mozilla build flags
- CPPFLAGS="$CPPFLAGS `pkg-config mozilla-plugin --cflags-only-I`"
- CFLAGS="$CFLAGS `pkg-config mozilla-plugin --cflags-only-other`"
- LDFLAGS="$LDFLAGS `pkg-config mozilla-plugin --libs-only-L`"
- LIBS="$LIBS `pkg-config mozilla-plugin --libs-only-other`"
- LIBS="$LIBS %{l_ldflags mozilla}"
- # configure plugin
- ./configure \
- --prefix=%{l_prefix} \
- --with-x \
- --x-includes=`%{l_rc} --query x11_incdir` \
- --x-libraries=`%{l_rc} --query x11_libdir` \
- --disable-gtk2 \
- --enable-gtk1 \
- --with-gecko-sdk=%{l_prefix}/lib/mozilla
- # build plugin
- %{l_make} %{l_mflags}
- %install
- # install plugin
- rm -rf $RPM_BUILD_ROOT
- %{l_shtool} mkdir -f -p -m 755 \
- $RPM_BUILD_ROOT%{l_prefix}/etc/mozilla-mplayer \
- $RPM_BUILD_ROOT%{l_prefix}/lib/mozilla/plugins
- %{l_shtool} install -c -m 755 \
- mplayerplug-in.so $RPM_BUILD_ROOT%{l_prefix}/lib/mozilla/plugins/
- %{l_shtool} install -c -m 644 \
- mplayerplug-in.conf mplayerplug-in.types \
- $RPM_BUILD_ROOT%{l_prefix}/etc/mozilla-mplayer/
- # determine installation files
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
- %{l_files_std} \
- '%config %{l_prefix}/etc/mozilla-mplayer/*' \
- '%not %dir %{l_prefix}/lib/mozilla' \
- '%not %dir %{l_prefix}/lib/mozilla/plugins'
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|