mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
010d8c7d9a
The new GITHUB MASTER_SITE from r381618 now supports not setting GH_COMMIT and only having GH_TAGNAME default to DISTVERSION. All of these ports as-is. With hat: portmgr
27 lines
630 B
Makefile
27 lines
630 B
Makefile
# Created by: Gleb Smirnoff <glebius@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpxloggerd
|
|
PORTVERSION= 0.2.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:${PORTSDIR}/astro/gpsd
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
PLIST_FILES= sbin/${PORTNAME} \
|
|
man/man8/${PORTNAME}.8.gz
|
|
|
|
LDFLAGS+= -lm
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|