X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Ftransmission;h=cb4ad4517687d5d7797dd7cf4eab8bd63ed76917;hb=4eff454e2f886df6b6dc6f8dad26dfc0900e925c;hp=7ce4b83921383dd0788c81d23414141d9013adf0;hpb=0babec1f02fa22ed056e8359dfeebc0e510c29a6;p=people%2Fteissler%2Fipfire-2.x.git diff --git a/lfs/transmission b/lfs/transmission index 7ce4b8392..cb4ad4517 100644 --- a/lfs/transmission +++ b/lfs/transmission @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2009 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2014 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 2.33 +VER = 2.83 THISAPP = transmission-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -32,9 +32,11 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = transmission -PAK_VER = 1 +PAK_VER = 10 -DEPS = "" +DEPS = "libevent2" + +CXXFLAGS += -fno-exceptions ############################################################################### # Top-level Rules @@ -44,7 +46,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 76df2b002e9e243f2e4607b40c019974 +$(DL_FILE)_MD5 = 4620cfbfefee2ce55a6fa12c3ec330a7 install : $(TARGET) @@ -85,5 +87,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) -mkdir -pv /etc/transmission cp -vf $(DIR_SRC)/config/transmission/* /etc/transmission/ chown -Rv nobody.nobody /etc/transmission + + # Install backup include + install -v -m 644 $(DIR_SRC)/config/backup/includes/transmission \ + /var/ipfire/backup/addons/includes/transmission + @rm -rf $(DIR_APP) @$(POSTBUILD)