multimedia/mplayerplug-in: Initial import

This commit is contained in:
MagicMan 2010-05-11 15:00:28 +02:00 committed by Robby Workman
parent 3d8185209a
commit 380ee39960
5 changed files with 137 additions and 0 deletions

View File

@ -0,0 +1,11 @@
mplayerplug-in is a browser plugin that uses MPlayer to play
digital media from websites. This plug-in gives Mozilla the
ability to play media from a website the net without reading
the source html and getting the url manually. Media is played
embedded in the page or in a separate window depending on how
the author of the webpage intended the media to be seen.
You will need to have MPlayer installed (which is available at
SlackBuilds.org) in order to use this package. Also, make sure
you have the SeaMonkey package (from stock Slackware) installed.

View File

@ -0,0 +1,16 @@
config() {
NEW="$1"
OLD="`dirname $NEW`/`basename $NEW .new`"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/mplayerplug-in.conf.new
config etc/mplayerplug-in.types.new

View File

@ -0,0 +1,91 @@
#!/bin/sh
# Slackware build script for mplayerplug-in
# Copyright 2007 MagicMan <MagicMan07@bluebottle.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS 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 AUTHOR 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.
# Modified by the SlackBuilds.org project
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root!"
exit 1
fi
set -e
PRGNAM=mplayerplug-in
VERSION=3.35
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
PDOCS="ChangeLog INSTALL LICENSE README TODO DOCS/*"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-gmp
make
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $PDOCS $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# Let's not overwrite existing config files
mv $PKG/etc/mplayerplug-in.conf $PKG/etc/mplayerplug-in.conf.new
mv $PKG/etc/mplayerplug-in.types $PKG/etc/mplayerplug-in.types.new
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View File

@ -0,0 +1,8 @@
PRGNAM="mplayerplug-in"
VERSION="3.35"
HOMEPAGE="http://mplayerplug-in.sourceforge.net/"
DOWNLOAD="http://dl.sourceforge.net/mplayerplug-in/mplayerplug-in-3.35.tar.gz"
MD5SUM="5efa01fa433ee4c7118e534c36198e72"
MAINTAINER="MagicMan"
EMAIL="MagicMan07@bluebottle.com"
APPROVED="rworkman"

View File

@ -0,0 +1,11 @@
mplayerplug-in: mplayerplug-in (Embedded Video Player for Mozilla)
mplayerplug-in:
mplayerplug-in: mplayerplug-in is a browser plugin that uses MPlayer to play
mplayerplug-in: digital media from websites. This plug-in gives Mozilla the
mplayerplug-in: ability to play media from a website the net without reading
mplayerplug-in: the source html and getting the url manually. Media is played
mplayerplug-in: embedded in the page or in a separate window depending on how
mplayerplug-in: the author of the webpage intended the media to be seen.
mplayerplug-in:
mplayerplug-in: Homepage: http://mplayerplug-in.sourceforge.net/
mplayerplug-in: