diff options
author | jmmv <jmmv@pkgsrc.org> | 2002-12-22 12:22:05 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2002-12-22 12:22:05 +0000 |
commit | c1adfb78e81ade48a23d26f96a9e61dce0e444e0 (patch) | |
tree | 1ddeba7fd462aa543334b95ba305552928c5520f /audio/tracker/patches | |
parent | 4c9c04ddc9869a6bf461465bc5091fa539974203 (diff) | |
download | pkgsrc-c1adfb78e81ade48a23d26f96a9e61dce0e444e0.tar.gz |
Make this package install its configuration file under the examples
hierarchy and use bsd.pkg.install.mk (PKG_SYSCONFDIR) to copy it to
the right place. Bump PKGREVISION to 1.
While editing patch-aa, switch it to unified diff format, as recommended
by agc.
Diffstat (limited to 'audio/tracker/patches')
-rw-r--r-- | audio/tracker/patches/patch-aa | 116 |
1 files changed, 42 insertions, 74 deletions
diff --git a/audio/tracker/patches/patch-aa b/audio/tracker/patches/patch-aa index 237f247e11a..d74ef2d0885 100644 --- a/audio/tracker/patches/patch-aa +++ b/audio/tracker/patches/patch-aa @@ -1,75 +1,43 @@ -$NetBSD: patch-aa,v 1.2 1998/08/07 10:36:18 agc Exp $ +$NetBSD: patch-aa,v 1.3 2002/12/22 12:22:06 jmmv Exp $ -*** Makefile.orig Tue May 7 19:20:50 1996 ---- Makefile Tue Nov 12 06:56:18 1996 -*************** -*** 20,26 **** - - OPTS=-c - -! PREFIX=/users/algo/espie/pub - # Destination directory for tracker binaries and manpage. - # - # If you don't wish to use the 'make install' and 'make install.man' ---- 20,26 ---- - - OPTS=-c - -! PREFIX?=/users/algo/espie/pub - # Destination directory for tracker binaries and manpage. - # - # If you don't wish to use the 'make install' and 'make install.man' -*************** -*** 166,172 **** - UI_linux = Unix/ - SHELL_linux = /bin/sh - -! CFLAGS_freebsd = -O2 -funroll-loops -finline-functions -fno-strength-reduce - LIBS_freebsd = -lm - AUDIODIR_freebsd=PCux/ - CONFIG_freebsd = PCux/freebsd_ ---- 166,172 ---- - UI_linux = Unix/ - SHELL_linux = /bin/sh - -! CFLAGS_freebsd = -O2 -funroll-loops -finline-functions - LIBS_freebsd = -lm - AUDIODIR_freebsd=PCux/ - CONFIG_freebsd = PCux/freebsd_ -*************** -*** 250,256 **** - 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} splitmod${EXE} Docs/tracker.text - - config.h: $(CONFIG)config.h - rm -f config.h ---- 250,256 ---- - 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} - - config.h: $(CONFIG)config.h - rm -f config.h -*************** -*** 272,280 **** - 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} - - # no manpage available, use the texinfo manual. - install.man: ---- 272,279 ---- - install: - $(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR) - $(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR) - [ -f ${COMPRESSION_FILE} ] || \ -! $(INSTALL) $(INST_MAN_OPT) Lib/compression_methods ${COMPRESSION_FILE} - - # no manpage available, use the texinfo manual. - install.man: +--- Makefile.orig Tue May 7 17:20:50 1996 ++++ Makefile +@@ -20,7 +20,7 @@ CC = gcc + + OPTS=-c + +-PREFIX=/users/algo/espie/pub ++PREFIX?=/users/algo/espie/pub + # Destination directory for tracker binaries and manpage. + # + # If you don't wish to use the 'make install' and 'make install.man' +@@ -166,7 +166,7 @@ EXE_linux = + UI_linux = Unix/ + SHELL_linux = /bin/sh + +-CFLAGS_freebsd = -O2 -funroll-loops -finline-functions -fno-strength-reduce ++CFLAGS_freebsd = -O2 -funroll-loops -finline-functions + LIBS_freebsd = -lm + AUDIODIR_freebsd=PCux/ + CONFIG_freebsd = PCux/freebsd_ +@@ -250,7 +250,7 @@ OBJ_SPLITMOD = split$O time$O st_read$O + 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} splitmod${EXE} Docs/tracker.text ++all: tracker${EXE} randomize${EXE} + + config.h: $(CONFIG)config.h + rm -f config.h +@@ -272,9 +272,8 @@ version.c: Makefile + 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} ++ [ -f ${COMPRESSION_FILE_EG} ] || \ ++ $(INSTALL) $(INST_MAN_OPT) Lib/compression_methods ${COMPRESSION_FILE_EG} + + # no manpage available, use the texinfo manual. + install.man: |