From e01271417bae5ea02340b906449146aed9008fd7 Mon Sep 17 00:00:00 2001 From: Zoran Stojakovic Date: Thu, 13 May 2010 00:59:41 +0200 Subject: multimedia/guvcview: Added to 13.0 repository --- multimedia/guvcview/README | 7 +++ multimedia/guvcview/guvcview.SlackBuild | 79 +++++++++++++++++++++++++++++++++ multimedia/guvcview/guvcview.info | 10 +++++ multimedia/guvcview/slack-desc | 19 ++++++++ 4 files changed, 115 insertions(+) create mode 100644 multimedia/guvcview/README create mode 100644 multimedia/guvcview/guvcview.SlackBuild create mode 100644 multimedia/guvcview/guvcview.info create mode 100644 multimedia/guvcview/slack-desc (limited to 'multimedia/guvcview') diff --git a/multimedia/guvcview/README b/multimedia/guvcview/README new file mode 100644 index 0000000000..e50bb79cfa --- /dev/null +++ b/multimedia/guvcview/README @@ -0,0 +1,7 @@ +guvcview (GTK+ UVC Viewer) + +This project aims at providing a simple GTK interface for capturing +and viewing video from devices supported by the linux UVC driver, +although it should also work with any v4l2 compatible device. + +This requires twolame, portaudio, and ffmpeg. diff --git a/multimedia/guvcview/guvcview.SlackBuild b/multimedia/guvcview/guvcview.SlackBuild new file mode 100644 index 0000000000..11aa09d39c --- /dev/null +++ b/multimedia/guvcview/guvcview.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/sh + +# Slackware build script for + +# Written by Zoran Stojakovic (stojakovic.zoran@gmail.com) + +PRGNAM=guvcview +VERSION=${VERSION:-1.2.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-src-$VERSION.tar.gz +cd $PRGNAM-src-$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 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make \ + guvcviewmandir=/usr/man \ + guvcviewdocdir=/usr/doc/$PRGNAM-$VERSION + +make install \ + guvcviewmandir=/usr/man \ + guvcviewdocdir=/usr/doc/$PRGNAM-$VERSION \ + DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true +) + +cp -a TODO.tasks $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/* + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/multimedia/guvcview/guvcview.info b/multimedia/guvcview/guvcview.info new file mode 100644 index 0000000000..3b0da3b82c --- /dev/null +++ b/multimedia/guvcview/guvcview.info @@ -0,0 +1,10 @@ +PRGNAM="guvcview" +VERSION="1.2.0" +HOMEPAGE="http://guvcview.berlios.de/" +DOWNLOAD="http://download.berlios.de/guvcview/guvcview-src-1.2.0.tar.gz" +MD5SUM="786fe95981c02c30ff3ba22d936a9dd9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Zoran Stojakovic" +EMAIL="stojakovic.zoran@gmail.com" +APPROVED="rworkman" diff --git a/multimedia/guvcview/slack-desc b/multimedia/guvcview/slack-desc new file mode 100644 index 0000000000..9eb15088f8 --- /dev/null +++ b/multimedia/guvcview/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-------------------------------------------------------| +guvcview: guvcview (GTK+ UVC Viewer) +guvcview: +guvcview: This project aims at providing a simple GTK interface for capturing +guvcview: and viewing video from devices supported by the linux UVC driver, +guvcview: although it should also work with any v4l2 compatible device +guvcview: +guvcview: The project is based on luvcview for video rendering, but all controls +guvcview: are built using a GTK2 interface. +guvcview: +guvcview: http://guvcview.berlios.de/ +guvcview: -- cgit v1.2.3