diff options
-rw-r--r-- | net-p2p/transmission/Manifest | 4 | ||||
-rw-r--r-- | net-p2p/transmission/files/transmission-daemon.confd.1 | 67 | ||||
-rw-r--r-- | net-p2p/transmission/files/transmission-daemon.initd.2 | 136 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-2.00.ebuild | 90 |
4 files changed, 0 insertions, 297 deletions
diff --git a/net-p2p/transmission/Manifest b/net-p2p/transmission/Manifest deleted file mode 100644 index ad529aa..0000000 --- a/net-p2p/transmission/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX transmission-daemon.confd.1 1519 RMD160 decaf106064e8c393fce35758d6dc63e8302cc5c SHA1 372fd7f999a1c2f14fb24a8fe40094013774f673 SHA256 45ed8e0b966267d671acaff7d130cd843ba7aeac6773db2564e2aa9b2cbc2149 -AUX transmission-daemon.initd.2 3953 RMD160 f78589fe9de1db4160aa7c6333cef1fc835c0888 SHA1 7ca57cd2135688d27401441667cc373e22434bd1 SHA256 0266ecb32e9a359b078a61c8ba40413d9d222b6622b6f7d5e8fc0a4e2ed7587d -DIST transmission-2.00.tar.bz2 4259539 RMD160 ef8d4ee09c0f01de4ebe37204c276bde75927971 SHA1 19d852e64c07f7f7c0466dcb6d09dd20698bbfce SHA256 370abe5058f378382826511a8611e20a98f81a726e07ce74e4040e9b9fb5f0e7 -EBUILD transmission-2.00.ebuild 2276 RMD160 6c7373661552f410ad9212607918c08fd6aa15a4 SHA1 93045e5e6f01f7bb6e2cb3444417db7ed12e5fac SHA256 1d7afbb8f59cc5d609ea3b9030c2eee1d429deea2dce59656eedff61686be5e7 diff --git a/net-p2p/transmission/files/transmission-daemon.confd.1 b/net-p2p/transmission/files/transmission-daemon.confd.1 deleted file mode 100644 index 28674dd..0000000 --- a/net-p2p/transmission/files/transmission-daemon.confd.1 +++ /dev/null @@ -1,67 +0,0 @@ -# This is the transmission-daemon config file -# Default settings are commented, uncomment and adapt as needed - -# Allowed IP addresses. -#allowed=127.0.0.1 - -# Enable peer blocklists (yes or no) -#blocklist=no - -# Directory to watch for new .torrent files (empty string to disable) -#watch_dir= - -# Where to look for configuration files -#config_dir=/var/transmission/config - -# RPC port -#port=9091 - -# Require authentication (yes or no) -#auth=no - -# Set username for authentication (only used when auth=yes) -#username= - -# Set password for authentication (only used when auth=yes) -#password= - -# Where to save downloaded data -#download_dir=/var/transmission/downloads - -# Port for incoming peers -#peerport=51413 - -# Enable portmapping via NAT-PMP or UPnP (yes or no) -#portmap=no - -# Maximum overall number of peers -#peerlimit_global=240 - -# Maximum number of peers per torrent -#peerlimit_torrent=60 - -# How to encrypt peer connections (required, preferred, tolerated) -#encryption=preferred - -# Where to listen for peer connections (ipv4 address) -#bind_address_ipv4= - -# Where to listen for peer connections (ipv6 address) -#bind_address_ipv6= - -# Where to listen for RPC connections -#rpc_bind_address= - -# Misc. settings - - -# Location of pidfile -#pidfile=/var/run/transmission.pid - -# Location of logfile -# (Note: works only on systems with sys-apps/openrc, leave unset otherwise) -#logfile= - -# Run daemon as another user (username or username:groupname) -# (Note: works only on systems with sys-apps/openrc, leave unset otherwise) -#runas_user= diff --git a/net-p2p/transmission/files/transmission-daemon.initd.2 b/net-p2p/transmission/files/transmission-daemon.initd.2 deleted file mode 100644 index f68c3f6..0000000 --- a/net-p2p/transmission/files/transmission-daemon.initd.2 +++ /dev/null @@ -1,136 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/files/transmission-daemon.initd.2,v 1.1 2009/06/20 12:55:37 ssuominen Exp $ - -# Read options from conf.d file, or set sensible defaults -allowed=${allowed:-127.0.0.1} -blocklist=${blocklist:-no} -watch_dir=${watch_dir:-} -config_dir=${config_dir:-/var/transmission/config} -port=${port:-9091} -auth=${auth:-no} -username=${username:-} -password=${password:-} -download_dir=${download_dir:=/var/transmission/downloads} -peerport=${peerport:-51413} -portmap=${portmap:-no} -peerlimit_global=${peerlimit_global:-240} -peerlimit_torrent=${peerlimit_torrent:-60} -encryption=${encryption:-preferred} -bind_address_ipv4=${bind_address_ipv4:-} -bind_address_ipv6=${bind_address_ipv6:-} -rpc_bind_address=${rpc_bind_address:-} - -# Misc options -pidfile=${pidfile:-/var/run/transmission.pid} -logfile=${logfile:-} -runas_user=${runas_user:-} - - -# Convert settings into stuff that transmission-daemon can grok as arguments -allowed_opt="--allowed ${allowed}" - -blocklist_opt="--no-blocklist" -if [ "x${blocklist}" = "xyes" ]; then - blocklist_opt="--blocklist" -fi - -watch_dir_opt="--no-watch-dir" -if [ -n "${watch_dir}" ]; then - watch_dir_opt="--watch-dir ${watch_dir}" -fi - -config_dir_opt="--config-dir ${config_dir}" - -port_opt="--port ${port}" - -auth_opt="--no-auth" -username_opt="" -password_opt="" -if [ "x${auth}" = "xyes" ]; then - auth_opt="--auth" - # Set username and password also - username_opt="--username ${username}" - password_opt="--password ${password}" -fi - -download_dir_opt="--download-dir ${download_dir}" - -peerport_opt="--peerport ${peerport}" - -portmap_opt="--no-portmap" -if [ "x${portmap}" = "xyes" ]; then - portmap_opt="--portmap" -fi - -peerlimit_global_opt="--peerlimit-global ${peerlimit_global}" - -peerlimit_torrent_opt="--peerlimit-torrent ${peerlimit_torrent}" - -case "${encryption}" in - 'required') encryption_opt="--encryption-required" ;; - 'tolerated') encryption_opt="--encryption-tolerated" ;; - *) encryption_opt="--encryption-preferred" ;; -esac - -bind_address_ipv4_opt="" -if [ -n "${bind_address_ipv4}" ]; then - bind_address_ipv4_opt="--bind-address-ipv4 ${bind_address_ipv4}" -fi - -bind_address_ipv6_opt="" -if [ -n "${bind_address_ipv6}" ]; then - bind_address_ipv6_opt="--bind-address-ipv6 ${bind_address_ipv6}" -fi - -rpc_bind_address_opt="" -if [ -n "${rpc_bind_address}" ]; then - rpc_bind_address_opt="--rpc-bind-address ${rpc_bind_address}" -fi - -# Note: works only on systems with sys-apps/openrc -logfile_opt="" -if [ -n "${logfile}" ]; then - logfile_opt="--stdout ${logfile} --stderr ${logfile}" -fi - -# Note: works only on systems with sys-apps/openrc -# This could be done in baselayout-1 with --chuid, but since -# openrc detection is vague at best (b.g.o #270646), just ignore it. -runas_user_opt="" -if [ -n "${runas_user}" ]; then - runas_user_opt="--user ${runas_user}" -fi - -# Actual init script stuff below this line - -opts="start stop" -description="Transmission is a fast, easy and free bittorrent client" -description_start="Start transmission-daemon server and web interface" -description_stop="Stop transmission-daemon server and web interface" - -depend() { - need net -} - -start() { - ebegin "Starting transmission daemon" - start-stop-daemon --start --quiet --background --make-pidfile \ - --pidfile ${pidfile} ${runas_user_opt} \ - ${logfile_opt} --exec \ - /usr/bin/transmission-daemon -- --foreground ${allowed_opt} \ - ${blocklist_opt} ${watch_dir_opt} ${config_dir_opt} ${port_opt} \ - ${auth_opt} ${username_opt} ${password_opt} ${download_dir_opt} \ - ${peerport_opt} ${portmap_opt} ${peerlimit_global_opt} \ - ${peerlimit_torrent_opt} ${encryption_opt} \ - ${bind_address_ipv4_opt} ${bind_address_ipv6_opt} ${rpc_bind_address_opt} - eend $? -} - -stop() { - ebegin "Stopping transmission daemon" - start-stop-daemon --stop --quiet --retry TERM/45/QUIT/15 \ - --pidfile ${pidfile} - eend $? -} diff --git a/net-p2p/transmission/transmission-2.00.ebuild b/net-p2p/transmission/transmission-2.00.ebuild deleted file mode 100644 index 635b813..0000000 --- a/net-p2p/transmission/transmission-2.00.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-2.00.ebuild,v 1.4 2010/06/18 10:25:09 pva Exp $ - -EAPI=2 -inherit eutils fdo-mime gnome2-utils qt4-r2 - -DESCRIPTION="A Fast, Easy and Free BitTorrent client" -HOMEPAGE="http://www.transmissionbt.com/" -SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.bz2" - -LICENSE="MIT GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd" -IUSE="gnome gtk libnotify sound qt4" - -RDEPEND=" - sys-libs/zlib - >=dev-libs/libevent-1.4.11 - <dev-libs/libevent-2 - >=dev-libs/openssl-0.9.4 - || ( >=net-misc/curl-7.16.3[ssl] - >=net-misc/curl-7.16.3[gnutls] ) - gtk? ( >=dev-libs/glib-2.15.5:2 - >=x11-libs/gtk+-2.12:2 - >=dev-libs/dbus-glib-0.70 - gnome? ( >=gnome-base/gconf-2.20.0 ) - libnotify? ( >=x11-libs/libnotify-0.4.3 ) - sound? ( >=media-libs/libcanberra-0.10 ) ) - qt4? ( x11-libs/qt-gui:4 )" -DEPEND="${RDEPEND} - >=sys-devel/libtool-2.2.6b - sys-devel/gettext - >=dev-util/intltool-0.40 - dev-util/pkgconfig - sys-apps/sed" - -src_prepare() { - sed -i -e 's:-ggdb3::g' configure || die -} - -src_configure() { - # cli and daemon doesn't have external deps and are enabled by default - econf \ - --disable-dependency-tracking \ - $(use_enable gtk) \ - $(use gtk && use_enable libnotify) \ - $(use gtk && use_enable sound libcanberra) \ - $(use gtk && use_enable gnome gconf2) - - use qt4 && cd qt && eqmake4 qtr.pro -} - -src_compile() { - emake || die - use qt4 && cd qt && { emake || die; } -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS NEWS qt/README.txt - rm -f "${D}"/usr/share/${PN}/web/LICENSE - - # these are likely outdated for 1.83 - newinitd "${FILESDIR}"/${PN}-daemon.initd.2 ${PN}-daemon || die - newconfd "${FILESDIR}"/${PN}-daemon.confd.1 ${PN}-daemon || die - - if use qt4; then - cd qt - emake INSTALL_ROOT="${D}/usr" install || die - make_desktop_entry qtr "Transmission Qt BitTorrent Client" ${PN} \ - "Network;FileTransfer;P2P;Qt" - use gtk || doicon qt/icons/transmission.png - fi -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} |