mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
system/atol: Removed from 13.0 repository
This commit is contained in:
parent
bc456dcd92
commit
c6a4637553
7 changed files with 0 additions and 151 deletions
|
@ -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.
|
|
@ -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
|
|
@ -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"
|
|
@ -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
|
||||
|
|
@ -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
|
|
@ -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
|
|
@ -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:
|
Loading…
Reference in a new issue