mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
00d52a3e4c
While there, correct DEV_WARNINGS when they occur. Sponsored by: Absolight
27 lines
597 B
Makefile
27 lines
597 B
Makefile
# Created by: Gleb Smirnoff <glebius@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpxloggerd
|
|
PORTVERSION= 0.2.3
|
|
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>
|