svn commit: r336444 - head/devel/astah-community
TAKATSU Tomonari
tota at FreeBSD.org
Sat Dec 14 13:28:36 UTC 2013
Author: tota
Date: Sat Dec 14 13:28:35 2013
New Revision: 336444
URL: http://svnweb.freebsd.org/changeset/ports/336444
Log:
- Add LEGAL_TEXT to sync with the 'why' column in LEGAL [1]
- Add LICENSE section
- Support STAGEDIR
Submitted by: eadler (via private e-mail) [1]
Modified:
head/devel/astah-community/Makefile
Modified: head/devel/astah-community/Makefile
==============================================================================
--- head/devel/astah-community/Makefile Sat Dec 14 13:09:11 2013 (r336443)
+++ head/devel/astah-community/Makefile Sat Dec 14 13:28:35 2013 (r336444)
@@ -11,7 +11,13 @@ DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${
MAINTAINER= tota at FreeBSD.org
COMMENT= Java/UML Object-Oriented Design Tool
+LICENSE= EULA
+LICENSE_NAME= End User License Agreement
+LICENSE_TEXT= ${RESTRICTED}
+LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell no-auto-accept
+
RESTRICTED= See http://astah.net/faq/community/enduser-license-agreement
+LEGAL_TEXT= License restrictions
USE_ZIP= yes
USE_JAVA= yes
@@ -42,7 +48,6 @@ REINPLACE_ARGS= -i ""
OPTIONS_DEFINE= DOCS EXAMPLES
-NO_STAGE= yes
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
@@ -64,22 +69,22 @@ post-patch:
do-install:
.for script in ${PLIST_FILES:S!bin/!!}
- ${INSTALL_SCRIPT} ${WRKSRC}/${script} ${PREFIX}/bin
+ ${INSTALL_SCRIPT} ${WRKSRC}/${script} ${STAGEDIR}${PREFIX}/bin
.endfor
- ${MKDIR} ${DATADIR}
- (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${DATADIR})
+ ${MKDIR} ${STAGEDIR}${DATADIR}
+ (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR})
.if ${PORT_OPTIONS:MDOCS}
- ${MKDIR} ${DOCSDIR}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in ${PORTDOCS:Napi}
- ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
- ${MKDIR} ${DOCSDIR}/api
- (cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${DOCSDIR}/api)
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}/api
+ (cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}/api)
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
- ${MKDIR} ${EXAMPLESDIR}
+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for examplefile in ${PORTEXAMPLES}
- ${INSTALL_DATA} ${WRKSRC}/${examplefile} ${EXAMPLESDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${examplefile} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.endif
More information about the svn-ports-all
mailing list