summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:16 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:16 +0200
commitc6a4637553ffc555e4b97315ab483158906fb553 (patch)
treef80b1ca58d3cd1f23476b89604623d6bcb513b8a /system
parentbc456dcd92857dfa7dc7a86f1d4eeee36076dae9 (diff)
downloadslackbuilds-c6a4637553ffc555e4b97315ab483158906fb553.tar.gz
slackbuilds-c6a4637553ffc555e4b97315ab483158906fb553.tar.xz
system/atol: Removed from 13.0 repository
Diffstat (limited to 'system')
-rw-r--r--system/atol/README23
-rw-r--r--system/atol/atol.SlackBuild53
-rw-r--r--system/atol/atol.info8
-rw-r--r--system/atol/doinst.sh5
-rw-r--r--system/atol/gvfs.Makefile.diff20
-rw-r--r--system/atol/no-gvfs.Makefile.diff23
-rw-r--r--system/atol/slack-desc19
7 files changed, 0 insertions, 151 deletions
diff --git a/system/atol/README b/system/atol/README
deleted file mode 100644
index 696a829b3c..0000000000
--- a/system/atol/README
+++ /dev/null
@@ -1,23 +0,0 @@
-Atol is a dual panel file manager written using GTK+ toolkit and C++
-programming language. Project is free and open source (released under
-BSD license).
-
-Current features:
-
- * common file operations (copy,move,delete,rename)
- * support for achiver plugins (.zip, .tar, .gz, .bz2, .arj, .rar, .lst)
- * file search
- * browsing bookmarks (directory shortcuts menu)
- * file list filtering
- * file split and merge support
- * file hash calculation (crc32, md5, sha1)
- * file encryption/decryption using strong blowfish algorithm
- * multilanguage support
- * fast file viewer (text, bin and hex mode)
- * integrated FTP client
- * integrated SFTP client (Win32 only)
- * drag and drop operation
- * support for custom colors in file panel
- * command line support
-
-GNOME-VFS is optional, the SlackBuild will detect and patch accordingly.
diff --git a/system/atol/atol.SlackBuild b/system/atol/atol.SlackBuild
deleted file mode 100644
index 81740a5796..0000000000
--- a/system/atol/atol.SlackBuild
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for atol
-# Written by Erik Hanson erik@slackbuilds.org
-
-# Modified by the SlackBuilds.org project
-
-PRGNAM=atol
-VERSION=0.7.3
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP || exit 1
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-${VERSION}_src.tar.gz || exit 1
-cd $PRGNAM-$VERSION || exit 1
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-# Makefile has to be patched either way.
-if $(pkg-config --exists gnome-vfs-2.0); then
- echo "GNOME-VFS Found"
- patch -p0 < $CWD/gvfs.Makefile.diff || exit 1
-elif ! $(pkg-config --exists gnome-vfs-2.0); then
- echo "GNOME-VFS Not Found"
- patch -p0 < $CWD/no-gvfs.Makefile.diff || exit 1
-fi
-
-make || exit 1
-make install DESTDIR=$PKG || exit 1
-
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a readme.txt docs/license.txt $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.tgz
diff --git a/system/atol/atol.info b/system/atol/atol.info
deleted file mode 100644
index 5dc73cc612..0000000000
--- a/system/atol/atol.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="atol"
-VERSION="0.7.3"
-HOMEPAGE="http://atol.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/atol/atol-0.7.3_src.tar.gz"
-MD5SUM="5ae6bf03a0308abc6d69fe868240721a"
-MAINTAINER="Erik Hanson"
-EMAIL="erik@slackbuilds.org"
-APPROVED="rworkman"
diff --git a/system/atol/doinst.sh b/system/atol/doinst.sh
deleted file mode 100644
index 3412314ed0..0000000000
--- a/system/atol/doinst.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-
-if [ -x usr/bin/update-desktop-database ]; then
- ./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/system/atol/gvfs.Makefile.diff b/system/atol/gvfs.Makefile.diff
deleted file mode 100644
index 63788c056e..0000000000
--- a/system/atol/gvfs.Makefile.diff
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile 2006-12-16 11:13:34.000000000 -0600
-+++ Makefile.gvfs 2007-01-01 20:01:41.000000000 -0600
-@@ -15,7 +15,7 @@
- archive=atol-$(VERSION)_src
-
- #define plugin install path
--plugin_dir=$(DESTDIR)$(prefix)/local/lib/atol
-+plugin_dir=$(DESTDIR)$(prefix)/lib/atol
- #comment this to remove gnome-vfs support
- HAVE_GNOME_VFS=1
-
-@@ -32,7 +32,7 @@
- #DEBUG=-g -D_DEBUG
-
- CXX=g++
--CFLAGS=-Wall
-+CFLAGS+= -Wall
- FLAGS=$(CFLAGS)
- BIN=./bin
- OBJ=./bin
diff --git a/system/atol/no-gvfs.Makefile.diff b/system/atol/no-gvfs.Makefile.diff
deleted file mode 100644
index 989a9f3e32..0000000000
--- a/system/atol/no-gvfs.Makefile.diff
+++ /dev/null
@@ -1,23 +0,0 @@
---- Makefile 2006-12-16 11:13:34.000000000 -0600
-+++ Makefile.no-gvfs 2007-01-01 20:02:01.000000000 -0600
-@@ -15,9 +15,9 @@
- archive=atol-$(VERSION)_src
-
- #define plugin install path
--plugin_dir=$(DESTDIR)$(prefix)/local/lib/atol
-+plugin_dir=$(DESTDIR)$(prefix)/lib/atol
- #comment this to remove gnome-vfs support
--HAVE_GNOME_VFS=1
-+#HAVE_GNOME_VFS=1
-
- # To profile Atol:
- # 1. uncomment "PROFILE=..." line below
-@@ -32,7 +32,7 @@
- #DEBUG=-g -D_DEBUG
-
- CXX=g++
--CFLAGS=-Wall
-+CFLAGS+= -Wall
- FLAGS=$(CFLAGS)
- BIN=./bin
- OBJ=./bin
diff --git a/system/atol/slack-desc b/system/atol/slack-desc
deleted file mode 100644
index f15c2ae3b1..0000000000
--- a/system/atol/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------------------------------------------------------|
-atol: atol (dual panel file manager written using GTK+)
-atol:
-atol: Atol is a dual panel file manager written using GTK+ toolkit and C++
-atol: programming language. Project is free and open source (released under
-atol: BSD license).
-atol:
-atol: http://atol.sourceforge.net/
-atol:
-atol:
-atol:
-atol: