mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
26 lines
551 B
Makefile
26 lines
551 B
Makefile
# Created by: Gleb Smirnoff <glebius@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpxloggerd
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= astro
|
|
MASTER_SITES= LOCAL/glebius
|
|
|
|
MAINTAINER= glebius@FreeBSD.org
|
|
COMMENT= Daemon that connects to the GPSD daemon and logs GPS traces
|
|
|
|
LIB_DEPENDS= gps:${PORTSDIR}/astro/gpsd
|
|
|
|
NO_STAGE= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
MAN8= ${PORTNAME}.8
|
|
|
|
LDFLAGS+= -lm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|