network/leechcraft: Added to 13.0 repository

This commit is contained in:
rexim 2010-05-13 01:00:05 +02:00 committed by Robby Workman
parent 7ce202d67b
commit 110efb9bfd
5 changed files with 174 additions and 0 deletions

26
network/leechcraft/README Normal file
View File

@ -0,0 +1,26 @@
LeechCraft is a full-featured modular "Internet client" application,
currently including plugins for a web browser, news feed reader,
BitTorrent client, FTP client, and many more. Plugins are easily added
and integrated with each other with no effort.
Currently it includes following plugins:
* Aggregator, news feed reader * BitTorrent, the BitTorrent client
* Chatter, the IRC client * CSTP, simple HTTP implementation
* DBusManager, D-Bus for the LeechCraft * DeadLyrics, LyricWiki.org API
* HistoryHolder, downloads history * LCFTP, FTP implementation client
* LMP, simple media player with streaming support
* NetworkMonitor, which monitors for HTTP requests
* Poshuku, the web browser * Poshuku CleanWeb, AdBlock+-compatible ad blocker
* Poshuku FileScheme, support for the file:// browsing
* Poshuku FUA, which allows to set fake user agents per domain
* SeekThru, client for OpenSearch-aware web sites
The following variables default to ON, but you can disable building any of
them by passing NAME_OF_VARIABLE=OFF to the build script:
ENABLE_SUMMARY ENABLE_TORRENT ENABLE_AGGREGATOR ENABLE_POSHUKU ENABLE_HTTP
ENABLE_FTP ENABLE_LMP ENABLE_DBUSMANAGER ENABLE_DEADLYRICS ENABLE_SEEKTHRU
ENABLE_NETWORKMONITOR ENABLE_HISTORYHOLDER ENABLE_CHATTER ENABLE_YASD
ENABLE_DCMINATOR ENABLE_NEWLIFE ENABLE_ANHERO ENABLE_VGRABBER
As an example, you can do this: ENABLE_LMP=OFF ./leechcraft.SlackBuild
An optional dependency is libtorrent-rasterbar.

View File

@ -0,0 +1,22 @@
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
fi
fi
if [ -e usr/share/icons/Pevzi/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/Pevzi >/dev/null 2>&1
fi
fi
if [ -e usr/share/icons/oxygen/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/oxygen >/dev/null 2>&1
fi
fi

View File

@ -0,0 +1,97 @@
#!/bin/sh
# Slackware build script for LeechCraft
# Copyright 2009 rexim
# 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=leechcraft
VERSION=0.3.65
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"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
EXTRA_CMAKE_FLAGS="-DRESPECTLIB64=True"
fi
set -eu
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
mkdir -p build
cd build
cmake \
-DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
-DCMAKE_C_FLAGS="$SLKCFLAGS" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DLIB_SUFFIX="$LIBDIRSUFFIX" \
-DENABLE_SUMMARY="${ENABLE_SUMMARY:-ON}" \
-DENABLE_TORRENT="${ENABLE_TORRENT:-ON}" \
-DENABLE_AGGREGATOR="${ENABLE_AGGREGATOR:-ON}" \
-DENABLE_POSHUKU="${ENABLE_POSHUKU:-ON}" \
-DENABLE_HTTP="${ENABLE_HTTP:-ON}" \
-DENABLE_FTP="${ENABLE_FTP:-ON}" \
-DENABLE_LMP="${ENABLE_LMP:-ON}" \
-DENABLE_DBUSMANAGER="${ENABLE_DBUSMANAGER:-ON}" \
-DENABLE_DEADLYRICS="${ENABLE_DEADLYRICS:-ON}" \
-DENABLE_SEEKTHRU="${ENABLE_SEEKTHRU:-ON}" \
-DENABLE_NETWORKMONITOR="${ENABLE_NETWORKMONITOR:-ON}" \
-DENABLE_HISTORYHOLDER="${ENABLE_HISTORYHOLDER:-ON}" \
-DENABLE_CHATTER="${ENABLE_CHATTER:-ON}" \
-DENABLE_YASD="${ENABLE_YASD:-ON}" \
-DENABLE_DCMINATOR="${ENABLE_DCMINATOR:-ON}" \
-DENABLE_NEWLIFE="${ENABLE_NEWLIFE:-ON}" \
-DENABLE_ANHERO="${ENABLE_ANHERO:-ON}" \
-DENABLE_VGRABBER="${ENABLE_VGRABBER:-ON}" \
$EXTRA_CMAKE_FLAGS \
../src/
make
make install DESTDIR=$PKG
# Move the manual pages to the correct place
mv $PKG/usr/share/man $PKG/usr
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.${PKGTYPE:-tgz}

View File

@ -0,0 +1,10 @@
PRGNAM="leechcraft"
VERSION="0.3.65"
HOMEPAGE="http://leechcraft.org/"
DOWNLOAD="http://downloads.sourceforge.net/leechcraft/leechcraft-0.3.65.tar.bz2"
MD5SUM="f410eae27731aa80b8921701477b15e7"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="rexim"
EMAIL="0xd34df00d@gmail.com"
APPROVED="rworkman"

View File

@ -0,0 +1,19 @@
# 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-------------------------------------------------------|
leechcraft: LeechCraft (modular internet client application)
leechcraft:
leechcraft: LeechCraft is a full-featured modular "Internet client" application,
leechcraft: currently including plugins for a web browser, news feed reader,
leechcraft: BitTorrent client, FTP client and many more. Plugins are easily added
leechcraft: and integrated with each other with no effort.
leechcraft:
leechcraft: Homepage: http://leechcraft.org/
leechcraft:
leechcraft:
leechcraft: