blob: 71c44353ea0b549e7d2d611d93df445d20a66f97 (
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
40
|
# New ports collection makefile for: libgeotiff
# Date created: 9 December 2005
# Whom: Sam Lawrance
#
# $FreeBSD$
#
PORTNAME= libgeotiff
PORTVERSION= 1.3.0
CATEGORIES= graphics
MASTER_SITES= http://download.osgeo.org/geotiff/libgeotiff/ \
ftp://ftp.remotesensing.org/geotiff/libgeotiff/ \
http://sunpoet.net/distfiles/
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Library for reading and writing GeoTIFF information tags
LIB_DEPENDS= jbig:${PORTSDIR}/graphics/jbigkit \
jpeg:${PORTSDIR}/graphics/jpeg \
proj:${PORTSDIR}/graphics/proj \
tiff:${PORTSDIR}/graphics/tiff
CONFIGURE_ARGS= --disable-doxygen-doc \
--disable-doxygen-dot \
--disable-doxygen-html \
--disable-doxygen-man \
--with-jpeg=${LOCALBASE} \
--with-proj=${LOCALBASE} \
--with-libtiff=${LOCALBASE} \
--with-zlib=/usr
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64"
CFLAGS+= -fPIC
.endif
.include <bsd.port.post.mk>
|