svn commit: r323597 - head/astro/gpxloggerd

John Marino marino at FreeBSD.org
Wed Jul 24 14:30:30 UTC 2013


Author: marino
Date: Wed Jul 24 14:30:28 2013
New Revision: 323597
URL: http://svnweb.freebsd.org/changeset/ports/323597

Log:
  astro/gpxloggerd: directly link libmath and cleanup
  
  - Fixes indirect linking errors on modern binutils (fix from dports)
  - Trim Makefile header and canonicalize creator's name
  - Remove leading article from COMMENT
  - Remove unnecessary library version in LIB_DEPENDS
  
  Approved by:	culot (mentor), maintainer

Modified:
  head/astro/gpxloggerd/Makefile

Modified: head/astro/gpxloggerd/Makefile
==============================================================================
--- head/astro/gpxloggerd/Makefile	Wed Jul 24 13:32:38 2013	(r323596)
+++ head/astro/gpxloggerd/Makefile	Wed Jul 24 14:30:28 2013	(r323597)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	gpxloggerd
-# Date created:		8 December 2010
-# Whom:			glebius
-#
+# Created by: Gleb Smirnoff <glebius at FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	gpxloggerd
 PORTVERSION=	0.2
@@ -11,14 +7,16 @@ CATEGORIES=	astro
 MASTER_SITES=	LOCAL/glebius
 
 MAINTAINER=	glebius at FreeBSD.org
-COMMENT=	A daemon that connects to the GPSD daemon and logs GPS traces
+COMMENT=	Daemon that connects to the GPSD daemon and logs GPS traces
 
-LIB_DEPENDS=	gps.20:${PORTSDIR}/astro/gpsd
+LIB_DEPENDS=	gps:${PORTSDIR}/astro/gpsd
 
 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/


More information about the svn-ports-all mailing list