system/lirc: Updated for version 0.8.3

This commit is contained in:
David Somero 2010-05-11 22:26:46 +02:00 committed by Erik Hanson
parent 5b16937235
commit a122f30d92
2 changed files with 14 additions and 6 deletions

View file

@ -26,7 +26,7 @@
# No additional license terms and no copyright claim :-)
PRGNAM=lirc
VERSION=0.8.2
VERSION=0.8.3
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
@ -51,6 +51,8 @@ if [ "${ARCH}" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "${ARCH}" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
fi
set -e
@ -62,12 +64,17 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R a-s,u+w,go+r-w .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--mandir=/usr/man \
--exec-prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
@ -87,6 +94,7 @@ if [ "$BLASTER" = "yes" ] ;then
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--mandir=/usr/man \
--exec-prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \

View file

@ -1,8 +1,8 @@
PRGNAM="lirc"
VERSION="0.8.2"
VERSION="0.8.3"
HOMEPAGE="http://www.lirc.org/"
DOWNLOAD="http://downloads.sourceforge.net/lirc/lirc-0.8.2.tar.bz2"
MD5SUM="83e7060a6693b81075c178d7e3b215af"
DOWNLOAD="http://downloads.sourceforge.net/lirc/lirc-0.8.3.tar.bz2"
MD5SUM="8e78eeded7b31e5ad02e328970437c0f"
MAINTAINER="David Somero"
EMAIL="dsomero@hotmail.com "
APPROVED="rworkman"
APPROVED="Erik Hanson"