aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/deegree-igeoportal/Makefile
blob: c31b2a5dcd21503f4a25cdd6cc47b2306b9af59d (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
56
57
58
59
60
61
62
63
64
65
66
# Created by: wenheping@gmail.com
# $FreeBSD$

PORTNAME=   igeoportal
PORTVERSION=    2.5
PORTREVISION=   1
CATEGORIES= graphics java
MASTER_SITES=   http://download.deegree.org/deegree${PORTVERSION}/
PKGNAMEPREFIX=  deegree-
DISTNAME=   ${PORTNAME}-std_${PORTVERSION}

MAINTAINER= wenheping@gmail.com
COMMENT=    Browser based client handling WMS, WFS, and proxy service

USE_ZIP=    yes
USE_JAVA=   1.5+

NO_BUILD=   yes
TOMCATDIR=  ${PREFIX}/${TOMCATVER}
APPHOME=    ${LOCALBASE}/${TOMCATVER}
WEBAPPDIR=  ${TOMCATDIR}/webapps
PORTDOCS=   README.txt README_owswatch.txt deegree_igeoportal_documentation_en.pdf
DOCSDIR=    ${PREFIX}/share/doc/deegree-igeoportal
PLIST_SUB=  TOMCATDIR=${TOMCATDIR:S|^${PREFIX}/||}
SUB_FILES=  pkg-message
SUB_LIST=   TCPORT=${TCPORT}

OPTIONS_SINGLE= AS
OPTIONS_SINGLE_AS=  TOMCAT6 TOMCAT7
OPTIONS_DEFAULT=    TOMCAT6

NO_STAGE=   yes

OPTIONS_DEFINE= DOCS

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MTOMCAT6}
TOMCATVER=  apache-tomcat-6.0
TCPORT= 8180
BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
RUN_DEPENDS+=   ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
.endif

.if ${PORT_OPTIONS:MTOMCAT7}
TOMCATVER=  apache-tomcat-7.0
TCPORT= 8080
BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
RUN_DEPENDS+=   ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
.endif

post-extract:
    @${MKDIR} ${WRKDIR}/${PORTDIRNAME}
    @${TAR} xf ${WRKDIR}/igeoportal-std.war -C ${WRKDIR}/${PORTDIRNAME}

do-install:
    ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${TOMCATDIR}/webapps/${PORTDIRNAME}
    @cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${WEBAPPDIR}/${PORTDIRNAME}

.if ${PORT_OPTIONS:MDOCS}
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${DOCSDIR}
.endif
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>