Changeset 1849
- Timestamp:
- 06/01/11 14:45:34 (2 years ago)
- Location:
- trunk/fon
- Files:
-
- 4 modified
-
plugins/plugin-torrent/Makefile (modified) (1 diff)
-
transmission/Makefile (modified) (2 diffs)
-
transmission/patches/200-crypt.patch (modified) (1 diff)
-
transmission/patches/400-remote.patch (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fon/plugins/plugin-torrent/Makefile
r1752 r1849 9 9 10 10 PKG_NAME:=plugin-torrent 11 PKG_VERSION:=2. 0411 PKG_VERSION:=2.11 12 12 PKG_RELEASE:=1 13 13 # Build a .fmg plugin -
trunk/fon/transmission/Makefile
r1741 r1849 9 9 10 10 PKG_NAME:=transmission 11 PKG_VERSION:=2. 0411 PKG_VERSION:=2.11 12 12 PKG_RELEASE:=1 13 13 14 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 15 15 PKG_SOURCE_URL:=http://mirrors.m0k.org/transmission/files 16 PKG_MD5SUM:= 84fe15eb7e000fdc369def513299358b16 PKG_MD5SUM:=ef2b40ddc2c17a57c47bfe15b1f23cc4 17 17 18 18 PKG_FIXUP = libtool … … 79 79 define Package/transmission-cli/install 80 80 $(INSTALL_DIR) $(1)/sbin 81 $(INSTALL_BIN) $(PKG_BUILD_DIR)/cli/transmission cli $(1)/sbin/81 $(INSTALL_BIN) $(PKG_BUILD_DIR)/cli/transmission-cli $(1)/sbin/ 82 82 $(INSTALL_BIN) $(PKG_BUILD_DIR)/daemon/transmission-remote $(1)/sbin/ 83 83 endef -
trunk/fon/transmission/patches/200-crypt.patch
r1741 r1849 167 167 @DHT_LIBS@ \ 168 168 @LIBCURL_LIBS@ \ 169 Index: transmission-2.11/utils/Makefile.in 170 =================================================================== 171 --- transmission-2.11/utils/Makefile.in 2010-10-25 20:35:08.000000000 +0200 172 +++ transmission-2.11/utils/Makefile.in 2010-10-25 20:35:50.000000000 +0200 173 @@ -338,6 +338,7 @@ 174 $(top_builddir)/libtransmission/libtransmission.a \ 175 $(top_builddir)/third-party/miniupnp/libminiupnp.a \ 176 $(top_builddir)/third-party/libnatpmp/libnatpmp.a \ 177 + -lcrypt \ 178 @DHT_LIBS@ \ 179 @LIBEVENT_LIBS@ \ 180 @LIBCURL_LIBS@ \ -
trunk/fon/transmission/patches/400-remote.patch
r1123 r1849 1 Index: transmission- 1.72/daemon/remote.c1 Index: transmission-2.11/daemon/remote.c 2 2 =================================================================== 3 --- transmission- 1.72.orig/daemon/remote.c 2009-07-16 15:33:45.000000000 +02004 +++ transmission- 1.72/daemon/remote.c 2009-07-16 15:38:54.000000000 +02003 --- transmission-2.11.orig/daemon/remote.c 2010-10-25 18:21:35.000000000 +0200 4 +++ transmission-2.11/daemon/remote.c 2010-10-25 18:22:31.000000000 +0200 5 5 @@ -1,3 +1,4 @@ 6 6 + 7 7 /* 8 * This file Copyright (C) 2008-20 09 Charles Kerr <charles@transmissionbt.com>8 * This file Copyright (C) 2008-2010 Mnemosyne LLC 9 9 * 10 @@ -1 247,10 +1248,10 @@11 int64_t total_up = 0, total_down = 0, total_size =0;10 @@ -1195,10 +1196,10 @@ 11 double total_up=0, total_down=0; 12 12 char haveStr[32]; 13 13 … … 21 21 { 22 22 int64_t id, eta, status, up, down; 23 @@ -12 91,14 +1292,13 @@23 @@ -1239,14 +1240,13 @@ 24 24 else 25 25 errorMark = ' '; … … 32 32 haveStr, 33 33 etaStr, 34 up / 1024.0,35 down / 1024.0,34 up/(double)tr_speed_K, 35 down/(double)tr_speed_K, 36 36 - strlratio2( ratioStr, ratio, sizeof( ratioStr ) ), 37 37 getStatusString( d, statusStr, sizeof( statusStr ) ), 38 38 name ); 39 39 40 @@ -1 308,10 +1308,10 @@40 @@ -1256,10 +1256,10 @@ 41 41 } 42 42 } … … 45 45 +/* printf( "Sum: %9s %6.1f %6.1f\n", 46 46 strlsize( haveStr, total_size, sizeof( haveStr ) ), 47 total_up / 1024.0,48 - total_down / 1024.0);49 + total_down / 1024.0);*/47 total_up/(double)tr_speed_K, 48 - total_down/(double)tr_speed_K ); 49 + total_down/(double)tr_speed_K );*/ 50 50 } 51 51 }
