- update qrq to 0.2.0

- From vendor changelog

| 0.2.0 / 2011-05-07   Fabian Kurz <mail@fkurz.net>
|       * Added options for fixed CW speed (regardless of errors), unlimited   |       usage of repeats and unlimited attempt lengths. Suggested by AA0HW.
|       * No more duplicate callsigns in one attempt
|       * Unlimited attempts (e.g. with _all_ callsigns of a particular
|         database) added
|       * Call database file can be changed/selected in a menu now
|       * Added a database with the 100 most common English words
|       * Call databases with DOS linebreaks can now be used.
|       * Fixed bugs in memory allocation.
|       * CW edges changed to raised cosine
|       * Minimum character speed can be specified; below, Farnsworth is used
|       * PulseAudio support added (OSS and OpenAL still available)
|       * Reformatted ChangeLog
This commit is contained in:
Diane Bruce 2011-05-17 11:08:32 +00:00
parent 1b784959fb
commit 772fb240ec
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=274221
4 changed files with 35 additions and 31 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= qrq
PORTVERSION= 0.1.4
PORTVERSION= 0.2.0
CATEGORIES= comms hamradio
MASTER_SITES= http://fkurz.net/ham/qrq/ \
${MASTER_SITE_LOCAL}

View file

@ -1,2 +1,2 @@
SHA256 (qrq-0.1.4.tar.gz) = 6c9bd2e3d5c1d06c6a84e910deeff3c1e7a7f2c4c0f0376ddfb11fa4855aff9a
SIZE (qrq-0.1.4.tar.gz) = 95912
SHA256 (qrq-0.2.0.tar.gz) = b2af16921700bb2dd00858d976d6ca169c45313c1d82ea83a00732dfe566ee94
SIZE (qrq-0.2.0.tar.gz) = 112657

View file

@ -1,43 +1,46 @@
--- Makefile.orig 2008-06-22 15:27:57.000000000 -0400
+++ Makefile 2008-06-23 21:33:21.000000000 -0400
@@ -1,7 +1,8 @@
--- Makefile.orig 2011-05-07 17:00:51.000000000 -0400
+++ Makefile 2011-05-16 11:43:02.000000000 -0400
@@ -1,14 +1,14 @@
# qrq Makefile -- Fabian Kurz, DJ1YFK -- http://fkurz.net/ham/qrq.html
VERSION=0.1.4
VERSION=0.2.0
-DESTDIR?=/usr
+DESTDIR=%%PREFIX%%
+LDFLAGS+=%%PTHREAD_LIBS%%
+DESTDIR?=%%PREFIX%%
# set to YES if you want to use OpenAL instead of OSS
# note that you must use OpenAL for OSX
@@ -38,13 +39,13 @@
USE_OPENAL=NO
# set to YES if you want to use PulseAudio instead of OSS
-USE_PA=YES
+USE_PA=NO
# set to YES if building on OSX
OSX_PLATFORM=NO
@@ -49,10 +49,10 @@
all: qrq
qrq: $(OBJECTS)
- g++ -pthread -Wall -lm -lncurses $(LDFLAGS) -o $@ $^
+ g++ -Wall -lm -lncurses $(LDFLAGS) -o $@ $^
+ ${CC} -pthread -Wall -lm -lncurses $(LDFLAGS) -o $@ $^
.c.o:
- gcc $(CFLAGS) -c $<
+ $(CC) $(CFLAGS) -c $<
- gcc -Wall $(CFLAGS) -c $<
+ ${CC} -Wall $(CFLAGS) -c $<
.cpp.o:
- g++ $(CFLAGS) -c $<
+ $(CPP) $(CFLAGS) -c $<
ifeq ($(OSX_BUNDLE), YES)
@@ -71,11 +72,11 @@
g++ $(CFLAGS) -c $<
@@ -83,11 +83,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 $(DESTDIR)/share/qrq/
install -m 0644 qrqrc $(DESTDIR)/share/qrq/
install -m 0644 toplist $(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/

View file

@ -1,6 +1,7 @@
bin/qrq
bin/qrqscore
%%DATADIR%%/callbase
%%DATADIR%%/callbase.qcb
%%DATADIR%%/english.qcb
%%DATADIR%%/qrqrc
%%DATADIR%%/toplist
@dirrm %%DATADIR%%