freebsd-ports/devel/astah-community/Makefile
TAKATSU Tomonari 4e7c105a74 - Update to 6.6.4
- Convert to new Makefile header

Release Notes:	http://astah.net/release-notes/community/com-6.6.4
Feature safe:	yes
2012-11-03 05:05:41 +00:00

88 lines
2.4 KiB
Makefile

# 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>