X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fcpufrequtils;h=d558efa6124519cf3f4d41487fa71a675f6e122f;hb=39eb05b2008e43ef666227f53409e038c0074809;hp=5a999493d832e4bb518bcead171fc9eb77f8182c;hpb=ca160f3d43a192ba093d427f087d8ae6959515d8;p=ipfire-2.x.git diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils index 5a999493d8..d558efa612 100644 --- a/lfs/cpufrequtils +++ b/lfs/cpufrequtils @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2015 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,18 +24,21 @@ include Config -VER = 005 +VER = 008 THISAPP = cpufrequtils-$(VER) DL_FILE = $(THISAPP).tar.bz2 DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +SUP_ARCH = x86_64 i586 PROG = cpufrequtils -PAK_VER = 3 +PAK_VER = 7 DEPS = "" +CFLAGS += -fno-PIC + ############################################################################### # Top-level Rules ############################################################################### @@ -44,7 +47,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 73a41589fe74b73fc530f4179f2c6142 +$(DL_FILE)_MD5 = c59b71c044d463896f3247e8dd83dd7e install : $(TARGET) @@ -79,5 +82,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && make cd $(DIR_APP) && make install + + #install initscripts + $(call INSTALL_INITSCRIPT,cpufreq) + @rm -rf $(DIR_APP) @$(POSTBUILD)