system/xfe: Initial import

This commit is contained in:
Robby Workman 2010-05-11 15:18:49 +02:00 committed by Erik Hanson
parent 16bae291cb
commit ab35e79e66
6 changed files with 125 additions and 0 deletions

8
system/xfe/README Normal file
View file

@ -0,0 +1,8 @@
Xfe is a Microsoft Explorer-like file manager for X. It is based on
the popular, but discontinued, X Win Commander, originally developed
by Maxim Baranov.
Xfe aims to be the file manager of choice for all light-thinking
UNIX addicts!
XFE requires the fox-toolkit library (which is also available here)

3
system/xfe/doinst.sh Normal file
View file

@ -0,0 +1,3 @@
if [ -x usr/bin/update-desktop-database ]; then
usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi

11
system/xfe/slack-desc Normal file
View file

@ -0,0 +1,11 @@
xfe: X File Explorer (xfe)
xfe:
xfe: Xfe is a Microsoft Explorer-like file manager for X. It is based on
xfe: the popular, but discontinued, X Win Commander, originally developed
xfe: by Maxim Baranov.
xfe:
xfe: Xfe aims to be the file manager of choice for all light-thinking
xfe: UNIX addicts!
xfe:
xfe: Homepage: http://roland65.free.fr/xfe/
xfe:

84
system/xfe/xfe.SlackBuild Normal file
View file

@ -0,0 +1,84 @@
#!/bin/sh
# Slackware build script for xfe
# Copyright 2006-2007 Robby Workman (http://rlworkman.net)
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=xfe
VERSION=0.99
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" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG/usr $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R a-s,u+w,go+r-w .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-debug \
--enable-release \
--enable-shared=yes \
--enable-static=no \
--program-prefix="" \
--program-suffix="" \
|| exit 1
make || exit 1
make install-strip DESTDIR=$PKG || exit 1
mkdir -p $PKG/usr/share/applications
install -m 0644 $CWD/xfe.desktop $PKG/usr/share/applications/xfe.desktop
( 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/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS BUGS COPYING ChangeLog FAQ INSTALL NEWS README TODO \
$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 $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

11
system/xfe/xfe.desktop Normal file
View file

@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Terminal=false
Icon=/usr/share/pixmaps/xfe.png
Type=Application
InitialPreference=2
Categories=System;
Exec=xfe
Name=XFileExplorer
Comment=Lightweight File Manager

8
system/xfe/xfe.info Normal file
View file

@ -0,0 +1,8 @@
PRGNAM="xfe"
VERSION="0.99"
HOMEPAGE="http://roland65.free.fr/xfe/"
DOWNLOAD="http://dl.sourceforge.net/xfe/xfe-0.99.tar.gz"
MD5SUM="fb3513a328eec1b38e0d5b2208b42d78"
MAINTAINER="Robby Workman"
EMAIL="rw@rlworkman.net"
APPROVED="elohim"