mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
desktop/fbpanel: Initial import
This commit is contained in:
parent
21a50ba699
commit
0f09c18c6f
4 changed files with 96 additions and 0 deletions
6
desktop/fbpanel/README
Normal file
6
desktop/fbpanel/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
fbpanel is a lightweight GTK2-based panel for UNIX desktop, which
|
||||
provides graphical information and feedback about desktop activity
|
||||
and allows interaction with the window manager. It features a
|
||||
taskbar, pager, launchbar, show desktop, image viewer, clock, and
|
||||
system tray.
|
||||
|
71
desktop/fbpanel/fbpanel.SlackBuild
Normal file
71
desktop/fbpanel/fbpanel.SlackBuild
Normal file
|
@ -0,0 +1,71 @@
|
|||
#!/bin/sh
|
||||
|
||||
######################################
|
||||
# Slackware Build Script #
|
||||
######################################
|
||||
# BUILDS: fbpanel #
|
||||
# HOME: http://fbpanel.sf.net #
|
||||
# AUTHOR: Lehman Black #
|
||||
# CONTACT: bzqwerty[at]gmail[dot]com #
|
||||
######################################
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=fbpanel
|
||||
VERSION=4.5
|
||||
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"
|
||||
elif [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG $TMP/$PRGNAM-$VERSION
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
# This one doesn't support DESTDIR, and there doesn't seem to be any
|
||||
# other good way to package it (aside from copying everything manually,
|
||||
# which would be a good option if file locations were hard-coded in the
|
||||
# resulting binary)
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=$PKG/usr \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
|
||||
# Strip the fbpanel binary
|
||||
strip --strip-unneeded $PKG/usr/bin/fbpanel
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README CHANGELOG COPYING CREDITS INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# Fix manpage location and compress pages
|
||||
mv $PKG/usr/share/man $PKG/usr
|
||||
( 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
|
||||
)
|
||||
|
||||
mkdir -p $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
|
8
desktop/fbpanel/fbpanel.info
Normal file
8
desktop/fbpanel/fbpanel.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="fbpanel"
|
||||
VERSION="4.5"
|
||||
HOMEPAGE="http://fbpanel.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/fbpanel/fbpanel-4.5.tgz"
|
||||
MD5SUM="3041be5d6fe80a9a52a4ab0d03922d29"
|
||||
MAINTAINER="Lehman Black"
|
||||
EMAIL="bzqwerty[at]gmail[dot]com"
|
||||
APPROVED="robw810"
|
11
desktop/fbpanel/slack-desc
Normal file
11
desktop/fbpanel/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
fbpanel: fbpanel (panel application)
|
||||
fbpanel:
|
||||
fbpanel: fbpanel is a lightweight GTK2-based panel for UNIX desktop, which
|
||||
fbpanel: provides graphical information and feedback about desktop activity
|
||||
fbpanel: and allows interaction with the window manager. It features a
|
||||
fbpanel: taskbar, pager, launchbar, show desktop, image viewer, clock, and
|
||||
fbpanel: system tray.
|
||||
fbpanel:
|
||||
fbpanel: http://fbpanel.sourceforge.net/
|
||||
fbpanel:
|
||||
fbpanel:
|
Loading…
Reference in a new issue