mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
6bc7a46bf8
- Update to 3.20 (welcome ubxtool and gpsrinex!) - Fix SConstruct per python3 [1] - Replace spaces by tabs (pet portlint) - Fixes astro/foxtrotgps, astro/gpxloggerd and comms/direwolf Changelog: - https://gitlab.com/gpsd/gpsd/-/blob/master/NEWS#L16 [1] scons is py27 only and check py27 packages for a py37 port. I commented these tests in SConstruct since we already do it in our Makefile. PR: 243980 Reviewed by: tcberner (mentor) Approved by: tcberner (mentor), maintainer timeout (z7dr6ut7gs@snkmail.com, > 2 weeks) Differential Revision: https://reviews.freebsd.org/D23920
28 lines
613 B
Makefile
28 lines
613 B
Makefile
# Created by: Gleb Smirnoff <glebius@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpxloggerd
|
|
PORTVERSION= 0.2.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= astro
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= glebius
|
|
|
|
MAINTAINER= glebius@FreeBSD.org
|
|
COMMENT= Daemon that connects to the GPSD daemon and logs GPS traces
|
|
|
|
LIB_DEPENDS= libgps.so:astro/gpsd
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
PLIST_FILES= sbin/${PORTNAME} \
|
|
man/man8/${PORTNAME}.8.gz
|
|
|
|
LDFLAGS+= -lm
|
|
MAKE_ARGS= NO_WERROR=yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|