From 4e8bfcc04205d55df1e283e93243a163d7a288f2 Mon Sep 17 00:00:00 2001 From: dsomero Date: Thu, 20 May 2010 00:40:53 -0400 Subject: system/conky: Removed (build failure) --- system/conky/README | 18 --------- system/conky/conky.SlackBuild | 91 ------------------------------------------- system/conky/conky.info | 10 ----- system/conky/doinst.sh | 14 ------- system/conky/slack-desc | 19 --------- 5 files changed, 152 deletions(-) delete mode 100644 system/conky/README delete mode 100644 system/conky/conky.SlackBuild delete mode 100644 system/conky/conky.info delete mode 100644 system/conky/doinst.sh delete mode 100644 system/conky/slack-desc (limited to 'system') diff --git a/system/conky/README b/system/conky/README deleted file mode 100644 index ad038cf7d5..0000000000 --- a/system/conky/README +++ /dev/null @@ -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 - - diff --git a/system/conky/conky.SlackBuild b/system/conky/conky.SlackBuild deleted file mode 100644 index afd5d0b02e..0000000000 --- a/system/conky/conky.SlackBuild +++ /dev/null @@ -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} diff --git a/system/conky/conky.info b/system/conky/conky.info deleted file mode 100644 index 7ad2c3822c..0000000000 --- a/system/conky/conky.info +++ /dev/null @@ -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" diff --git a/system/conky/doinst.sh b/system/conky/doinst.sh deleted file mode 100644 index 78304645d3..0000000000 --- a/system/conky/doinst.sh +++ /dev/null @@ -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 diff --git a/system/conky/slack-desc b/system/conky/slack-desc deleted file mode 100644 index 6013fb9cd0..0000000000 --- a/system/conky/slack-desc +++ /dev/null @@ -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: -- cgit v1.2.3-80-g2a13