1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-17 00:00:40 +00:00
freebsd-ports/audio/tracker/files/patch-aa
1995-08-30 16:05:36 +00:00

89 lines
2.8 KiB
Plaintext

*** Makefile.orig Sun Aug 27 22:48:39 1995
--- Makefile Wed Aug 30 19:36:13 1995
***************
*** 29,35 ****
MAN_DIR = $(PREFIX)/man
# Where to put the compression methods description
! COMPRESSION_FILE=$(PREFIX)/lib/compression_methods
# How to install the binaries and manpage. If you have a unix system,
# use the GNU install program if you have it, otherwise try 'cp'. For
--- 29,35 ----
MAN_DIR = $(PREFIX)/man
# Where to put the compression methods description
! COMPRESSION_FILE=$(PREFIX)/etc/compression_methods
# How to install the binaries and manpage. If you have a unix system,
# use the GNU install program if you have it, otherwise try 'cp'. For
***************
*** 50,57 ****
#
# If you don't wish to use the 'make install' and 'make install.man'
# commands, you can ignore these.
! INST_BIN_OPT = -c -s -m 555 -o store -g store
! INST_MAN_OPT = -c -m 444 -o store -g store
###############################################################################
#
# C compiler flags and libraries for each machine.
--- 50,59 ----
#
# If you don't wish to use the 'make install' and 'make install.man'
# commands, you can ignore these.
! #INST_BIN_OPT = -c -s -m 555 -o store -g store
! #INST_MAN_OPT = -c -m 444 -o store -g store
! INST_BIN_OPT = -c -s -m 555 -o bin -g bin
! INST_MAN_OPT = -c -m 644 -o bin -g bin
###############################################################################
#
# C compiler flags and libraries for each machine.
***************
*** 236,242 ****
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
st_virt$O
! all: version.c config.h tracker${EXE} randomize${EXE} splitmod${EXE}
config.h: $(CONFIG)config.h Makefile
rm -f config.h
--- 238,244 ----
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
st_virt$O
! all: version.c config.h tracker${EXE} randomize${EXE}
config.h: $(CONFIG)config.h Makefile
rm -f config.h
***************
*** 248,261 ****
install:
$(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
$(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
- $(INSTALL) $(INST_BIN_OPT) splitmod $(BIN_DIR)
[ -f ${COMPRESSION_FILE} ] || \
$(INSTALL) $(INST_MAN_OPT) compression_methods ${COMPRESSION_FILE}
install.man:
$(INSTALL) $(INST_MAN_OPT) man/tracker.1 $(MAN_DIR)/man1/tracker.1
!
devel:
-rm -f $(BIN_DIR)/dtracker #$(BIN_DIR)/splitmod
--- 250,263 ----
install:
$(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
$(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
[ -f ${COMPRESSION_FILE} ] || \
$(INSTALL) $(INST_MAN_OPT) compression_methods ${COMPRESSION_FILE}
install.man:
$(INSTALL) $(INST_MAN_OPT) man/tracker.1 $(MAN_DIR)/man1/tracker.1
! install.info:
! gzip < Docs/tracker.guide > $(PREFIX)/info/tracker.info.gz
devel:
-rm -f $(BIN_DIR)/dtracker #$(BIN_DIR)/splitmod