blob: 6264d667fe8e2ab49263249e19b9d1795f8faf2a (
plain)
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
|
# $NetBSD: Makefile,v 1.15 2003/03/28 21:14:36 wiz Exp $
#
# Note: we currently use the pre-built (-bin) distribution of FOP,
# because although FOP runs fine under JDK 1.1, JDK 1.2 or greater is
# required to build it.
#
# Note: please do NOT update this package to a more recent version of FOP --
# this is the most recent version which works with cocoon. If you need a
# newer version, let me know, and I will import the latest version as
# fop-current -- jwise@netbsd.org
#
DISTNAME= fop-0_15_0-forBeginners
PKGNAME= fop-0.15.0
WRKSRC= ${WRKDIR}
CATEGORIES= textproc www
MASTER_SITES= http://xml.apache.org/dist/fop/recent/
EXTRACT_SUFX= .zip
MAINTAINER= jwise@netbsd.org
HOMEPAGE= http://xml.apache.org/fop/
COMMENT= the Apache Project's XSL Formatting Objects implementation
USE_JAVA= run
USE_BUILDLINK2=
NO_CONFIGURE=
NO_BUILD=
post-extract:
${FIND} -d ${WRKSRC}/docs -name cvs -exec ${RM} -r '{}' \;
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/java
${INSTALL_DATA} ${WRKSRC}/build/fop.jar ${PREFIX}/lib/java/fop.jar
${INSTALL_DATA} ${WRKSRC}/lib/w3c.jar ${PREFIX}/lib/java/fop-w3c.jar
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/java/fop
cd ${WRKSRC}/docs && ${PAX} -rwpp . ${PREFIX}/share/doc/java/fop
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"
|