]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
pciutils: update to 3.4.1
authorMarcel Lorenz <lorenz.marcel@web.de>
Fri, 4 Mar 2016 07:12:00 +0000 (08:12 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 Mar 2016 15:40:21 +0000 (15:40 +0000)
Update pciutils to last version from Linux from Scratch.

Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/pciutils
lfs/pciutils

index 43c31a1a2e7679534e8e95c3ab069b6533f8512e..5bb11a2590dee76c5e63ee5ce7670f0bc2b81ee6 100644 (file)
@@ -1,7 +1,7 @@
 bin/lspci
 bin/setpci
 lib/libpci.so.3
-lib/libpci.so.3.1.10
+lib/libpci.so.3.4.1
 sbin/update-pciids
 #usr/include/pci
 #usr/include/pci/config.h
index fc4a962f35ab634ced9bf7e0d2244c9859d2c50e..7c313ba3e6c01954d0d8e05f92feda16d4364f20 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2012  IPFire Team  <info@ipfire.org>                          #
+# Copyright (C) 2007-2016 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        = 3.1.10
+VER        = 3.4.1
 
 THISAPP    = pciutils-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
+DL_FILE    = $(THISAPP).tar.xz
 DL_FROM    = $(URL_IPFIRE)
 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 = cdb1e5a95ab7ac67349f10c8f77a6d3c
+$(DL_FILE)_MD5 = 35763bb1eab7bc9bf6eb6efb72cbc8a1
 
 install : $(TARGET)
 
@@ -71,7 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && make SHARED=yes OPT="$(CFLAGS)" PREFIX=/usr STRIP="" \
-               IDSDIR=/usr/share/hwdata ZLIB=no $(MAKETUNING)
+               SHAREDIR=/usr/share/hwdata $(MAKETUNING)
 
        cd $(DIR_APP) && install -p lspci setpci /bin
        cd $(DIR_APP) && install -p update-pciids /sbin
@@ -85,6 +85,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        cd $(DIR_APP) && install -p lib/config.h /usr/include/pci
        cd $(DIR_APP) && install -p lib/types.h /usr/include/pci
        cd $(DIR_APP) && install -p lib/libpci.pc /usr/lib/pkgconfig
-
+       chmod -v 755 /usr/lib/libpci.so
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)