multimedia/gimp-gap: Fixed dep info

This commit is contained in:
Robby Workman 2021-04-19 20:45:22 -05:00
parent 6d1814bcc1
commit e5975ff40d
2 changed files with 3 additions and 11 deletions

View File

@ -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

View File

@ -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 \