blob: 259400b3936a6553de708c2775be3838e2633af1 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# New ports collection makefile for: shapelib for reading ARC Shape Files
# Date created: 23 Apr 2001
# Whom: Randall Hopper <aa8vb@nc.rr.com>
#
# $FreeBSD$
#
PORTNAME= shapelib
PORTVERSION= 1.2.10
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://dl.maptools.org/dl/shapelib/ \
http://sunpoet.net/distfiles/
MAINTAINER= sunpoet@sunpoet.net
COMMENT= C API for reading and writing ArcView Shapefiles
USE_AUTOTOOLS= libtool:22:env
USE_LDCONFIG= yes
OPTIONS= PROJ4 "Cartographic Projections library" off
.include <bsd.port.pre.mk>
.if defined(WITH_PROJ4)
LIB_DEPENDS+= proj.5:${PORTSDIR}/graphics/proj
PLIST_SUB+= PROJ4=""
PROJ4= -DPROJ4
.else
PLIST_SUB+= PROJ4="@comment "
PROJ4= -DNO_PROJ4
.endif
.if ${ARCH} == "amd64" || ${ARCH} == "i386" || ${ARCH} == "ia64"
ENDIAN= -D_LITTLE_ENDIAN
.else # powerpc & sparc64
ENDIAN= -D_BIG_ENDIAN
.endif
post-patch:
@${REINPLACE_CMD} \
-e 's#%%INSTALL%%#${INSTALL}#g' \
-e 's#%%LIBTOOL%%#${LIBTOOL}#g' \
-e 's#%%PREFIX%%#${PREFIX}#g' \
-e 's#%%ENDIAN%%#${ENDIAN}#g' \
-e 's#%%PROJ4%%#${PROJ4}#g' \
${WRKSRC}/Makefile ${WRKSRC}/contrib/Makefile
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|