multimedia/gimp-gap: Updated for version 2.6.0.

Disabled parallel building

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2012-09-10 22:56:28 +02:00 committed by Robby Workman
parent 1cb7f82787
commit ac04695ab4
3 changed files with 15 additions and 10 deletions

View file

@ -1,4 +1,4 @@
GIMP-GAP, the GIMP Animation Package, is a collection of plug-ins
GIMP-GAP (GIMP Animation Package), is a collection of plug-ins
to extend GIMP 2.6 and above with capabilities to edit and create
animations as sequences of single frames.
@ -10,9 +10,9 @@ FAAC=yes|no (default: yes), requires faac
FAAD=yes|no (default: yes), requires faad2
X264=yes|no (default: yes), requires x264
AVFORMAT=yes|no (default: yes), requires ffmpeg
MPEG=yes|no (default: yes), requires libmpeg2
MPEG=yes|no (default: yes), requires libmpeg
XVID=yes|no (default: yes), requires xvidcore
NOTE: If you build this package using internal ffmpeg package and
using texlive instead of tetex, you need to uncomment line 102 of
the build script (remove the "#" character).
using texlive instead of tetex, you need to remove the "#"
character in line 106

View file

@ -1,7 +1,7 @@
#!/bin/sh
# Slackware build script for gimp-gap
# Copyright 2010-2011 Willy Sudiarto Raharjo <willysr@slackware-id.org>
# Copyright 2010-2012 Willy Sudiarto Raharjo <willysr@slackware-id.org>
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for any purpose
@ -19,9 +19,12 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# ChangeLog
# August, 1: Added LIBS="-lm" to compile
PRGNAM=gimp-gap
VERSION=${VERSION:-2.6.0}
BUILD=${BUILD:-2}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -88,20 +91,22 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--disable-audio-support \
--build=$ARCH-slackware-linux \
$mp3lame \
$libfaac \
$libfaad \
$libx264 \
$libavformat \
$libmpeg \
$libxvid
$libxvid \
--build=$ARCH-slackware-linux \
LIBS="-lm"
# Thanks to Heinz Wiesinger for the patch
# This patch should fix compilation if internal ffmpeg is used
#patch -p0 -i $CWD/patch-ffmpeg-Makefile.diff
make
# Parallel building seems broken
make -j1
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \

View file

@ -5,6 +5,6 @@ DOWNLOAD="ftp://ftp.gimp.org/pub/gimp/plug-ins/v2.6/gap/gimp-gap-2.6.0.tar.bz2"
MD5SUM="249ed829de8b78675c0fe4ef4212089f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="faac faad2 ffmpeg libmpeg2 xvidcore"
REQUIRES=""
MAINTAINER="Willy Sudiarto Raharjo"
EMAIL="willysr@slackware-id.org"