mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
37 lines
858 B
Makefile
37 lines
858 B
Makefile
# Created by: Sam Lawrance
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libgeotiff
|
|
PORTVERSION= 1.4.2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.osgeo.org/geotiff/libgeotiff/ \
|
|
ftp://ftp.remotesensing.org/geotiff/libgeotiff/ \
|
|
LOCAL/sunpoet
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Library for reading and writing GeoTIFF information tags
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libjbig.so:graphics/jbigkit \
|
|
libproj.so:graphics/proj \
|
|
libtiff.so:graphics/tiff
|
|
|
|
CONFIGURE_ARGS= --datadir=${DATADIR} \
|
|
--disable-doxygen-doc \
|
|
--disable-doxygen-dot \
|
|
--disable-doxygen-html \
|
|
--disable-doxygen-man \
|
|
--with-jpeg=${LOCALBASE} \
|
|
--with-proj=${LOCALBASE} \
|
|
--with-libtiff=${LOCALBASE} \
|
|
--with-zlib=/usr
|
|
CPPFLAGS+= -fPIC
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
USES= jpeg libtool
|
|
|
|
.include <bsd.port.mk>
|