From 1c27bfdf390aeadebb416913965e1c611a9724f6 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Wed, 16 Jun 2010 14:33:41 -0500 Subject: multimedia/miro: Added (Online media aggregator) Signed-off-by: Erik Hanson --- multimedia/miro/README | 7 +++ multimedia/miro/doinst.sh | 14 ++++++ multimedia/miro/miro.SlackBuild | 97 +++++++++++++++++++++++++++++++++++++++++ multimedia/miro/miro.info | 10 +++++ multimedia/miro/slack-desc | 19 ++++++++ 5 files changed, 147 insertions(+) create mode 100644 multimedia/miro/README create mode 100644 multimedia/miro/doinst.sh create mode 100644 multimedia/miro/miro.SlackBuild create mode 100644 multimedia/miro/miro.info create mode 100644 multimedia/miro/slack-desc (limited to 'multimedia') diff --git a/multimedia/miro/README b/multimedia/miro/README new file mode 100644 index 0000000000..3f766dc5d9 --- /dev/null +++ b/multimedia/miro/README @@ -0,0 +1,7 @@ +Miro is a free Internet television application for the online +Democracy Network. + +Miro requires gst-python, libtorrent-rasterbar, gnome-python +and pywebkit. + +Optional dependencies are gst-plugins-bad and gst-plugins-ugly. diff --git a/multimedia/miro/doinst.sh b/multimedia/miro/doinst.sh new file mode 100644 index 0000000000..9830478e8c --- /dev/null +++ b/multimedia/miro/doinst.sh @@ -0,0 +1,14 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/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/miro/miro.SlackBuild b/multimedia/miro/miro.SlackBuild new file mode 100644 index 0000000000..aa02808d5c --- /dev/null +++ b/multimedia/miro/miro.SlackBuild @@ -0,0 +1,97 @@ +#!/bin/sh + +# Slackware build script for Miro + +# Copyright 2009-2010 Larry Hajali +# 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 ''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=miro +VERSION=3.0.2 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +cd platform/gtk-x11 + sed -i 's|share/man|man|g' setup.py + CFLAGS="$SLKCFLAGS" python setup.py install --root=$PKG --no-compile +cd - + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Remove unneeded files. +PYVER=$(python -c 'import sys; print sys.version[:3]') +rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/python${PYVER}/site-packages/miro/test +rm -rf $PKG/usr/share/miro/resources/testdata + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + CREDITS LAYOUT license.txt README \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat platform/gtk-x11/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.linux +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/miro/miro.info b/multimedia/miro/miro.info new file mode 100644 index 0000000000..f8cbe262fb --- /dev/null +++ b/multimedia/miro/miro.info @@ -0,0 +1,10 @@ +PRGNAM="miro" +VERSION="3.0.2" +HOMEPAGE="http://www.getmiro.com/" +DOWNLOAD="http://ftp.osuosl.org/pub/pculture.org/miro/src/miro-3.0.2.tar.gz" +MD5SUM="385ac3f7478bfd88c87b8a47d356bd4f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="Erik Hanson" diff --git a/multimedia/miro/slack-desc b/multimedia/miro/slack-desc new file mode 100644 index 0000000000..46d02a13e2 --- /dev/null +++ b/multimedia/miro/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 ':'. + + |-----handy-ruler------------------------------------------------------| +miro: miro (Online media aggregator) +miro: +miro: Miro is a free Internet television application for the online +miro: Democracy Network. +miro: +miro: Homepage: http://www.getmiro.com/ +miro: +miro: +miro: +miro: +miro: -- cgit v1.2.3