mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
network/transmission: new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
23b5526429
commit
da4682f47d
4 changed files with 71 additions and 30 deletions
|
@ -1,3 +1,13 @@
|
|||
Transmission is a lightweight open source BitTorrent client, providing
|
||||
useful functionality without feature bloat. It consists of a daemon, a
|
||||
GTK+, Qt and CLI client.
|
||||
|
||||
By default, all 4 components are built. Specific parts can be disabled
|
||||
by setting one or more environment variables:
|
||||
|
||||
GTK=no
|
||||
QT=no
|
||||
CLI=no
|
||||
DAEMON=no
|
||||
|
||||
At least one component must be enabled (so all 4 set to "no" won't work).
|
||||
|
|
|
@ -12,8 +12,8 @@ transmission: Transmission is a lightweight open source BitTorrent client,
|
|||
transmission: providing useful functionality without feature bloat.
|
||||
transmission: It consists of a daemon, a GTK+, Qt and CLI client.
|
||||
transmission:
|
||||
transmission: This package built with options:
|
||||
transmission: @opts@
|
||||
transmission:
|
||||
transmission: Homepage: http://transmissionbt.com/
|
||||
transmission:
|
||||
transmission:
|
||||
transmission:
|
||||
transmission:
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
# Copyright 2007 Vasilis Papavasileiou <el03020 at mail dot ntua dot gr>
|
||||
# Copyright 2008-2011 Iskar Enev <iskar.enev[@]gmail.com>
|
||||
# Copyright 2011-2013 Niels Horn, Rio de Janeiro, Brazil
|
||||
# Copyright 2015 B. Watson <yalhcru@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,11 +24,16 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Revision date: 2014/08/28
|
||||
# Revision date: 2015/02/04
|
||||
|
||||
# 20150204 bkw: allow user to disable the various components.
|
||||
# By default, all are enabled. We can disable transmission-gtk,
|
||||
# transmission-qt, transmission-cli, and/or transmission-daemon.
|
||||
# But disabling them all is no good.
|
||||
|
||||
PRGNAM=transmission
|
||||
VERSION=${VERSION:-2.84}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-3}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -61,6 +67,24 @@ fi
|
|||
|
||||
set -e
|
||||
|
||||
GTK="${GTK:-yes}"
|
||||
QT="${QT:-yes}"
|
||||
CLI="${CLI:-yes}"
|
||||
DAEMON="${DAEMON:-yes}"
|
||||
|
||||
if [ "$GTK" != "yes" -a "$QT" != "yes" -a "$CLI" != "yes" -a "$DAEMON" != "yes" ]; then
|
||||
cat <<EOF 1>&2
|
||||
Can't build transmission with everything disabled, at least one of
|
||||
GTK QT CLI DAEMON must be 'yes'.
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# anything but lowercase "yes" is considered a no!
|
||||
[ "$GTK" != "yes" ] && GTKOPT="no" || GTKOPT="yes"
|
||||
[ "$CLI" != "yes" ] && CLIOPT="dis" || CLIOPT="en"
|
||||
[ "$DAEMON" != "yes" ] && DAEMOPT="dis" || DAEMOPT="en"
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
@ -78,16 +102,10 @@ find -L . \
|
|||
sed -i -e 's%-g -O3 -funroll-loops %%g' configure.ac
|
||||
sed -i -e 's%-ggdb3 %%g' configure.ac
|
||||
|
||||
# Fix hard-coded path of man file of Qt client
|
||||
sed -i "s|share/man/|man/|" qt/qtr.pro
|
||||
|
||||
# Needed when using Qt4
|
||||
# https://trac.transmissionbt.com/ticket/5700#comment:2
|
||||
echo "QMAKE_CXXFLAGS += -std=c++11" >> qt/qtr.pro
|
||||
|
||||
# Thanks Larry Hajali
|
||||
autoreconf -ivf
|
||||
|
||||
CC=gcc CXX=g++ \
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
|
@ -98,23 +116,39 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--mandir=/usr/man \
|
||||
--disable-static \
|
||||
--verbose \
|
||||
--with-gtk=$GTKOPT \
|
||||
--${CLIOPT}able-cli \
|
||||
--${DAEMOPT}able-daemon \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--host=$ARCH-slackware-linux
|
||||
|
||||
# build daemon, GTK and cli client
|
||||
# build daemon, GTK and cli client (unless disabled)
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
# build the Qt client (transmission-qt)
|
||||
cd $TMP/$PRGNAM-$VERSION/qt
|
||||
qmake \
|
||||
QMAKE_CXXFLAGS+="$SLKCFLAGS" \
|
||||
QMAKE_CFLAGS+="$SLKCFLAGS" \
|
||||
qtr.pro
|
||||
sed -i -e 's% -g % %g' Makefile
|
||||
make
|
||||
INSTALL_ROOT=$PKG/usr make install
|
||||
cd -
|
||||
if [ "$QT" = "yes" ]; then
|
||||
# build the Qt client (transmission-qt) unless disabled
|
||||
# Fix hard-coded path of man file of Qt client
|
||||
sed -i "s|share/man/|man/|" qt/qtr.pro
|
||||
|
||||
# Needed when using Qt4
|
||||
# https://trac.transmissionbt.com/ticket/5700#comment:2
|
||||
echo "QMAKE_CXXFLAGS += -std=c++11" >> qt/qtr.pro
|
||||
|
||||
cd $TMP/$PRGNAM-$VERSION/qt
|
||||
qmake \
|
||||
QMAKE_CXXFLAGS+="$SLKCFLAGS" \
|
||||
QMAKE_CFLAGS+="$SLKCFLAGS" \
|
||||
qtr.pro
|
||||
sed -i -e 's% -g % %g' Makefile
|
||||
make
|
||||
INSTALL_ROOT=$PKG/usr make install
|
||||
|
||||
mkdir -p $PKG/usr/share/applications $PKG/usr/share/pixmaps
|
||||
install -m644 transmission-qt.desktop $PKG/usr/share/applications/transmission-qt.desktop
|
||||
install -m644 icons/transmission.png $PKG/usr/share/pixmaps/transmission-qt.png
|
||||
cd -
|
||||
fi
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
@ -122,15 +156,12 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
install -m644 $TMP/$PRGNAM-$VERSION/qt/transmission-qt.desktop $PKG/usr/share/applications/transmission-qt.desktop
|
||||
install -m644 $TMP/$PRGNAM-$VERSION/qt/icons/transmission.png $PKG/usr/share/pixmaps/transmission-qt.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCUMENTATION $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
|
||||
sed "s,@opts@,GTK=$GTK QT=$QT CLI=$CLI DAEMON=$DAEMON," $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="transmission"
|
||||
VERSION="2.84"
|
||||
HOMEPAGE="http://www.transmissionbt.com/"
|
||||
DOWNLOAD="http://download.transmissionbt.com/files/transmission-2.84.tar.xz"
|
||||
DOWNLOAD="https://transmission.cachefly.net/transmission-2.84.tar.xz"
|
||||
MD5SUM="411aec1c418c14f6765710d89743ae42"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Niels Horn"
|
||||
EMAIL="niels.horn@gmail.com"
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue