multimedia/guvcview: Removed (build failure)
This appears related to libpng14
This commit is contained in:
parent
73710da9a8
commit
86f20d7852
|
@ -1,7 +0,0 @@
|
|||
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.
|
|
@ -1,75 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for <appname>
|
||||
|
||||
# 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
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "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}
|
|
@ -1,10 +0,0 @@
|
|||
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"
|
|
@ -1,19 +0,0 @@
|
|||
# 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:
|
Loading…
Reference in New Issue