aboutsummaryrefslogtreecommitdiff
path: root/textproc/fop/Makefile
blob: 766bbbb37a5d7e8a9a63695701767b89d5734f65 (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:	Print formatter driven by XSL formatting
# Date created:		19 December 2000
# Whom:			KIRIYAMA Kazuhiko <kiri@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	fop
PORTVERSION=	1.0
CATEGORIES=	textproc java
MASTER_SITES=	${MASTER_SITE_APACHE:S/$/:fop/} \
		SF/offo/offo-hyphenation/1.0:hyph
MASTER_SITE_SUBDIR=	xmlgraphics/fop/source/:fop
DISTNAME=	${PORTNAME}-${PORTVERSION}-src
DISTFILES=	${DISTNAME}.tar.gz:fop offo-hyphenation.zip:hyph
EXTRACT_ONLY=	${DISTNAME}.tar.gz

MAINTAINER=	geoff@sea-incorporated.com
COMMENT=	Print formatter driven by XSL formatting

EXTRACT_DEPENDS+=	unzip:${PORTSDIR}/archivers/unzip

WRKSRC=		${WRKDIR}/${DISTNAME:S/-src//}
DATADIR=	${JAVASHAREDIR}/${PORTNAME}

USE_JAVA=	yes
JAVA_VERSION=	1.4+
USE_ANT=	yes

# Prevent out of memory error during build
MAKE_ENV+=	"ANT_OPTS=-Xmx512m"

post-extract:
	@cd ${WRKDIR} && ${UNZIP_CMD} ${DISTDIR}/offo-hyphenation.zip
	@${CP} ${WRKDIR}/offo-hyphenation/hyph/*.xml ${WRKSRC}/hyph

do-install:
.for d in build conf lib
	@${MKDIR} ${DATADIR}/${d}
.endfor
	@cd ${WRKSRC} && \
	    ${INSTALL_DATA} status.xml ${DATADIR}/ && \
	    ${INSTALL_DATA} build/*.[jw]ar ${DATADIR}/build/ && \
	    ${INSTALL_DATA} lib/*.jar lib/README.txt ${DATADIR}/lib/ && \
	    ${INSTALL_DATA} conf/fop.xconf ${DATADIR}/conf/ && \
	    ${COPYTREE_SHARE} hyph ${DATADIR}/
	@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${DATADIR}/
	@${LN} -s ${DATADIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}

.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	@cd ${WRKSRC} && ${INSTALL_MAN} LICENSE README NOTICE KEYS ${DOCSDIR}
.endif

.include <bsd.port.mk>