freebsd-ports/lang/logo/files/patch-ac
Sheldon Hearn 9ca6cd3927 Update 3.3 -> 4.6 and add a master site. Patches differ slightly from
those submitted.

PR:	10699
Submitted by:	Jose Marques <jose@nobody.org>
1999-06-21 13:56:51 +00:00

48 lines
1.5 KiB
Text

*** makefile.in.orig Tue Jan 6 20:35:51 1998
--- makefile.in Mon Jun 21 15:43:33 1999
***************
*** 2,10 ****
CFLAGS = @CFLAGS@ @CPPFLAGS@ @X_CFLAGS@ -O0
LDFLAGS = @LDFLAGS@
LIBS = @X_PRE_LIBS@ @X_LIBS@ @LIBS@ @X_EXTRA_LIBS@
! prefix = @prefix@
! BINDIR = $(prefix)/bin
! LIBLOC = $(prefix)/lib/logo
# LIBLOC = `pwd`
--- 2,14 ----
CFLAGS = @CFLAGS@ @CPPFLAGS@ @X_CFLAGS@ -O0
LDFLAGS = @LDFLAGS@
LIBS = @X_PRE_LIBS@ @X_LIBS@ @LIBS@ @X_EXTRA_LIBS@
!
! BINDIR = $(PREFIX)/bin
! LIBLOC = $(PREFIX)/lib/logo
! XMPDIR = $(PREFIX)/share/examples/logo
! .ifndef NOPORTDOCS
! DOCDIR = $(PREFIX)/share/doc/logo
! .endif
# LIBLOC = `pwd`
***************
*** 56,62 ****
rm makefile makehelp logo *.o libloc.c
install: all
! for d in $(BINDIR) $(LIBLOC) $(LIBLOC)/logolib $(LIBLOC)/helpfiles; do [ -d $$d ] || mkdir -p $$d || exit 1; done
! cp logo $(BINDIR)/.
! cp logolib/* $(LIBLOC)/logolib/.
! cp helpfiles/* $(LIBLOC)/helpfiles/.
--- 60,70 ----
rm makefile makehelp logo *.o libloc.c
install: all
! for d in $(BINDIR) $(LIBLOC) $(LIBLOC)/logolib $(LIBLOC)/helpfiles $(XMPDIR)/csls $(DOCDIR); do [ -d $$d ] || mkdir -p $$d || exit 1; done
! install -c -s -o bin -g bin -m 555 logo $(BINDIR)/
! install -c -o bin -g bin -m 444 logolib/* $(LIBLOC)/logolib/
! install -c -o bin -g bin -m 444 helpfiles/* $(LIBLOC)/helpfiles/
! install -c -o bin -g bin -m 444 csls/* $(XMPDIR)/csls/
! .ifndef NOPORTDOCS
! install -c -o bin -g bin -m 444 usermanual $(DOCDIR)/
! .endif