desktop/ksmoothdock: Initial import
This commit is contained in:
parent
5e753e4a84
commit
398fa01d00
|
@ -0,0 +1,4 @@
|
|||
KSmoothDock is a cool desktop panel (like KDE's kicker) for KDE 3.2 and above
|
||||
with smooth zooming (2 modes: normal and parabolic).
|
||||
Its aim is to provide a cool alternative/complement to kicker.
|
||||
As it is intended for KDE/Linux, its behaviour will be like that of kicker.
|
|
@ -0,0 +1,56 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SlackBuild script for KSmoothdock
|
||||
# Written by: Allen Coleman <acisapunkster@gmail.com>
|
||||
# Modified by: The SlackBuilds.org Project
|
||||
|
||||
PRGNAM=ksmoothdock
|
||||
VERSION=4.5
|
||||
SRCVER="${VERSION}_automake-1.9"
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
DOCFILES="AUTHORS COPYING ChangeLog NEWS README TODO"
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
cd $TMP
|
||||
tar -xzvf $CWD/$PRGNAM-$SRCVER.tar.gz || exit 1
|
||||
mv $PRGNAM $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure --prefix=$KDEDIR \
|
||||
--localstatedir=/var \
|
||||
--sysconfdir=/etc \
|
||||
--disable-debug \
|
||||
--program-prefix="" \
|
||||
--program-suffix=""
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
mkdir $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="ksmoothdock"
|
||||
VERSION="4.5"
|
||||
HOMEPAGE="http://ksmoothdock.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/ksmoothdock/ksmoothdock-4.5_automake-1.9.tar.gz"
|
||||
MD5SUM="28e3ef38bdc8d8241496924094c68e78"
|
||||
MAINTAINER="Allen Coleman"
|
||||
EMAIL="acisapunk@gmail.com"
|
||||
APPROVED="alien"
|
|
@ -0,0 +1,18 @@
|
|||
# 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------------------------------------------------------|
|
||||
ksmoothdock: ksmoothdock (KDE desktop panel)
|
||||
ksmoothdock:
|
||||
ksmoothdock: ksmoothdock is a cool desktop panel (like KDE's kicker) for KDE 3.2
|
||||
ksmoothdock: and above with smooth zooming (2 modes: normal and parabolic). Its
|
||||
ksmoothdock: aim is to provide a cool alternative/complement to kicker. As it is
|
||||
ksmoothdock: intended for KDE/Linux, its behaviour will be like that of kicker.
|
||||
ksmoothdock:
|
||||
ksmoothdock:
|
||||
ksmoothdock:
|
||||
ksmoothdock: Homepage is http://ksmoothdock.sourceforge.net/
|
||||
ksmoothdock:
|
Loading…
Reference in New Issue