blob: 20edcc48c5165bf349b6815b5f3b936a89abb0bc (
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
|
# Created by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
# $FreeBSD$
PORTNAME= astah
PORTVERSION= 6.6.4
CATEGORIES= devel java
MASTER_SITES= #
PKGNAMESUFFIX= -community
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:S!.!_!g}-${REVISION}
MAINTAINER= tota@FreeBSD.org
COMMENT= A Java/UML Object-Oriented Design Tool
USE_ZIP= yes
REVISION= 41775
.include <bsd.port.pre.mk>
JAVA_VERSION= 1.6+
USE_JAVA= yes
JAVA_OS= native
NO_BUILD= yes
RESTRICTED= See http://astah.net/faq/community/enduser-license-agreement
WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX:S!-!_!}
REINPLACE_ARGS= -i ""
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
DOWNLOAD_URL= http://members.change-vision.com/files/${PORTNAME}${PKGNAMESUFFIX:S!-!_!}/${PORTVERSION:S!.!_!}/${DISTFILES}
IGNORE= needs you to fetch manually the distribution file\
from ${DOWNLOAD_URL}, \
then place it in ${DISTDIR} and run make again
.endif
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}${PKGNAMESUFFIX}
DATADIR= ${JAVASHAREDIR}/${PORTNAME}${PKGNAMESUFFIX}
PLIST_FILES= bin/astah bin/astah-command.sh
PORTDATA= astah-community.jar astah-api.jar astah-gui_en.properties_org \
astah.ico astah-doc.ico Welcome.asta Welcome_ja.asta \
lib template
.if !defined(NOPORTDOCS)
PORTDOCS= API_sample_program_license_agreement.txt \
API_sample_program_license_agreement_ja.txt \
CommandRunner.html CommandRunner_ja.html \
ProductInformation.txt \
api
.endif
.if !defined(NOPORTEXAMPLES)
PORTEXAMPLES= astah-key.properties_org Sample.asta
.endif
post-patch:
.for script in ${PLIST_FILES:S!bin/!!}
${REINPLACE_CMD} -e "s!%%JAVA_HOME%%!${JAVA_HOME}!g; \
s!%%DATADIR%%!${DATADIR}!" \
${WRKSRC}/${script}
.endfor
.if !defined(NOPORTDOCS)
${REINPLACE_CMD} 's/png\\/png\//' ${WRKSRC}/api/*/doc/astahAPI_reference.html
.endif
do-install:
.for script in ${PLIST_FILES:S!bin/!!}
${INSTALL_SCRIPT} ${WRKSRC}/${script} ${PREFIX}/bin
.endfor
${MKDIR} ${DATADIR}
(cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${DATADIR})
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for docfile in ${PORTDOCS:Napi}
${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
${MKDIR} ${DOCSDIR}/api
(cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${DOCSDIR}/api)
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
.for examplefile in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${examplefile} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|