Changeset 205

Show
Ignore:
Timestamp:
02/08/99 20:57:30 (10 years ago)
Author:
frodo
Message:

Man-pages

I finally merged in Adrian's man-pages. libsensors.3 is unchanged from his
version; sensors.conf.5 is heavily edited, not because he did a bad job,
but because his source material was not very well written :-). It should
now tell you more about the config file than you ever wanted to know...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/Makefile

    r180 r205  
    8787LIBINCLUDEDIR := $(INCLUDEDIR)/sensors 
    8888 
     89# You should not need to change this. It is the base directory under which the 
     90# manual pages will be installed. 
     91MANDIR := $(PREFIX)/man 
     92 
     93# You should not need to change this. It defines the manual owner and group 
     94# as which manual pages are installed. 
     95MANOWN := root 
     96MANGRP := root 
     97 
    8998# If your /bin/sh is not bash, change the below definition so that make can 
    9099# find bash. 
  • lm-sensors/trunk/TODO

    r199 r205  
    11Many, many things. Most notably: 
    22 
     3* Change all copyrights to 1998,1999 
    34* Check CDROM insert-remove error of Matt Mueller 
    45* Create wait-queues for bus locking instead of pure semaphores, to make 
  • lm-sensors/trunk/lib/Module.mk

    r184 r205  
    2020# verbatim in the rules, until it is redefined.  
    2121MODULE_DIR := lib 
     22 
     23# The manual dirs and files 
     24LIBMAN3DIR := $(MANDIR)/man3 
     25LIBMAN3FILES := $(MODULE_DIR)/libsensors.3 
     26LIBMAN5DIR := $(MANDIR)/man5 
     27LIBMAN5FILES := $(MODULE_DIR)/sensors.conf.5 
    2228 
    2329# The main and minor version of the library 
     
    7884 
    7985install-lib: all-lib 
    80         $(MKDIR) $(LIBDIR) $(LIBINCLUDEDIR) 
     86        $(MKDIR) $(LIBDIR) $(LIBINCLUDEDIR) $(LIBMAN3DIR) $(LIBMAN5DIR) 
    8187        $(INSTALL) -o root -g root -m 644 $(LIBTARGETS) $(LIBDIR) 
    8288        $(LN) $(LIBSHLIBNAME) $(LIBDIR)/$(LIBSHSONAME) 
    8389        $(LN) $(LIBSHSONAME) $(LIBDIR)/$(LIBSHBASENAME) 
    8490        $(INSTALL) -o root -g root -m 644 $(LIBHEADERFILES) $(LIBINCLUDEDIR) 
     91        $(INSTALL) -o $(MANOWN) -g $(MANGRP) -m 644 $(LIBMAN3FILES) $(LIBMAN3DIR) 
     92        $(INSTALL) -o $(MANOWN) -g $(MANGRP) -m 644 $(LIBMAN5FILES) $(LIBMAN5DIR) 
     93 
    8594install :: install-lib 
    8695