freebsd-ports/graphics/proj/Makefile
Loïc Bartoletti d3f652601f graphics/proj: Update to 6.3.1
- Update to 6.3.1
  - Move CONFLICTS_INSTALL (pet portlint)

Changelog:
  - https://github.com/OSGeo/PROJ/releases/tag/6.3.1
  - https://github.com/OSGeo/PROJ/releases/tag/6.3.0
  - https://github.com/OSGeo/PROJ/releases/tag/6.2.1
  - https://github.com/OSGeo/PROJ/releases/tag/6.2.0

PR:	243558
Approved by:	wen (maintainer), tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D23619
2020-02-22 05:47:37 +00:00

46 lines
1.0 KiB
Makefile

# Created by: jedgar@FreeBSD.org
# $FreeBSD$
PORTNAME= proj
PORTVERSION= 6.3.1
PORTEPOCH= 1
CATEGORIES= graphics geography
MASTER_SITES= https://download.osgeo.org/proj/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DATUM_GRID_FILES}
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Cartographic Projections library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libsqlite3.so:databases/sqlite3
USES= compiler:c++11-lang gmake libtool pathfix pkgconfig
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFLICTS_INSTALL= proj5-5.[0-9]*.[0-9]*
DATUM_GRID_FILES= proj-datumgrid-1.8.zip \
proj-datumgrid-europe-1.3.zip \
proj-datumgrid-north-america-1.2.zip \
proj-datumgrid-oceania-1.0.zip \
proj-datumgrid-world-1.0.zip
INSTALL_TARGET= install-strip
TEST_TARGET= check
post-extract:
${MKDIR} ${WRKSRC}/datum
.for f in ${DATUM_GRID_FILES}
@${TAR} -xf ${DISTDIR}/${f} -C ${WRKSRC}/datum
.endfor
post-install:
cd ${WRKSRC}/datum && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}
.include <bsd.port.mk>