diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-09-18 16:06:05 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-09-18 16:06:05 +0000 |
commit | a87c59f3524ca031a40d21ba82e00b26383e6b6f (patch) | |
tree | 7d9fd80d7aa2313b384638ef50b34a852b94a8a1 /audio/rat/files/patch-af | |
parent | Update to latest set of patches (diff) |
The port was suffering bit rot deriving from differences between the
previous pcm driver and newpcm. This replacement port adds newpcm
mixer support and brings port up to date with the current rat release
(4.2.9).
PR: 21333
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=32813
Diffstat (limited to 'audio/rat/files/patch-af')
-rw-r--r-- | audio/rat/files/patch-af | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/audio/rat/files/patch-af b/audio/rat/files/patch-af new file mode 100644 index 000000000000..f6f25611a616 --- /dev/null +++ b/audio/rat/files/patch-af @@ -0,0 +1,41 @@ +--- rat/Makefile.in.prefix Fri Sep 8 21:02:41 2000 ++++ rat/Makefile.in Sun Sep 17 03:00:53 2000 +@@ -13,6 +13,7 @@ + AR = ar + RANLIB = @RANLIB@ + ECHO = echo ++STRIP = strip + + VERSION = @VERSION@ + RATVER = rat-$(VERSION) +@@ -122,7 +123,7 @@ + @${ECHO} "Generating version.h" + @sed -e 's/.*/#define RAT_VERSION "&"/' VERSION > version.h + +-sdr2.plugin.S02.audio.rtp.-.rat-$(VERSION): sdr2.plugin.in ++sdr2.plugin.S02.audio.rtp.-.$(RATVER): sdr2.plugin.in + @${ECHO} "Generating sdr plugin" + @${ECHO} "# Generated automatically from sdr2.plugin.in" > $@ + @${ECHO} "# DO NOT EDIT THIS FILE" >> $@ +@@ -147,9 +148,9 @@ + -rm -rf core core-$(RATVER)-media core-$(RATVER)-ui + + install: all +- ./install-sh -m 555 -c $(RATVER) $(bindir) +- ./install-sh -m 555 -c $(RATVER)-media $(bindir) +- ./install-sh -m 555 -c $(RATVER)-ui $(bindir) ++ ./install-sh -m 555 -s $(STRIP) -c $(RATVER) $(bindir) ++ ./install-sh -m 555 -s $(STRIP) -c $(RATVER)-media $(bindir) ++ ./install-sh -m 555 -s $(STRIP) -c $(RATVER)-ui $(bindir) + ./install-sh -m 444 -c man/man1/rat.1 $(mandir)/man1/rat.1 + ./install-sh -m 444 -c sdr2.plugin.S02.audio.rtp.-.$(RATVER) $(prefix)/etc/sdr/plugins + +@@ -180,7 +181,7 @@ + cvs tag release-`cat VERSION | sed "s/\./-/g"` + + $(RATVER)-$(OSTYPE).tar.gz: $(RATVER) $(RATVER)-ui $(RATVER)-media +- tar cf $(RATVER)-$(OSTYPE).tar README.* MODS COPYRIGHT INSTALL.TXT VERSION $(RATVER) $(RATVER)-ui $(RATVER)-media sdr2.plugin.S02.audio.rtp.-.rat-$(VERSION) ++ tar cf $(RATVER)-$(OSTYPE).tar README.* MODS COPYRIGHT INSTALL.TXT VERSION $(RATVER) $(RATVER)-ui $(RATVER)-media sdr2.plugin.S02.audio.rtp.-.$(RATVER) + rm -f $(RATVER)-$(OSTYPE).tar.gz + gzip -9 $(RATVER)-$(OSTYPE).tar + |