X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fnewt;h=ca24b21b2f7dcebeb0af369ceba5f74466ae7653;hb=f034b9515670e7c6fe92d689f8247f44c6052daf;hp=b5c57d0d6b017bc6b8c9f41589814b964b551c49;hpb=5114bcb3cdee18bdb30b71e9e0df2b559b561273;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/newt b/lfs/newt index b5c57d0d6b..ca24b21b2f 100644 --- a/lfs/newt +++ b/lfs/newt @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2018 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 = 0.51.6 +VER = 0.52.21 THISAPP = newt-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -38,9 +38,9 @@ TARGET = $(DIR_INFO)/$(THISAPP) objects = $(DL_FILE) -$(DL_FILE) = $(DL_FROM)/$(DL_FILE) +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 98567d5a18535e3a926dca5b4527b4a9 +$(DL_FILE)_MD5 = a0a5fd6b53bb167a65e15996b249ebb5 install : $(TARGET) @@ -69,13 +69,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) && patch -Np1 < $(DIR_SRC)/src/patches/newt-0.51.6-if1close.patch - cd $(DIR_APP) && ./configure --without-gpm-support - cd $(DIR_APP) && sed -i 's%^CFLAGS.*$$%CFLAGS = $(CFLAGS) -Wall -D_GNU_SOURCE%' Makefile - cd $(DIR_APP) && make + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --without-gpm-support \ + --without-tcl \ + --with-python=python3.8 + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install - cd $(DIR_APP) && install -m 0644 newt.h /usr/include - ln -sf libnewt.so.0.51 /usr/lib/libnewt.so @rm -rf $(DIR_APP) @$(POSTBUILD)