1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/graphics/proj/Makefile
Dmitry Marakasov 8ed0221222 - Update to 6.1.1
- Remove manual compression of manpages, not needed as it's handled by the framework

PR:		239907
Submitted by:	amdmi3
Approved by:	wen (maintainer)
2019-08-16 17:16:32 +00:00

46 lines
1.0 KiB
Makefile

# Created by: jedgar@FreeBSD.org
# $FreeBSD$
PORTNAME= proj
PORTVERSION= 6.1.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
CONFLICTS_INSTALL= proj5-5.[0-9]*.[0-9]*
LIB_DEPENDS= libsqlite3.so:databases/sqlite3
USES= compiler:c++11-lang gmake libtool pathfix pkgconfig
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
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>