summaryrefslogtreecommitdiff
path: root/devel/astah-community/Makefile
blob: 5b0abc455f3e9af917e20fee5054f42c03510704 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# New ports collection makefile for:	jude_take
# Date created:				19 April 2004
# Whom:					Yoshihiko Sarumaru <mistral@imasy.or.jp>
#
# $FreeBSD$
#

PORTNAME=	jude-community
PORTVERSION=	5.4.1
CATEGORIES=	devel java
MASTER_SITES=	# you have to register yourself as a member to download
DISTNAME=	${PORTNAME}-${PORTVERSION:S!.!_!g}

MAINTAINER=	sarumaru@jp.FreeBSD.org
COMMENT=	A Java/UML Object-Oriented Design Tool

USE_ZIP=	yes

# Export HTML function can be used with JDK 1.4 only.
# (But it can work with JDK 1.5 + copying JDK 1.4 tools.jar to ${DATADIR})
OPTIONS=	EXPORT_HTML "Enable Exporting HTML function (needs JDK1.4)" Off

.include <bsd.port.pre.mk>

# In case you are going to use JDK1.5+ in Japanese environment, make sure
# you have prepared following command to avoid from font problem:
# ln -s ${LOCALBASE}/lib/X11/fonts/TrueType \
#     ${LOCALBASE}/diablo-jdk1.5.0/jre/lib/fonts/fallback
.if defined(WITH_EXPORT_HTML)
JAVA_VERSION=	1.4
.else
JAVA_VERSION=	1.4+
.endif

USE_JAVA=	yes
JAVA_OS=	native
NO_BUILD=	yes

.include "${PORTSDIR}/Mk/bsd.java.mk"

RESTRICTED=	See http://jude.change-vision.com/jude-web/notes/ProductLicenseAgreement.html
WRKSRC=		${WRKDIR}/${PORTNAME:S!-!_!}
REINPLACE_ARGS=	-i ""

.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
DOWNLOAD_URL=	http://jude.change-vision.com/jude-web/download/index.html
IGNORE=		needs you to fetch manually the distribution file\
		from ${DOWNLOAD_URL}, \
		then place it in ${DISTDIR} and run make again
.endif

PLIST_FILES=	bin/jude
.if !defined(NOPORTDATA)
PORTDATA=	${PORTNAME}.jar jude-api.jar jude-gui_en.properties_org \
		jude.ico jude-doc.ico Welcome.jude Welcome_ja.jude \
		template \
		mozilla
.endif
.if defined(WITH_EXPORT_HTML)
PORTDATA+=	tools.jar
.endif

.if !defined(NOPORTDOCS)
PORTDOCS=	ReleaseNote-e.html ReleaseNote.html \
		ProductInformation.txt \
		API_sample_program_license_agreement-e.txt \
		API_sample_program_license_agreement.txt
.endif

post-patch:
	${REINPLACE_CMD} -e "s!%%JAVA_HOME%%!${JAVA_HOME}!; \
	                     s!%%DATADIR%%!${DATADIR}!" ${WRKSRC}/jude
.if !defined(NOPORTDOCS)
	${REINPLACE_CMD} 's/png\\/png\//' ${WRKSRC}/api/*/doc/JudeAPI_reference.html
.endif

do-install:
	${INSTALL_SCRIPT} ${WRKSRC}/jude ${PREFIX}/bin
.if !defined(NOPORTDATA)
	${MKDIR} ${DATADIR}
	(cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA:Nmozilla}" ${DATADIR})
	${INSTALL_SCRIPT} ${FILESDIR}/mozilla ${DATADIR}
.if defined(WITH_EXPORT_HTML)
	# ExportHTML needs lib/tools.jar of JDK1.4
	${LN} -s ${JAVA_HOME}/lib/tools.jar ${DATADIR}
.endif
.endif
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}
.for docfile in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
	${MKDIR} ${DOCSDIR}/api
	(cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${DOCSDIR}/api)
	@ cd ${PREFIX} && ${FIND} share/doc/${PORTNAME}/api -type f -print | \
		${SORT} -r >> ${TMPPLIST}
	@ cd ${PREFIX} && ${FIND} share/doc/${PORTNAME}/api -type d -print | \
		${SORT} -r |  ${SED} -e 's#^#@dirrm #' >> ${TMPPLIST}
.endif

.include <bsd.port.post.mk>