1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/www/gpx2map/Makefile
Mathieu Arnold fb4deed873 Update ports in the remaining categories to not use GH_COMMIT.
With minor cleanups to make things simpler.

With hat:	portmgr
Sponsored by:	Absolight
2015-05-07 20:24:15 +00:00

47 lines
1.3 KiB
Makefile

# $FreeBSD$
PORTNAME= gpx2map
PORTVERSION= 0.1
CATEGORIES= www
MAINTAINER= koue@chaosophia.net
COMMENT= Put GPX track on Google Map or OpenStreetMap
LICENSE= GPLv3
RUN_DEPENDS= p5-XML-Twig>=0:${PORTSDIR}/textproc/p5-XML-Twig \
p5-Template-Toolkit>=0:${PORTSDIR}/www/p5-Template-Toolkit \
p5-Geo-Distance>=0:${PORTSDIR}/math/p5-Geo-Distance
USE_GITHUB= yes
GH_ACCOUNT= sd2k9
USES= shebangfix perl5
SHEBANG_FILES= gpx2map
NO_BUILD= yes
DATADIR= ${PREFIX}/share/${PORTNAME}
PLIST_FILES= bin/gpx2map \
share/gpx2map/gpx2map.google.template \
share/gpx2map/gpx2map.osm.template
OPTIONS_DEFINE= GNUPLOT
GNUPLOT_DESC= Enable draw track profiles
GNUPLOT_RUN_DEPENDS= p5-Chart-Gnuplot>=0:${PORTSDIR}/graphics/p5-Chart-Gnuplot
post-patch:
@${REINPLACE_CMD} -e "s|gpx2map.google.template|${DATADIR}/gpx2map.google.template|" \
-e "s|gpx2map.osm.template|${DATADIR}/gpx2map.osm.template|" \
-e "s|.FindBin::RealBin/.opts{'map_template_google'}|${DATADIR}/gpx2map.google.template|" \
-e "s|.FindBin::RealBin/.opts{'map_template_osm'}|${DATADIR}/gpx2map.osm.template|" \
${WRKSRC}/gpx2map
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/gpx2map ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/gpx2map.google.template ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/gpx2map.osm.template ${STAGEDIR}${DATADIR}
.include <bsd.port.mk>