1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/textproc/yodl/files/patch-ac
Will Andrews 6191a0f6a8 Major overhaul to make this thing work again.
1) New MASTER_SITES.  I put a bunch of them (obtained from the
	   good ole' ftpsearch.ntnu.no) here for redundancy.
	2) Chase checksum.  I was unable to find the original distfile.
	3) Make port respect CC/CFLAGS.
	4) Remove GMAKE now that we respect CC/CFLAGS.
	5) Remove bash dependency now that we can use /bin/sh.
	6) Fix compile warning about malloc.h vs. stdlib.h.

PR:			17150
Submitted by:		Mikhail Teterin <mi@aldan.algebra.com>
Hall of Shame entry:	dburr (for complete disregard)
2000-06-09 01:36:55 +00:00

48 lines
971 B
Plaintext

--- manpages/Makefile.in.orig Fri Jan 24 05:42:52 1997
+++ manpages/Makefile.in Fri Mar 3 10:01:20 2000
@@ -7,4 +7,2 @@
-SHELL=__BASH__
-
man1=$(MANPREFIX)/man1
@@ -24,6 +22,6 @@
yodl.man: yodl.yo ../Makefile
- yodl2man $<
+ yodl2man yodl.yo
$(man1)/yodl.1: yodl.man
- cp $< $@
+ cp yodl.man $@
@@ -34,6 +32,6 @@
yodlconverters.man: yodlconverters.yo ../Makefile
- yodl2man $<
+ yodl2man yodlconverters.yo
$(man1)/yodlconverters.1: yodlconverters.man
- cp $< $@
+ cp yodlconverters.man $@
@@ -48,3 +46,3 @@
$(man7)/yodlmacros.7: yodlmacros.man
- cp $< $@
+ cp yodlmacros.man $@
@@ -55,6 +53,6 @@
yodlmanpage.man: yodlmanpage.yo ../Makefile
- yodl2man $<
+ yodl2man yodlmanpage.yo
$(man7)/yodlmanpage.7: yodlmanpage.man
- cp $< $@
+ cp yodlmanpage.man $@
@@ -65,6 +63,6 @@
striproff.man: striproff.yo ../Makefile
- yodl2man $<
+ yodl2man striproff.yo
$(man1)/striproff.1: striproff.man
- cp $< $@
+ cp striproff.man $@