aboutsummaryrefslogtreecommitdiff
path: root/comms/qrq/files
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2011-09-24 12:49:17 +0000
committerDiane Bruce <db@FreeBSD.org>2011-09-24 12:49:17 +0000
commit1bf700952fe18f15f3c6c62a393c068e6f69a777 (patch)
tree96874e6b0abf196a79968417a0484c2f86f2b11d /comms/qrq/files
parentadcd273a957c5e4f6e0f77f89aa60e511602ec2c (diff)
downloadports-1bf700952fe18f15f3c6c62a393c068e6f69a777.tar.gz
ports-1bf700952fe18f15f3c6c62a393c068e6f69a777.zip
- Update from 0.2.0 to 0.2.1
- Change log from upstream ,------------------------------------------------------------------------------ | 0.2.1 / 2011-09-19 Fabian Kurz <mail@fkurz.net> | * Added support for native CoreAudio on OSX. Also builds for iOS. | [tnx KB1OOO] | * Removed support for OpenAL now that native OSX is supported and Pulse | Audio is available. [tnx KB1OOO] | * Added English word list english.qcb [tnx Chuck Vaughn, AA0HW] | * Fixed missing audio on second channel for OSS | * Fixed Debian Bug 771075 [tnx John Nogatch, AC6SL] '------------------------------------------------------------------------------
Notes
Notes: svn path=/head/; revision=282303
Diffstat (limited to 'comms/qrq/files')
-rw-r--r--comms/qrq/files/patch-Makefile54
1 files changed, 25 insertions, 29 deletions
diff --git a/comms/qrq/files/patch-Makefile b/comms/qrq/files/patch-Makefile
index 44fe6adfcae9..d95cc4a36bf4 100644
--- a/comms/qrq/files/patch-Makefile
+++ b/comms/qrq/files/patch-Makefile
@@ -1,15 +1,15 @@
---- Makefile.orig 2011-05-07 17:00:51.000000000 -0400
-+++ Makefile 2011-05-16 11:43:02.000000000 -0400
+--- Makefile.orig 2011-09-19 16:01:41.000000000 -0400
++++ Makefile 2011-09-20 17:38:45.000000000 -0400
@@ -1,14 +1,14 @@
# qrq Makefile -- Fabian Kurz, DJ1YFK -- http://fkurz.net/ham/qrq.html
- VERSION=0.2.0
+ VERSION=0.2.1
-DESTDIR?=/usr
+DESTDIR?=%%PREFIX%%
- # set to YES if you want to use OpenAL instead of OSS
- # note that you must use OpenAL for OSX
- USE_OPENAL=NO
+ # set to YES if you want to use Core Audio
+ # note that you must use Core Audio for OSX
+ USE_CA=NO
# set to YES if you want to use PulseAudio instead of OSS
-USE_PA=YES
@@ -17,30 +17,26 @@
# set to YES if building on OSX
OSX_PLATFORM=NO
-@@ -49,10 +49,10 @@
- all: qrq
+@@ -23,7 +23,7 @@
+ endif
- qrq: $(OBJECTS)
-- g++ -pthread -Wall -lm -lncurses $(LDFLAGS) -o $@ $^
-+ ${CC} -pthread -Wall -lm -lncurses $(LDFLAGS) -o $@ $^
-
- .c.o:
-- gcc -Wall $(CFLAGS) -c $<
-+ ${CC} -Wall $(CFLAGS) -c $<
+ CFLAGS:=$(CFLAGS) -D DESTDIR=\"$(DESTDIR)\" -D VERSION=\"$(VERSION)\"
+-CC=gcc
++CC?=gcc
- .cpp.o:
- g++ $(CFLAGS) -c $<
-@@ -83,11 +83,11 @@
+ ifeq ($(USE_CA), YES)
+ OBJECTS=qrq.o coreaudio.o
+@@ -88,11 +88,11 @@
install: qrq
- install -d -v $(DESTDIR)/share/qrq/
-- install -d -v $(DESTDIR)/share/man/man1/
-+ install -d -v $(DESTDIR)/man/man1/
- install -d -v $(DESTDIR)/bin/
- install -s -m 0755 qrq $(DESTDIR)/bin/
- install -m 0755 qrqscore $(DESTDIR)/bin/
-- install -m 0644 qrq.1 $(DESTDIR)/share/man/man1/
-+ install -m 0644 qrq.1 $(DESTDIR)/man/man1/
- install -m 0644 callbase.qcb $(DESTDIR)/share/qrq/
- install -m 0644 english.qcb $(DESTDIR)/share/qrq/
- install -m 0644 qrqrc $(DESTDIR)/share/qrq/
+ install -d -v $(DESTDIR)/share/qrq/
+- install -d -v $(DESTDIR)/share/man/man1/
++ install -d -v $(DESTDIR)/man/man1/
+ install -d -v $(DESTDIR)/bin/
+ install -s -m 0755 qrq $(DESTDIR)/bin/
+ install -m 0755 qrqscore $(DESTDIR)/bin/
+- install -m 0644 qrq.1 $(DESTDIR)/share/man/man1/
++ install -m 0644 qrq.1 $(DESTDIR)/man/man1/
+ install -m 0644 callbase.qcb $(DESTDIR)/share/qrq/
+ install -m 0644 english.qcb $(DESTDIR)/share/qrq/
+ install -m 0644 qrqrc $(DESTDIR)/share/qrq/