supporto a UpNp
chiede ogni volta dove salvare i file
e probabilmente altro che non si può notare dall'interfaccia.
Ha un interfaccia in gtk ed una cli
Code: Select all
onip @ Hal9000 ~ $ transmissioncli
Transmission 0.7-svn (1475) - http://transmission.m0k.org/
Usage: transmissioncli [options] file.torrent [options]
Options:
-d, --download <int> Maximum download rate (-1 = no limit, default = -1)
-f, --finish <shell script> Command you wish to run on completion
-h, --help Print this help and exit
-i, --info Print metainfo and exit
-n --nat-traversal Attempt NAT traversal using NAT-PMP or UPnP IGD
-p, --port <int> Port we should listen on (default = 9090)
-s, --scrape Print counts of seeders/leechers and exit
-u, --upload <int> Maximum upload rate (-1 = no limit, default = 20)
-v, --verbose <int> Verbose level (0 to 2, default = 0)
Code: Select all
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-9999.ebuild,v 1.2 2007/01/11 19:30:44 compnerd Exp $
inherit eutils subversion
MY_PN="Transmission"
DESCRIPTION="Simple BitTorrent client"
HOMEPAGE="http://transmission.m0k.org/"
#SRC_URI="http://download.m0k.org/transmission/files/${MY_PN}-${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"
RDEPEND="sys-devel/gettext
dev-libs/openssl
gtk? ( >=x11-libs/gtk+-2.6 )"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/pkgconfig-0.19"
S="${WORKDIR}/${MY_PN}-${PV}"
ESVN_REPO_URI="svn://svn.m0k.org/Transmission/trunk"
src_compile() {
econf $(use_enable gtk) || die "configure failed"
emake || die "build failed"
}
src_install() {
make PREFIX="${D}${ROOT}usr" LOCALEDIR="\$(PREFIX)/share/locale" install \
|| die "install failed"
if use gtk ; then
doicon "${FILESDIR}/transmission.png"
fi
dodoc AUTHORS NEWS README
}
Byez
