blob: a04e31c4efe273bc13047704df7c0c19a5adcbb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Created by: Sam Lawrance
# $FreeBSD$
PORTNAME= libgeotiff
PORTVERSION= 1.4.1
PORTREVISION= 1
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
LIB_DEPENDS= libjbig.so:${PORTSDIR}/graphics/jbigkit \
libjpeg.so:${PORTSDIR}/graphics/jpeg \
libproj.so:${PORTSDIR}/graphics/proj \
libtiff.so:${PORTSDIR}/graphics/tiff
USES= libtool
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
PORTDATA= *
.include <bsd.port.mk>
|