X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Ffireinfo;h=3da01016129bd1c8e931d1dd116de76d76ef039d;hb=c4979a81c8d27fed69b4f360cc67845bac85549a;hp=c1aea615faa417decc30366c866053f92330e655;hpb=7019ca5809f03b15c4f6aeeb8b03f71acc2cacf9;p=people%2Fteissler%2Fipfire-2.x.git diff --git a/lfs/fireinfo b/lfs/fireinfo index c1aea615f..3da010161 100644 --- a/lfs/fireinfo +++ b/lfs/fireinfo @@ -24,11 +24,11 @@ include Config -VER = 0.12 +VER = 2.1.7 -THISAPP = fireinfo-$(VER) +THISAPP = fireinfo-v$(VER) DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_IPFIRE) +DL_FROM = http://source.ipfire.org/releases/fireinfo/ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 560a2ed902104a4b803f7e460c5d509d +$(DL_FILE)_MD5 = 97f6744c1ff61eb104a9278df12451c8 install : $(TARGET) @@ -70,14 +70,12 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && python setup.py build - cd $(DIR_APP) && python setup.py install + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/fireinfo-2.1.7-testing.patch - # Remove egg-info - rm -rvf /usr/lib/python*/site-packages/fireinfo*.egg-info - - # XXX Set flag to send profile. - touch /var/ipfire/main/send_profile + cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh + cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && make $(MAKETUNING) + cd $(DIR_APP) && make install @rm -rf $(DIR_APP) @$(POSTBUILD)