mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
6527ef2070
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# New ports collection makefile for: gpscorrelate
|
|
# Date created: Feb 2008
|
|
# Whom: Lukas Maly
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpscorrelate
|
|
PORTVERSION= 1.5.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= astro geography
|
|
MASTER_SITES= http://freefoote.dview.net/linux/
|
|
|
|
MAINTAINER= Iam@LukasMaly.NET
|
|
COMMENT= A gps file gpx correlate exif tag in photos
|
|
|
|
LIB_DEPENDS= exiv2:${PORTSDIR}/graphics/exiv2 \
|
|
gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24
|
|
|
|
MAN1= gpscorrelate.1 gpscorrelate-gui.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|-I/usr/include|-I${LOCALBASE}/include|" ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gpscorrelate ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gpscorrelate-gui ${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/gpscorrelate* ${PREFIX}/man/man1
|
|
${MKDIR} ${PREFIX}/share/doc/gpscorrelate
|
|
${MKDIR} ${PREFIX}/share/gpscorrelate
|
|
${MKDIR} ${PREFIX}/share/doc/gpscorrelate/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/gpscorrelate/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.png ${PREFIX}/share/doc/gpscorrelate/html
|
|
${INSTALL_DATA} ${WRKSRC}/*.txt ${PREFIX}/share/gpscorrelate/
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/gpscorrelate/
|
|
${INSTALL_DATA} ${WRKSRC}/RELEASES ${PREFIX}/share/gpscorrelate/
|
|
|
|
.include <bsd.port.mk>
|