mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
81250a8ee9
From the website (http://www.gridpackagingtools.org/): The Grid Packaging Tools are a multiplatform packaging system used to deploy Grid middleware for projects such as the National Science Foundation's Middleware Initiative (NMI) and the Globus Toolkit. PR: ports/61604 Submitted by: Brooks Davis <brooks@freebsd.org>
19 lines
679 B
Plaintext
19 lines
679 B
Plaintext
|
|
$FreeBSD$
|
|
|
|
--- packaging_tools/Makefile.in.orig Tue Dec 9 07:36:07 2003
|
|
+++ packaging_tools/Makefile.in Thu Feb 26 09:49:04 2004
|
|
@@ -847,8 +847,10 @@
|
|
$(mkinstalldirs) $(DESTDIR)man/man1; \
|
|
list='$(sbin_SCRIPTS)'; for p in $$list; do \
|
|
script=`echo $$p | sed 's!perl/scripts/!!'`; \
|
|
- echo "Generating $(DESTDIR)$(prefix)/man/man1/$$script.1"; \
|
|
- $(POD2MAN) $$p > $(DESTDIR)$(prefix)/man/man1/$$script.1; \
|
|
+ if /usr/bin/grep -q ^=cut $$p; then \
|
|
+ echo "Generating $(DESTDIR)$(prefix)/man/man1/$$script.1"; \
|
|
+ $(POD2MAN) $$p > $(DESTDIR)$(prefix)/man/man1/$$script.1; \
|
|
+ fi; \
|
|
done \
|
|
else \
|
|
echo "Skipping Man page installation"; \
|