From 1cac7de2b71d5e002e7ccc766f9c5384c553f433 Mon Sep 17 00:00:00 2001 From: Philip Lacroix Date: Sat, 18 Apr 2015 03:34:47 +0700 Subject: multimedia/coriander: Added (Control IEEE-1394 digital cameras). Signed-off-by: Willy Sudiarto Raharjo --- multimedia/coriander/README | 8 +++ multimedia/coriander/coriander.SlackBuild | 109 ++++++++++++++++++++++++++++++ multimedia/coriander/coriander.desktop | 11 +++ multimedia/coriander/coriander.info | 10 +++ multimedia/coriander/doinst.sh | 9 +++ multimedia/coriander/slack-desc | 19 ++++++ 6 files changed, 166 insertions(+) create mode 100644 multimedia/coriander/README create mode 100644 multimedia/coriander/coriander.SlackBuild create mode 100644 multimedia/coriander/coriander.desktop create mode 100644 multimedia/coriander/coriander.info create mode 100644 multimedia/coriander/doinst.sh create mode 100644 multimedia/coriander/slack-desc (limited to 'multimedia/coriander') diff --git a/multimedia/coriander/README b/multimedia/coriander/README new file mode 100644 index 0000000000..dd4c900a62 --- /dev/null +++ b/multimedia/coriander/README @@ -0,0 +1,8 @@ +Coriander is a full-featured graphical interface for controlling digital cameras +through the IEEE-1394 bus (i.e. FireWire or iLink). It can also record videos, +send images to an FTP site and convert videos to V4L streams. A live display is +provided as well. The program will work with any camera which is compatible with +the IIDC specifications (v1.04 or later): this includes most 1394 webcams and +many industrial or scientific cameras. + +Optional dependencies: ftplib (FTP support) diff --git a/multimedia/coriander/coriander.SlackBuild b/multimedia/coriander/coriander.SlackBuild new file mode 100644 index 0000000000..f7231d9243 --- /dev/null +++ b/multimedia/coriander/coriander.SlackBuild @@ -0,0 +1,109 @@ +#!/bin/sh + +# Slackware build script for coriander + +# Copyright 2015 Philip Lacroix +# 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=coriander +VERSION=${VERSION:-2.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 xvzf $CWD/$PRGNAM-$VERSION.tar.gz + +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 {} \; + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --enable-static=no \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +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 + +PRGSHR=$PKG/usr/share +PRGICN=$PKG/usr/share/icons/hicolor +PRGDOC=$PKG/usr/doc/$PRGNAM-$VERSION + +# Copy desktop file. +mkdir -p $PRGSHR/applications +cat $CWD/$PRGNAM.desktop > $PRGSHR/applications/$PRGNAM.desktop + +# Create symlinks to available icons. +mkdir -p $PRGICN/{48x48,128x128}/apps +pixm=/usr/share/pixmaps +ln -sf $pixm/$PRGNAM/$PRGNAM-icon.png $PRGICN/48x48/apps/$PRGNAM.png +ln -sf $pixm/$PRGNAM/$PRGNAM-logo.png $PRGICN/128x128/apps/$PRGNAM.png + +# Install documentation. +mkdir -p $PRGDOC +cp -a AUTHORS COPYING INSTALL README $PRGDOC/ +cat $CWD/$PRGNAM.SlackBuild > $PRGDOC/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/doinst.sh > $PKG/install/doinst.sh +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/coriander/coriander.desktop b/multimedia/coriander/coriander.desktop new file mode 100644 index 0000000000..69258dc4d7 --- /dev/null +++ b/multimedia/coriander/coriander.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=Coriander +GenericName=IEEE-1394 Digital Camera Controller +Comment=Control IEEE-1394 digital cameras compatible with the IIDC specifications +Exec=coriander +Icon=/usr/share/icons/hicolor/128x128/apps/coriander.png +Terminal=false +Categories=Application;AudioVideo;Video;GTK; +StartupNotify=true diff --git a/multimedia/coriander/coriander.info b/multimedia/coriander/coriander.info new file mode 100644 index 0000000000..f594495a75 --- /dev/null +++ b/multimedia/coriander/coriander.info @@ -0,0 +1,10 @@ +PRGNAM="coriander" +VERSION="2.0.2" +HOMEPAGE="http://damien.douxchamps.net/ieee1394/coriander/" +DOWNLOAD="http://sourceforge.net/projects/coriander/files/coriander-2/2.0.2/coriander-2.0.2.tar.gz" +MD5SUM="431d98fb013217681f97ade168201fb8" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="libdc1394 libgnomeui" +MAINTAINER="Philip Lacroix" +EMAIL="philnx at posteo dot de" diff --git a/multimedia/coriander/doinst.sh b/multimedia/coriander/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/multimedia/coriander/doinst.sh @@ -0,0 +1,9 @@ +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/coriander/slack-desc b/multimedia/coriander/slack-desc new file mode 100644 index 0000000000..a123866cf4 --- /dev/null +++ b/multimedia/coriander/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------------------------------------------------------| +coriander: Coriander (program to control IEEE-1394 digital cameras) +coriander: +coriander: Coriander is a full-featured graphical interface for controlling a +coriander: digital camera through the IEEE-1394 bus (i.e. FireWire or iLink). +coriander: It can also record videos, send images to an FTP site and convert +coriander: videos to V4L streams. A live display is provided. The program will +coriander: work with IIDC-compatible devices (v1.04 or later) including most +coriander: 1394 webcams and many industrial and scientific cameras. +coriander: +coriander: Homepage: http://damien.douxchamps.net/ieee1394/coriander/ +coriander: -- cgit v1.2.3