summaryrefslogtreecommitdiff
path: root/audio/tracker/files
diff options
context:
space:
mode:
Diffstat (limited to 'audio/tracker/files')
-rw-r--r--audio/tracker/files/patch-aa121
-rw-r--r--audio/tracker/files/patch-ab18
2 files changed, 120 insertions, 19 deletions
diff --git a/audio/tracker/files/patch-aa b/audio/tracker/files/patch-aa
index 470698aacd7f..c1451d18ab48 100644
--- a/audio/tracker/files/patch-aa
+++ b/audio/tracker/files/patch-aa
@@ -1,7 +1,17 @@
-*** Makefile.orig Tue May 7 19:20:50 1996
---- Makefile Tue Nov 12 06:56:18 1996
+*** Makefile.orig Wed May 8 00:20:50 1996
+--- Makefile Wed Dec 29 06:05:14 1999
***************
-*** 20,26 ****
+*** 10,26 ****
+ # hpalib, hplow, hp3, dec, solaris, sparc, linux, freebsd, sgi,
+ # soundblaster, aix, next, MM1, NAS, sbos2, SVR4
+ # gmake needed to handle this file in FreeBSD
+! MACHINE = sparc
+ VERSION = 5.3
+ #VPATH=..
+
+ # The name of your C compiler. For most machines this will be
+ # either 'cc' or 'gcc'.
+! CC = gcc
OPTS=-c
@@ -9,7 +19,17 @@
# Destination directory for tracker binaries and manpage.
#
# If you don't wish to use the 'make install' and 'make install.man'
---- 20,26 ----
+--- 10,26 ----
+ # hpalib, hplow, hp3, dec, solaris, sparc, linux, freebsd, sgi,
+ # soundblaster, aix, next, MM1, NAS, sbos2, SVR4
+ # gmake needed to handle this file in FreeBSD
+! MACHINE = freebsd
+ VERSION = 5.3
+ #VPATH=..
+
+ # The name of your C compiler. For most machines this will be
+ # either 'cc' or 'gcc'.
+! CC ?= gcc
OPTS=-c
@@ -18,7 +38,24 @@
#
# If you don't wish to use the 'make install' and 'make install.man'
***************
-*** 166,172 ****
+*** 30,36 ****
+ INFO_DIR = $(PREFIX)/info
+
+ # 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
+--- 30,36 ----
+ INFO_DIR = $(PREFIX)/info
+
+ # 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
+***************
+*** 166,179 ****
UI_linux = Unix/
SHELL_linux = /bin/sh
@@ -26,14 +63,45 @@
LIBS_freebsd = -lm
AUDIODIR_freebsd=PCux/
CONFIG_freebsd = PCux/freebsd_
---- 166,172 ----
+ O_freebsd = .o
+ EXE_freebsd =
+ UI_freebsd = Unix/
+! SHELL_freebsd = /bin/sh
+
+ CFLAGS_aix = -O
+ LIBS_aix = -lm
+--- 166,179 ----
UI_linux = Unix/
SHELL_linux = /bin/sh
-! CFLAGS_freebsd = -O2 -funroll-loops -finline-functions
+! CFLAGS_freebsd = -funroll-loops -finline-functions
LIBS_freebsd = -lm
AUDIODIR_freebsd=PCux/
CONFIG_freebsd = PCux/freebsd_
+ O_freebsd = .o
+ EXE_freebsd =
+ UI_freebsd = Unix/
+! SHELL_freebsd = ${SH}
+
+ CFLAGS_aix = -O
+ LIBS_aix = -lm
+***************
+*** 220,226 ****
+ UI_sbos2 = OS2/./
+ SHELL_sbos2 = /bin/sh
+
+! CFLAGS = $(CFLAGS_${MACHINE})
+ COPTS = $(OPTS) $(CFLAGS)
+ LIBS = $(LIBS_${MACHINE})
+ CONFIG = Arch/$(CONFIG_${MACHINE})
+--- 220,226 ----
+ UI_sbos2 = OS2/./
+ SHELL_sbos2 = /bin/sh
+
+! CFLAGS += $(CFLAGS_${MACHINE})
+ COPTS = $(OPTS) $(CFLAGS)
+ LIBS = $(LIBS_${MACHINE})
+ CONFIG = Arch/$(CONFIG_${MACHINE})
***************
*** 250,256 ****
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
@@ -47,27 +115,48 @@
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
st_virt$O automaton$O
-! all: tracker${EXE} randomize${EXE}
+! all: tracker${EXE} randomize${EXE} Docs/tracker.info
config.h: $(CONFIG)config.h
rm -f config.h
***************
-*** 272,280 ****
+*** 270,280 ****
+ echo >version.c char \*VERSION=\"${VERSION}\"\;
+
install:
- $(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
- $(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
-- $(INSTALL) $(INST_BIN_OPT) splitmod $(BIN_DIR)
+! $(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}
# no manpage available, use the texinfo manual.
install.man:
---- 272,279 ----
+--- 270,279 ----
+ echo >version.c char \*VERSION=\"${VERSION}\"\;
+
install:
- $(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
- $(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
+! ${BSD_INSTALL_PROGRAM} tracker $(BIN_DIR)
+! ${BSD_INSTALL_PROGRAM} randomize $(BIN_DIR)
[ -f ${COMPRESSION_FILE} ] || \
-! $(INSTALL) $(INST_MAN_OPT) Lib/compression_methods ${COMPRESSION_FILE}
+! ${BSD_INSTALL_MAN} Lib/compression_methods ${COMPRESSION_FILE}
# no manpage available, use the texinfo manual.
install.man:
+***************
+*** 285,291 ****
+ install.info: Docs/tracker.info
+ (cd Docs; \
+ for f in tracker.info tracker.info-* ; do \
+! $(INSTALL) $(INST_INFO_OPT) $$f $(INFO_DIR)/$$f; \
+ done)
+
+ devel:
+--- 284,290 ----
+ install.info: Docs/tracker.info
+ (cd Docs; \
+ for f in tracker.info tracker.info-* ; do \
+! ${BSD_INSTALL_DATA} $$f $(INFO_DIR)/$$f; \
+ done)
+
+ devel:
diff --git a/audio/tracker/files/patch-ab b/audio/tracker/files/patch-ab
index 6d56391fa6bf..93f2a856058c 100644
--- a/audio/tracker/files/patch-ab
+++ b/audio/tracker/files/patch-ab
@@ -1,5 +1,17 @@
-*** Docs/tracker.texinfo.orig Thu Apr 11 21:21:05 1996
---- Docs/tracker.texinfo Tue Nov 12 07:08:17 1996
+*** Docs/tracker.texinfo.orig Fri Apr 12 02:21:05 1996
+--- Docs/tracker.texinfo Wed Dec 29 05:52:39 1999
+***************
+*** 3,8 ****
+--- 3,11 ----
+ @setfilename tracker.info
+ @set VERSION 4.44
+ @settitle Tracker @value{VERSION}
++ @direntry
++ * Tracker: (tracker). SoundTracker player.
++ @end direntry
+ @c End of header
+ @set EMAIL Marc.Espie@@ens.fr
+ @set POSTAL Marc Espie@*60 rue du 4 septembre@*87100 Limoges@*France
***************
*** 979,992 ****
* Other Architectures: Porting tracker.
@@ -16,7 +28,7 @@
@subsection Amiga
There is currently one Amiga version running under AmigaDos.
---- 979,992 ----
+--- 982,995 ----
* Other Architectures: Porting tracker.
@end menu