X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Ffireinfo;h=f1ee58a13c64488ff7099cbcff74b30bdecc4669;hp=5b5e2619683948827e0c845671b0fab7f04b1e4f;hb=826c22d66c3eae74bb4c7287cdd81478a5341e01;hpb=f179d25f982b5a8c8bfc878263a115409b003d6d diff --git a/lfs/fireinfo b/lfs/fireinfo index 5b5e26196..f1ee58a13 100644 --- a/lfs/fireinfo +++ b/lfs/fireinfo @@ -24,11 +24,11 @@ include Config -VER = 0.13 +VER = 2.1.9 -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 = 3e8571bc71ddf470bbfd82f17a4efb9f +$(DL_FILE)_MD5 = a4dbb3a4111f263b5059b2f76b14b32c install : $(TARGET) @@ -70,14 +70,13 @@ $(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 + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/fireinfo-0001-Exclude-some-more-invalid-patterns.patch - # 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)