summaryrefslogtreecommitdiffstats
path: root/multimedia/gimp-gap
diff options
context:
space:
mode:
author Robby Workman2021-04-20 03:45:22 +0200
committer Robby Workman2021-04-20 03:45:22 +0200
commite5975ff40dfeac024e6ecb0bc3fa5b7115c4d9a7 (patch)
treefa5eae2a7aae09bf1690a936f5e73cb36d4d6f95 /multimedia/gimp-gap
parent6d1814bcc1b911cbd7144fb172422e46a0b39d26 (diff)
downloadslackbuilds-e5975ff40dfeac024e6ecb0bc3fa5b7115c4d9a7.tar.gz
multimedia/gimp-gap: Fixed dep info
Diffstat (limited to 'multimedia/gimp-gap')
-rw-r--r--multimedia/gimp-gap/README4
-rw-r--r--multimedia/gimp-gap/gimp-gap.SlackBuild10
2 files changed, 3 insertions, 11 deletions
diff --git a/multimedia/gimp-gap/README b/multimedia/gimp-gap/README
index 230cfdbc88..78dec30f50 100644
--- a/multimedia/gimp-gap/README
+++ b/multimedia/gimp-gap/README
@@ -5,14 +5,12 @@ animations as sequences of single frames.
By default, the script will try to detect all optional requirements.
In case you don't have those requirements, you can disable it by
passing variables to the script (VAR=yes/no ./gimp-gap.SlackBuild):
-LAME=yes|no (default: yes), requires lame
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 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 remove the "#"
-character in line 106
+character in line 102
diff --git a/multimedia/gimp-gap/gimp-gap.SlackBuild b/multimedia/gimp-gap/gimp-gap.SlackBuild
index 29e6c672a2..a130d02d0a 100644
--- a/multimedia/gimp-gap/gimp-gap.SlackBuild
+++ b/multimedia/gimp-gap/gimp-gap.SlackBuild
@@ -1,4 +1,5 @@
#!/bin/sh
+
# Slackware build script for gimp-gap
# Copyright 2010-2012 Willy Sudiarto Raharjo <willysr@slackware-id.org>
@@ -19,12 +20,9 @@
# (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:-3}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -58,11 +56,9 @@ DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README \
docs/howto/txt/HOWTO-do-lossless-MPEG-cut.txt \
docs/howto/txt/HOWTO-write-animated-plug-ins.txt"
-mp3lame="" ; [ "${LAME:-yes}" != "yes" ] && mp3lame="--disable-ff-libmp3lame"
libfaac="" ; [ "${FAAC:-yes}" != "yes" ] && libfaac="--disable-ff-libfaac"
libfaad="" ; [ "${FAAD:-yes}" != "yes" ] && libfaad="--disable-ff-libfaad"
libx264="" ; [ "${X264:-yes}" != "yes" ] && libx264="--disable-ff-libx264"
-libavformat="" ; [ "${AVFORMAT:-yes}" != "yes" ] && libavformat="--disable-libavformat"
libmpeg="" ; [ "${MPEG:-yes}" != "yes" ] && libmpeg="--disable-libmpeg3"
libxvid="" ; [ "${XVID:-yes}" != "yes" ] && libxvid="--disable-libxvidcore"
@@ -91,11 +87,9 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--disable-audio-support \
- $mp3lame \
$libfaac \
$libfaad \
$libx264 \
- $libavformat \
$libmpeg \
$libxvid \
--build=$ARCH-slackware-linux \