aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/nux/Makefile
blob: 738aa8c4977b5986eb46396d04492b123c839dae (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
# New ports collection makefile for:    nux
# Date created:     2004-10-28
# Whom:         Herve Quiroz <hq@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   nux
PORTVERSION=    1.6
PORTREVISION=   2
PORTEPOCH=  1
CATEGORIES= textproc java
MASTER_SITES=   http://dsd.lbl.gov/nux-download/releases/

MAINTAINER= hq@FreeBSD.org
COMMENT=    Small open-source XQuery extension of the XOM library

RUN_DEPENDS=    ${JAVALIBDIR}/xom.jar:${PORTSDIR}/textproc/xom \
        ${JAVALIBDIR}/saxon8.jar:${PORTSDIR}/textproc/saxon-devel

OPTIONS=    XQUERY_TOOL "Install the XQuery command-line tool" on

USE_JAVA=   yes
JAVA_VERSION=   1.4+
NO_BUILD=   yes
WRKSRC=     ${WRKDIR}/${PORTNAME}

.include <bsd.port.pre.mk>

.if defined(WITH_XQUERY_TOOL)
RUN_DEPENDS+=   ${JAVALIBDIR}/getopt.jar:${PORTSDIR}/java/java-getopt \
        classpath:${PORTSDIR}/java/javavmwrapper
.endif

PLIST_FILES=    %%JAVAJARDIR%%/${PORTNAME}.jar
.if defined(WITH_XQUERY_TOOL)
PLIST_FILES+=   bin/fire-xquery
.endif
.if !defined(NOPORTDOCS)
PORTDOCS=   api changelog.html cvs.html dependencies.html \
        gettingstarted.html images index.html license.html licenses \
        mailing.html readme.html related.html style.css todo.html
.endif

.if defined(WITH_XQUERY_TOOL)
SUB_FILES=  fire-xquery.sh
.endif

do-install:
    @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..."
    @${MKDIR} ${JAVAJARDIR}
    @${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar ${JAVAJARDIR}/
    @${ECHO_MSG} " [ DONE ]"
.if defined(WITH_XQUERY_TOOL)
    @${ECHO_MSG} -n ">> Installing XQuery command-line tool as ${PREFIX}/bin/fire-xquery..."
    @${INSTALL_SCRIPT} ${WRKDIR}/fire-xquery.sh ${PREFIX}/bin/fire-xquery
    @${ECHO_MSG} " [ DONE ]"
.endif
.if !defined(NOPORTDOCS)
    @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..."
    @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \;
    @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
    @${ECHO_MSG} " [ DONE ]"
.endif

.include <bsd.port.post.mk>