system/kerneloops: Updated for version 0.12

This commit is contained in:
Robby Workman 2010-05-13 00:40:46 +02:00 committed by Michiel van Wessem
parent ea1be39dc3
commit 3c15d7c20c
3 changed files with 8 additions and 6 deletions

View file

@ -15,6 +15,5 @@ if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
config etc/dbus-1/system.d/kerneloops.dbus.new
config etc/kerneloops.conf.new

View file

@ -2,7 +2,7 @@
# Slackware build script for kerneloops
# Copyright 2008 Robby Workman, Northport, Alabama, USA
# Copyright 2008-2009 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
@ -62,9 +65,7 @@ make MANDIR=/usr/man/man8 DESTDIR=$PKG install
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# Let's not clobber these on upgrades
mv $PKG/etc/dbus-1/system.d/kerneloops.dbus \
$PKG/etc/dbus-1/system.d/kerneloops.dbus.new
# Let's not clobber this on upgrades
mv $PKG/etc/kerneloops.conf $PKG/etc/kerneloops.conf.new
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
@ -75,4 +76,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="kerneloops"
VERSION="0.12"
HOMEPAGE="http://www.kerneloops.org/"
DOWNLOAD="http://www.kerneloops.org/download/kerneloops-0.12.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="97e611e5b09831cb6ee31c31bf2bc286"
MD5SUM_x86_64=""
MAINTAINER="Robby Workman"
EMAIL="rw@rlworkman.net"
APPROVED="Michiel"