From c30295a9fc9ababce635e8272c0b7ba90ca708a0 Mon Sep 17 00:00:00 2001 From: Hunter Sezen Date: Tue, 2 Aug 2016 23:53:16 +0100 Subject: multimedia/lightspark: Added (Open source flash player). Signed-off-by: David Spencer --- multimedia/lightspark/README | 20 ++++++ multimedia/lightspark/doinst.sh | 24 +++++++ multimedia/lightspark/lightspark.SlackBuild | 107 ++++++++++++++++++++++++++++ multimedia/lightspark/lightspark.info | 10 +++ multimedia/lightspark/slack-desc | 19 +++++ 5 files changed, 180 insertions(+) create mode 100644 multimedia/lightspark/README create mode 100644 multimedia/lightspark/doinst.sh create mode 100644 multimedia/lightspark/lightspark.SlackBuild create mode 100644 multimedia/lightspark/lightspark.info create mode 100644 multimedia/lightspark/slack-desc (limited to 'multimedia') diff --git a/multimedia/lightspark/README b/multimedia/lightspark/README new file mode 100644 index 0000000000..236e611023 --- /dev/null +++ b/multimedia/lightspark/README @@ -0,0 +1,20 @@ +Lightspark is an open source Flash player implementation for playing +files in SWF format. Lightspark can run as a web browser plugin or as +a standalone application. + +Lightspark supports SWF files written on the newest version of the +ActionScript language, ActionScript 3.0, which was introduced at the +same time as Flash player 9. + +Lightspark can be built with either pulseaudio and/or sdl as an audio +backend. + +By default both the pulseaudio and sdl backends will be built. + +To build with sdl but not pulseaudio: + AUDIO="sdl" ./lightspark.SlackBuild + +To build with pulseaudio but not sdl: + AUDIO="pulseaudio" ./lightspark.SlackBuild + +Optional dependency: gnash can optionally be used as fallback support. diff --git a/multimedia/lightspark/doinst.sh b/multimedia/lightspark/doinst.sh new file mode 100644 index 0000000000..15b29de4d2 --- /dev/null +++ b/multimedia/lightspark/doinst.sh @@ -0,0 +1,24 @@ +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/xdg/lightspark.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/multimedia/lightspark/lightspark.SlackBuild b/multimedia/lightspark/lightspark.SlackBuild new file mode 100644 index 0000000000..3269863c97 --- /dev/null +++ b/multimedia/lightspark/lightspark.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/sh + +# Slackware build script for lightspark + +# Copyright 2016 Hunter Sezen California, USA +# 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. + +PRGNAM=lightspark +VERSION=${VERSION:-2016.07.10_62dbb13} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +AUDIO=${AUDIO:-pulseaudio sdl} + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DMANUAL_DIRECTORY=man \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -DGNASH_EXE_PATH=/usr/bin/gtk-gnash \ + -DAUDIO_BACKEND="$AUDIO" \ + -Wno-dev \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. + +mv $PKG/etc/xdg/lightspark.conf $PKG/etc/xdg/lightspark.conf.new + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CONTRIBUT* COPYING* ChangeLog README* RELEASING TESTING $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} diff --git a/multimedia/lightspark/lightspark.info b/multimedia/lightspark/lightspark.info new file mode 100644 index 0000000000..35df0ebd34 --- /dev/null +++ b/multimedia/lightspark/lightspark.info @@ -0,0 +1,10 @@ +PRGNAM="lightspark" +VERSION="2016.07.10_62dbb13" +HOMEPAGE="https://lightspark.github.io/" +DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/lightspark-2016.07.10_62dbb13.tar.xz" +MD5SUM="49f665470195102dadeb5aa08d845e45" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="ffmpeg rtmpdump" +MAINTAINER="Hunter Sezen" +EMAIL="ovariegata@yahoo.com" diff --git a/multimedia/lightspark/slack-desc b/multimedia/lightspark/slack-desc new file mode 100644 index 0000000000..b6b7b5fc03 --- /dev/null +++ b/multimedia/lightspark/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +lightspark: lightspark (Open source flash player implementation) +lightspark: +lightspark: Lightspark is an open source Flash player implementation for playing +lightspark: files in SWF format. Lightspark can run as a web browser plugin or as +lightspark: a standalone application. +lightspark: +lightspark: Homepage: https://lightspark.github.io/ +lightspark: +lightspark: +lightspark: +lightspark: -- cgit v1.2.3