graphics/hugin: Added to 12.1 repository
This commit is contained in:
parent
c7f1fe44c4
commit
810d64098b
|
@ -0,0 +1,16 @@
|
|||
An easy to use cross-platform panoramic imaging toolchain based on
|
||||
Panorama Tools. With hugin you can assemble a mosaic of photographs
|
||||
into a complete immersive panorama, stitch any series of overlapping
|
||||
pictures and much more.
|
||||
|
||||
Build Requirements:
|
||||
wxWidgets (wxPython, wxGTK, wxX11). Only tested with wxPython.
|
||||
libpano13
|
||||
boost
|
||||
openexr
|
||||
exiv2
|
||||
|
||||
Run-time requirements:
|
||||
exiftool
|
||||
enblend
|
||||
autopano-sift-C
|
|
@ -0,0 +1,3 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications &> /dev/null
|
||||
fi
|
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Hugin
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
set -eu
|
||||
|
||||
PRGNAM=hugin
|
||||
VERSION=0.7.0_rc2
|
||||
SRCVER=0.7.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"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$SRCVER
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$SRCVER
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
|
||||
-DCMAKE_EXE_LINKER_FLAGS="-lpthread" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr .
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | egrep "ELF.*executable" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find $PKG | xargs file | egrep "ELF.*shared object" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr/man
|
||||
gzip -9 $PKG/usr/man/man?/*.?
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL_cmake LICENCE LICENCE_JHEAD \
|
||||
LICENCE_VIGRA README README_JP README_WINDOWS TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
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.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="hugin"
|
||||
VERSION="0.7.0_rc2"
|
||||
HOMEPAGE="http://hugin.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/hugin/hugin-0.7.0_rc2.tar.gz"
|
||||
MD5SUM="41d7c79aa23bdd017e23e93f265b9e49"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="David Somero"
|
|
@ -0,0 +1,11 @@
|
|||
hugin: Hugin (Panorama photo stitcher)
|
||||
hugin:
|
||||
hugin: An easy to use cross-platform panoramic imaging toolchain based on
|
||||
hugin: Panorama Tools. With hugin you can assemble a mosaic of photographs
|
||||
hugin: into a complete immersive panorama, stitch any series of overlapping
|
||||
hugin: pictures and much more.
|
||||
hugin:
|
||||
hugin:
|
||||
hugin:
|
||||
hugin: http://hugin.sourceforge.net/
|
||||
hugin:
|
Loading…
Reference in New Issue