freebsd-ports/comms/klog/Makefile
Diane Bruce 8a8e8f9ae1 Update to 0.9.8.1
August - 0.9.8.1
- Added the Es'hail / QO-100 satellite.
- UI: Satellite list, propagation modes and others are now shown sorted. (TNX Isabel)
- UI: Added default values to the infoWidget (Continent, Prefix, CQ, ITU...). (TNX Isabel)
- UI: RX/TX Freq in Satellite tab are also in red/black depending on the frequency being out/in of ham bands.
- UI: Mode selected is now changing the RST format and default values for some modes.
- Bugfix: Editing a QSO to remove a comment was not properly working. (TNX Isabel)
- Bugfix: Worked & Confirmed QSO numbers are now aligned in the Awards tab. (TNX Isabel)
- Bugfix: KLog.pro is now fixed to compile in Linux. (TNX KB2YSI)
- Bugfix: Improved how the DXMarathon was managed when disabled.
- Bugfix: Improved how DXCC Award was updated after one QSO was added. (TNX Isabel)
- Fixed a bug in the SQL update database.

August - 0.9.8
- New feature: Basic Hamlib support.
- Fixed a bug in the SQL update database.
- Fixed a bug in the DXCCWidget.
- Fixed a bug in the QSO per hour stats.
- Added the FT4 mode.
- Updated translations: Catalan (TNX Txema), Danish (TNX Joe), Finnish (TNX Kristjan), French (F4HWL), German (TNX Burkhard), Spanish (EA4TV).

March - 0.9.7.3
- TODO: Remove the band 0 / Light from the DB.
- UI: KLog warns the user if the frequency used is out of the hamradio bands.
- Reworked how freqs and bands are managed.

Reported by:		portscout
2019-09-09 00:48:58 +00:00

54 lines
1.5 KiB
Makefile

# $FreeBSD$
PORTNAME= klog
PORTVERSION= 0.9.8.1
CATEGORIES= comms hamradio
MASTER_SITES= SAVANNAH
MAINTAINER= hamradio@FreeBSD.org
COMMENT= Simple Qt-based amateur radio logger
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libhamlib.so:comms/hamlib
USES= compiler:c++11-lang gl qmake qt:5 xorg
USE_GL= gl
USE_QT= buildtools_build charts core gui linguisttools_build multimedia network \
printsupport sql sql-sqlite3_run serialport widgets
DESKTOP_ENTRIES= "KLog" "Simple Amateur Radio Logging Program" \
"" "klog" "Network;HamRadio;" \
true
PLIST_FILES= bin/klog \
${DATADIR}/translations/klog_ca.qm \
${DATADIR}/translations/klog_de.qm \
${DATADIR}/translations/klog_es.qm \
${DATADIR}/translations/klog_fr.qm \
${DATADIR}/translations/klog_ja.qm \
${DATADIR}/translations/klog_da.qm \
${DATADIR}/translations/klog_fi.qm \
${DATADIR}/translations/klog_hr.qm \
${DATADIR}/translations/klog_it.qm \
${DATADIR}/translations/klog_pl.qm \
man/man1/klog.1.gz
post-patch:
@${REINPLACE_CMD} '/"\/usr\/share\/klog\/translations\/klog_" + \
QLocale::system().name()/\
s|);|, "${DATADIR}/translations/");|' \
${WRKSRC}/main.cpp
#post-build:
# ${LRELEASE} ${WRKSRC}/${PORTNAME}.pro
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/build/target/klog ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DATADIR}/translations
${INSTALL_DATA} ${WRKSRC}/build/target/translations/klog_*.qm \
${STAGEDIR}${DATADIR}/translations
${INSTALL_MAN} ${WRKSRC}/klog.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.mk>