summaryrefslogtreecommitdiffstats
path: root/MPlayer
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2011-08-31 08:59:58 +0000
committer Eric Hameleers <alien@slackware.com>2011-08-31 08:59:58 +0000
commitef3fcdd7a6022d5147ff3ee9280ff4f844dc62f0 (patch)
tree8a6fdaa503bcfbdde9467b63d07e295508caf494 /MPlayer
parentf924bf3b3d9d2c17d7022733b76dd7dbac661c07 (diff)
downloadasb-ef3fcdd7a6022d5147ff3ee9280ff4f844dc62f0.tar.gz
asb-ef3fcdd7a6022d5147ff3ee9280ff4f844dc62f0.tar.xz
Update to a 20110831 snapshot
Diffstat (limited to 'MPlayer')
-rwxr-xr-xMPlayer/build/MPlayer.SlackBuild16
1 files changed, 9 insertions, 7 deletions
diff --git a/MPlayer/build/MPlayer.SlackBuild b/MPlayer/build/MPlayer.SlackBuild
index 48495d85..4278c064 100755
--- a/MPlayer/build/MPlayer.SlackBuild
+++ b/MPlayer/build/MPlayer.SlackBuild
@@ -75,6 +75,8 @@
# * Provide an up-to-date snapshot to be used in conjunction
# with UMPlayer (a MPlayer GUI). New MPlayer source requires
# a separate ffmpeg download.
+# 20110831-1: 31/aug/2011 by Eric Hameleers <alien@slackware.com>
+# * Update the used snapshot.
#
# Run 'sh MPlayer.SlackBuild' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -85,7 +87,8 @@
# Set initial variables:
PRGNAM=MPlayer
-VERSION=${VERSION:-20110624}
+VERSION=${VERSION:-20110831}
+FFMPEG=${FFMPEG:-HEAD}
BUILD=${BUILD:-1}
TAG=${TAG:-alien}
@@ -96,7 +99,7 @@ SKINVER=${SKINVER:-"1.7"} # http://www.mplayerhq.hu/design7/dload.html
# Available languages: all bg cs de dk el en es fr hu it ja
# ko mk nb nl pl ro ru sk sv tr uk pt_BR zh_CN zh_TW
-LANGUAGES="en nl fr de es" # The default is to just add "en" documentation
+LANGUAGES="all" # The default is to just add "en" documentation
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -211,22 +214,22 @@ src_checkout() {
&& tar -${TARCOMP}cf ${2} MPlayer-${VERSION}
rm -rf MPlayer-${VERSION}
;;
- 2) # ffmpeg-${VERSION}
+ 2) # ffmpeg-${FFMPEG}
GITURI=git://git.videolan.org/ffmpeg.git
mkdir ffmpeg_temp_checkout_$$ \
&& cd ffmpeg_temp_checkout_$$
- if [ "$VERSION" = "HEAD" ]; then
+ if [ "$FFMPEG" = "HEAD" ]; then
# Checkout without downloading version history (fast!):
echo "Checking out HEAD from '$GITURI':"
git clone --depth=1 ${GITURI} ffmpeg
else
# Checkout code from a certain branch and/or date; this will take a
# long time because we have to clone the complete git-repository first:
- echo "Checking out branch 'master' at date $VERSION from '$GITURI':"
+ echo "Checking out branch 'master' at date $FFMPEG from '$GITURI':"
git clone ${GITURI} ffmpeg \
&& cd ffmpeg \
&& git checkout master \
- && git checkout $(git rev-list -n 1 --before="`date -d $VERSION`" master) \
+ && git checkout $(git rev-list -n 1 --before="`date -d $FFMPEG`" master) \
&& cd ..
fi
chown -R root:root . \
@@ -348,7 +351,6 @@ echo Building ...
--prefix=/usr \
--mandir=/usr/man \
--confdir=/etc/mplayer \
- --enable-hardcoded-tables \
--enable-gui \
--enable-menu \
--disable-arts \