diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-11 15:18:49 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 15:18:49 +0200 |
commit | ab35e79e66658b1663aaf8f8b8ca8b5bdba80435 (patch) | |
tree | 7e45688ba85101a9d5ca8eb8f993845ae9c8872e | |
parent | 16bae291cb96e7553fd2fe2d9cb742160f45a558 (diff) | |
download | slackbuilds-ab35e79e66658b1663aaf8f8b8ca8b5bdba80435.tar.gz |
system/xfe: Initial import
-rw-r--r-- | system/xfe/README | 8 | ||||
-rw-r--r-- | system/xfe/doinst.sh | 3 | ||||
-rw-r--r-- | system/xfe/slack-desc | 11 | ||||
-rw-r--r-- | system/xfe/xfe.SlackBuild | 84 | ||||
-rw-r--r-- | system/xfe/xfe.desktop | 11 | ||||
-rw-r--r-- | system/xfe/xfe.info | 8 |
6 files changed, 125 insertions, 0 deletions
diff --git a/system/xfe/README b/system/xfe/README new file mode 100644 index 0000000000..1ce0b956e5 --- /dev/null +++ b/system/xfe/README @@ -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) + diff --git a/system/xfe/doinst.sh b/system/xfe/doinst.sh new file mode 100644 index 0000000000..cbc484f9f1 --- /dev/null +++ b/system/xfe/doinst.sh @@ -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 diff --git a/system/xfe/slack-desc b/system/xfe/slack-desc new file mode 100644 index 0000000000..bbe200ced1 --- /dev/null +++ b/system/xfe/slack-desc @@ -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: diff --git a/system/xfe/xfe.SlackBuild b/system/xfe/xfe.SlackBuild new file mode 100644 index 0000000000..32a32b2b52 --- /dev/null +++ b/system/xfe/xfe.SlackBuild @@ -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 diff --git a/system/xfe/xfe.desktop b/system/xfe/xfe.desktop new file mode 100644 index 0000000000..30feeba947 --- /dev/null +++ b/system/xfe/xfe.desktop @@ -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 diff --git a/system/xfe/xfe.info b/system/xfe/xfe.info new file mode 100644 index 0000000000..494188d8dd --- /dev/null +++ b/system/xfe/xfe.info @@ -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" |