system/conky: Removed (build failure)

This commit is contained in:
dsomero 2010-05-20 00:40:53 -04:00 committed by David Somero
parent 61ad792aff
commit 4e8bfcc042
5 changed files with 0 additions and 152 deletions

View file

@ -1,18 +0,0 @@
conky - A light-weight system monitor for X
Conky is a system monitor for X originally based on the torsmo code.
Since it's original conception, Conky has changed a fair bit from
it's predecessor. Conky can display just about anything, either on
your root desktop or in it's own window. Conky has many built-in
objects, as well as the ability to execute programs and scripts, then
display the output from stdout.
For lua scripting engine support the required dependencies are:
lua, imlib2 and tolua++
All of the above requirements are available from slackbuilds.org
To disable lua support run the build with
LUA=NO ./conky.SlackBuild

View file

@ -1,91 +0,0 @@
#!/bin/sh
# Slackware build script for conky
# Written by M.Dinslage contact: daedra1980@gmail.com
PRGNAM=conky
VERSION=1.8.0
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LBIDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LBIDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LBIDIRSUFFIX="64"
fi
set -e
if [ "${LUA:-yes}" = "yes" ]; then
lua="--enable-lua --enable-lua-cairo --enable-imlib2 --enable-lua-imlib2"
else
lua="--disable-lua"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xjvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION
chown -R root:root .
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 \
--libdir=/usr/lib${LBIDIRSUFFIX} \
--sysconfdir=/etc \
--mandir=/usr/man \
--enable-shared=yes \
--enable-static=no \
--enable-weather-xoap \
--enable-audacious=yes \
--enable-mpd=yes \
--enable-rss=yes \
--enable-wlan=yes \
$lua \
--build=$ARCH-slackware-linux \
--host=$ARCH-slackware-linux
make
make install-strip DESTDIR=$PKG
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
# Move existing config file
mv $PKG/etc/conky/conky.conf $PKG/etc/conky/conky.conf.new
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README TODO \
doc/*.html extras/ $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -1,10 +0,0 @@
PRGNAM="conky"
VERSION="1.8.0"
HOMEPAGE="http://conky.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/conky/conky-1.8.0.tar.bz2"
MD5SUM="494cbaf1108cfdb977fc80454d9b13e2"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="M.Dinslage"
EMAIL="daedra1980@gmail.com"
APPROVED="dsomero"

View file

@ -1,14 +0,0 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD|md5sum)" = "$(cat $NEW|md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/conky/conky.conf.new

View file

@ -1,19 +0,0 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
conky: conky (light-weight system monitor for X)
conky:
conky: Conky is a system monitor for X originally based on the torsmo code.
conky: Since it's original conception, Conky has changed a fair bit from
conky: it's predecessor. Conky can display just about anything, either on
conky: your root desktop or in it's own window. Conky has many built-in
conky: objects, as well as the ability to execute programs and scripts, then
conky: display the output from stdout.
conky:
conky: Homepage: http://conky.sourceforge.net
conky: