summaryrefslogtreecommitdiffstats
path: root/libraries/libgnomecups
diff options
context:
space:
mode:
author Martin Lefebvre2010-05-11 22:23:55 +0200
committer Robby Workman2010-05-11 22:23:55 +0200
commit6ebb07472961cfc21d27d9421ce7cb32a3d7bd98 (patch)
tree3441f7dcef175ee3b72741d4b9de7fdcf65acda6 /libraries/libgnomecups
parent0e7f817e06eb61017ab87f7e94a1824579d92f2f (diff)
downloadslackbuilds-6ebb07472961cfc21d27d9421ce7cb32a3d7bd98.tar.gz
libraries/libgnomecups: Updated for version 0.2.2
Diffstat (limited to 'libraries/libgnomecups')
-rw-r--r--libraries/libgnomecups/libgnomecups.SlackBuild18
1 files changed, 14 insertions, 4 deletions
diff --git a/libraries/libgnomecups/libgnomecups.SlackBuild b/libraries/libgnomecups/libgnomecups.SlackBuild
index d7e6956dfc..77b2cf6db0 100644
--- a/libraries/libgnomecups/libgnomecups.SlackBuild
+++ b/libraries/libgnomecups/libgnomecups.SlackBuild
@@ -29,6 +29,7 @@ VERSION=0.2.2
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@@ -36,8 +37,10 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
fi
rm -rf $PKG
@@ -47,14 +50,21 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
+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 \
--sysconfdir=/etc \
- --localstatedir=/var
+ --localstatedir=/var \
+ --enable-static=no \
+ --build=$ARCH-slackware-linux \
+ --host=$ARCH-slackware-linux
make
make install DESTDIR=$PKG