]> mj.ucw.cz Git - pciutils.git/commitdiff
New config system.
authorMartin Mares <mj@ucw.cz>
Sat, 4 Jan 2003 12:43:31 +0000 (12:43 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 5 May 2006 12:10:56 +0000 (14:10 +0200)
ChangeLog
Makefile
lib/configure

index e5fb9e0709696e9e9dbd0431d3f23623c7f25731..967490853d3c39d4737e1221e4dcf553b55cf09c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
 
        * Released as 2.1.11.
 
+       * Makefile: Changed configuration of installation directories --
+       all paths are now set at the top of the Makefile instead of being
+       scattered between the installation rules. The default installation
+       now goes always to /usr/local regardless of the OS as most distributions
+       already contain some version of pciutils and we don't want custom
+       installations to interfere with the default ones.
+
+       * Makefile: Removed a couple of ancient install hacks: we no longer
+       try to avoid overwriting a newer pci.ids file (users are now expected
+       to use update-ids) and we don't try to remove /etc/pci.ids (a long time
+       has passed since the last version which used it).
+
        * Added the update-ids utility.
 
        * lib: Removed partially implemented "syscall" access method which will
index c0d639a92fa88f0a46484bd82e6f59dab7c93b2e..119b393330b132e8ac74e3e6b55ff98ba841519b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.49 2003/01/04 12:27:51 mj Exp $
+# $Id: Makefile,v 1.50 2003/01/04 12:43:31 mj Exp $
 # Makefile for Linux PCI Utilities
 # (c) 1998--2003 Martin Mares <mj@ucw.cz>
 
@@ -10,32 +10,24 @@ VERSION=2.1.11
 #SUFFIX=-pre2
 DATE=2003-01-04
 
+PREFIX=/usr/local
+SBINDIR=$(PREFIX)/sbin
+SHAREDIR=$(PREFIX)/share
+MANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
 INSTALL=install
 DIRINSTALL=install -d
 PCILIB=libpci.a
-ifeq ($(shell uname),FreeBSD)
-ROOT=/usr/local
-PREFIX=/usr/local
-else
+
 ifeq ($(shell uname),NetBSD)
-ROOT=$(PREFIX)
 PCILIB=libpciutils.a
 LDFLAGS+=-lpci
 else
 ifeq ($(shell uname),AIX)
-ROOT=/usr/local
-PREFIX=/usr/local
 CFLAGS=-g
 INSTALL=installbsd
 DIRINSTALL=mkdir -p
-else
-ROOT=/
-PREFIX=/usr
-endif
 endif
 endif
-MANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
-DISTTMP=/tmp/pciutils-dist
 
 export
 
@@ -45,7 +37,7 @@ lib: lib/config.h
        $(MAKE) -C lib all
 
 lib/config.h:
-       cd lib && ./configure $(PREFIX) $(VERSION)
+       cd lib && ./configure $(SHAREDIR) $(VERSION)
 
 lspci: lspci.o common.o lib/$(PCILIB)
 setpci: setpci.o common.o lib/$(PCILIB)
@@ -55,34 +47,26 @@ setpci.o: setpci.c pciutils.h
 common.o: common.c pciutils.h
 
 update-pciids: update-pciids.sh
-       sed <$< >$@ "s@^DEST=.*@DEST=$(PREFIX)/share/pci.ids@"
+       sed <$< >$@ "s@^DEST=.*@DEST=$(SHAREDIR)/pci.ids@"
 
 %.8: %.man
        M=`echo $(DATE) | sed 's/-01-/-January-/;s/-02-/-February-/;s/-03-/-March-/;s/-04-/-April-/;s/-05-/-May-/;s/-06-/-June-/;s/-07-/-July-/;s/-08-/-August-/;s/-09-/-September-/;s/-10-/-October-/;s/-11-/-November-/;s/-12-/-December-/;s/\(.*\)-\(.*\)-\(.*\)/\3 \2 \1/'` ; sed <$< >$@ "s/@TODAY@/$$M/;s/@VERSION@/pciutils-$(VERSION)$(SUFFIX)/"
 
 clean:
        rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core`
-       rm -f lspci setpci lib/config.* *.8
-       rm -rf dist
+       rm -f update-ids lspci setpci lib/config.* *.8
 
 install: all
 # -c is ignored on Linux, but required on FreeBSD
-       $(DIRINSTALL) -m 755 $(ROOT)/sbin $(PREFIX)/share $(MANDIR)/man8
-       $(INSTALL) -c -m 755 -s lspci setpci $(ROOT)/sbin
-       $(INSTALL) -c -m 755 -s update-pciids $(PREFIX)/sbin
-       if [ ! -f $(PREFIX)/share/pci.ids -o pci.ids -nt $(PREFIX)/share/pci.ids ] ; then \
-               $(INSTALL) -c -m 644 pci.ids $(PREFIX)/share ; \
-       elif [ -f $(PREFIX)/share/pci.ids ] ; then \
-               echo "$(PREFIX)/share/pci.ids is same or newer than the version to be installed, skipping." ; \
-       fi
+       $(DIRINSTALL) -m 755 $(SBINDIR) $(SHAREDIR) $(MANDIR)/man8
+       $(INSTALL) -c -m 755 -s lspci setpci update-pciids $(SBINDIR)
+       $(INSTALL) -c -m 644 pci.ids $(SHAREDIR)
        $(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(MANDIR)/man8
-# Remove relics from old versions
-       rm -f $(ROOT)/etc/pci.ids
 
 uninstall: all
-       rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
-       rm -f $(PREFIX)/share/pci.ids
-       rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
+       rm -f $(SBINDIR)/lspci $(SBINDIR)/setpci $(SBINDIR)/update-pciids
+       rm -f $(SHAREDIR)/pci.ids
+       rm -f $(MANDIR)/man8/lspci.8 $(MANDIR)/man8/setpci.8 $(MANDIR)/man8/update-pciids.8
 
 get-ids:
        cp ~/tree/pciids/pci.ids pci.ids
@@ -99,6 +83,7 @@ release:
        mv README.new README
 
 REL=pciutils-$(VERSION)$(SUFFIX)
+DISTTMP=/tmp/pciutils-dist
 
 dist: clean pci.ids
        rm -rf $(DISTTMP)
@@ -111,4 +96,4 @@ dist: clean pci.ids
 upload: dist
        maint/upload $(REL)
 
-.PHONY: all lib clean install uninstall dist man release upload update-ids get-ids
+.PHONY: all lib clean install uninstall dist man release upload get-ids
index 74284bb78870bc89a70de8ca38ec3578f599b452..0f791cc74581281c243e57f7d4d7e053afa79aa2 100755 (executable)
@@ -10,7 +10,7 @@ echo_n() {
 }
 
 echo_n "Configuring libpci for your system..."
-prefix=${1:-/usr}
+sharedir=${1:-/usr/share}
 version=${2:-0.0}
 sys=`uname -s`
 rel=`uname -r`
@@ -80,6 +80,6 @@ echo " dump"
 if [ -z "$ok" ] ; then
        echo "WARNING: No real configuration access method is available."
 fi
-echo >>$c "#define PATH_PCI_IDS \"$prefix/share/pci.ids\""
+echo >>$c "#define PATH_PCI_IDS \"$sharedir/pci.ids\""
 echo >>$c "#define PCILIB_VERSION \"$version\""
 sed '/^#define [^ ]*$/!d;s/^#define \(.*\)/\1=1/' <$c >config.mk