desktop/recordmydesktop: Fixed build on 13.1.

Thanks to Gentoo for the (obvious in hindsight) tip.
This commit is contained in:
Robby Workman 2010-05-26 23:00:11 -05:00
parent 8353035e19
commit 56106258da
3 changed files with 18 additions and 3 deletions

View file

@ -1,6 +1,6 @@
recordmydesktop (record desktop sessions to an Ogg-Theora-Vorbis file)
recordMyDesktop produces a file(default out.ogg) that contains a video
recordMyDesktop produces a file (default out.ogg) that contains a video
and audio recording of a desktop session. It attempts to be easy to
use, yet also effective at it's primary task.

View file

@ -9,10 +9,19 @@
PRGNAM=recordmydesktop
VERSION=0.3.8.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -27,6 +36,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
@ -44,6 +56,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# Fixup xextproto rearrangement issues - thanks to the Gentoo guys for the tip
sed -i -e 's:shmstr.h:shmproto.h:g' src/rmd_{getzpixmap.c,update_image.c}
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \

View file

@ -1,6 +1,6 @@
PRGNAM="recordmydesktop"
VERSION="0.3.8.1"
HOMEPAGE="http://recordmydesktop.org/"
HOMEPAGE="http://sourceforge.net/projects/recordmydesktop/"
DOWNLOAD="http://downloads.sourceforge.net/recordmydesktop/recordmydesktop-0.3.8.1.tar.gz"
MD5SUM="6998b165540598965499bd99d8aa0eef"
DOWNLOAD_x86_64=""