]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/util-linux
util-linux: update to 2.28.2
[ipfire-2.x.git] / lfs / util-linux
index 7f69e67514bfbedcd5df82ee18a6d24c306e4ab3..ac8d7410a60b2014f7f96674fb29808f1a367e1c 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2013   IPFire Team  <info@ipfire.org>                    #
+# Copyright (C) 2007-2017   IPFire Team  <info@ipfire.org>                    #
 #                                                                             #
 # 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        #
 
 include Config
 
-VER        = 2.24
+VER        = 2.28.2
 
 THISAPP    = util-linux-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
+PROG       = util-linux
+
 
 ###############################################################################
 # Top-level Rules
@@ -40,7 +42,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 4fac6443427f575fc5f3531a4ad2ca01
+$(DL_FILE)_MD5 = 46a232a37bce45371a86d19300edc47a
 
 install : $(TARGET)
 
@@ -70,11 +72,21 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure
-       cd $(DIR_APP) && make $(MAKETUNING) HAVE_KILL=yes HAVE_SLN=yes
-       cd $(DIR_APP) && make HAVE_KILL=yes HAVE_SLN=yes install
+       cd $(DIR_APP) && ./configure \
+               --docdir=/usr/share/doc/util-linux \
+               --disable-static \
+               --disable-nls \
+               --disable-static \
+               --enable-pg \
+               --without-python \
+               --without-systemd \
+               --without-systemdsystemunitdir
+       cd $(DIR_APP) && make $(MAKETUNING)
+       cd $(DIR_APP) && make install
+
        # Install fstrim cronjob
        mkdir -p /etc/fcron.daily
        install -m 0755 $(DIR_SRC)/config/fstrim/trim /etc/fcron.daily/trim
+
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)