ossp-pkg/shiela/Makefile.in 1.3 -> 1.4
--- Makefile.in 2002/08/19 19:10:37 1.3
+++ Makefile.in 2002/12/21 09:42:57 1.4
@@ -1,5 +1,27 @@
##
-## Makefile for Shiela
+## OSSP shiela - CVS Access Control and Logging Facility
+## Copyright (c) 2000-2002 Ralf S. Engelschall <rse@engelschall.com>
+##
+## This file is part of OSSP shiela, an access control and logging
+## facility for Concurrent Versions System (CVS) repositories
+## which can be found at http://www.ossp.org/pkg/tool/shiela/.
+##
+## 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 the Free Software Foundation; either version
+## 2.0 of the License, or (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this file; if not, write to the Free Software
+## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+## USA, or contact Ralf S. Engelschall <rse@engelschall.com>.
+##
+## Makefile.in: build procedure source (syntax: make)
##
@SET_MAKE@
@@ -8,6 +30,7 @@
SHTOOL = ./shtool
RM = rm -f
SED = sed
+POD2MAN = pod2man
PERL = @PATH_PERL@
CVS = @PATH_CVS@
@@ -41,15 +64,15 @@
@$(SHTOOL) echo -e "%Bgenerating shiela.1%b"
V=`$(SHTOOL) version -l txt -d short VERSION`; \
D=`$(SHTOOL) version -l txt -d long VERSION | $(SED) -e 's;.*(;;' -e 's;).*;;'`; \
- pod2man --section=1 --center="CVS ACL and Logging Facility" \
- --release="$$D" --date="OSSP Shiela $$V" shiela.pod >shiela.1
+ $(POD2MAN) --section=1 --center="CVS ACL and Logging Facility" \
+ --release="$$D" --date="OSSP Shiela $$V" shiela.pod >shiela.1
shiela-install.1: shiela-install.pod
@$(SHTOOL) echo -e "%Bgenerating shiela-install.1%b"
V=`$(SHTOOL) version -l txt -d short VERSION`; \
D=`$(SHTOOL) version -l txt -d long VERSION | $(SED) -e 's;.*(;;' -e 's;).*;;'`; \
- pod2man --section=1 --center="CVS ACL and Logging Facility" \
- --release="$$D" --date="OSSP Shiela $$V" shiela-install.pod >shiela-install.1
+ $(POD2MAN) --section=1 --center="CVS ACL and Logging Facility" \
+ --release="$$D" --date="OSSP Shiela $$V" shiela-install.pod >shiela-install.1
install: all
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
|
|