X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Ffireinfo;h=0c36706569199978645aff06c6eeb397c3586711;hb=dd58c50c3e55749903369c2b3258de7cc307c8ce;hp=2c168e4234904c23b366cf1857d20bc65ba10453;hpb=1c0a5e3e6de12ffa6371ec5b3c409b495cda3b20;p=people%2Fteissler%2Fipfire-2.x.git diff --git a/lfs/fireinfo b/lfs/fireinfo index 2c168e423..0c3670656 100644 --- a/lfs/fireinfo +++ b/lfs/fireinfo @@ -24,11 +24,11 @@ include Config -VER = 0.9.1 +VER = 2.1.10 -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 = 20c84bc4fb41d35fc4049798f5c480ad +$(DL_FILE)_MD5 = cc7838cda22d7d4e9bb177aa1dc6f25a install : $(TARGET) @@ -70,14 +70,11 @@ $(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 - # 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)