Bug 183557 - maintainer update: lang/x10
Summary: maintainer update: lang/x10
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Matthias Andree
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-01 16:40 UTC by Jason W. Bacon
Modified: 2014-01-14 02:50 UTC (History)
0 users

See Also:


Attachments
file.diff (1.04 KB, patch)
2013-11-01 16:40 UTC, Jason W. Bacon
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jason W. Bacon freebsd_committer freebsd_triage 2013-11-01 16:40:00 UTC
Stop-gap update to fix build on 10.0-BETA1.

Fix: Attached.

Patch attached with submission follows:
Comment 1 Matthias Andree freebsd_committer freebsd_triage 2014-01-14 02:18:31 UTC
Responsible Changed
From-To: freebsd-ports-bugs->mandree

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-01-14 02:40:10 UTC
Author: mandree
Date: Tue Jan 14 02:40:02 2014
New Revision: 339657
URL: http://svnweb.freebsd.org/changeset/ports/339657

Log:
  - Stop-gap update to fix build on 10.0-BETA1. [1]
  - Add LICENSE=EPL. [1]
  - Convert to staging. [2]
  - Add missing trailing slash to URL in pkg-descr. [2]
  
  PR:		ports/183557
  Submitted by:	Jason Bacon (maintainer) [1]
  Approved by:	portmgr@ (implicit, blanket) [2]

Modified:
  head/lang/x10/Makefile   (contents, props changed)
  head/lang/x10/pkg-descr   (contents, props changed)

Modified: head/lang/x10/Makefile
==============================================================================
--- head/lang/x10/Makefile	Tue Jan 14 02:31:29 2014	(r339656)
+++ head/lang/x10/Makefile	Tue Jan 14 02:40:02 2014	(r339657)
@@ -22,10 +22,13 @@ EXTRACT_ONLY=	${PORTNAME}-${PORTVERSION}
 MAINTAINER=	jwbacon@tds.net
 COMMENT=	Object-oriented parallel programming language
 
+LICENSE=	EPL
+
 USE_BZIP2=	yes
 USE_JAVA=	yes
 JAVA_VERSION=	1.6+
 USE_ANT=	yes
+USE_GCC=	yes
 
 USE_LDCONFIG=	${PREFIX}/stdlib/lib
 
@@ -35,7 +38,8 @@ BUILD_DEPENDS+=	gmake:${PORTSDIR}/devel/
 
 WRKSRC=		${WRKDIR}/x10.dist
 
-NO_STAGE=	yes
+.include <bsd.port.options.mk>
+
 post-patch:
 	${REINPLACE_CMD} -e 's/value="make"/value="gmake"/g' \
 		${WRKDIR}/x10.runtime/build.xml
@@ -52,16 +56,16 @@ post-patch:
 
 do-install:
 .for f in X10Launcher apgas precommit x10 x10c x10c++ x10j
-	${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${PREFIX}/bin
+	${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin
 .endfor
-	${MKDIR} ${PREFIX}/stdlib
-	${INSTALL_DATA} ${WRKSRC}/etc/* ${PREFIX}/etc
-	${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include
-	${INSTALL_DATA} ${WRKSRC}/lib/* ${PREFIX}/lib
-	${CP} -R ${WRKSRC}/stdlib/* ${PREFIX}/stdlib
-.if !defined(NOPORTEXAMPLES)
-	${MKDIR} ${EXAMPLESDIR}
-	${CP} -R ${WRKSRC}/samples/* ${EXAMPLESDIR}
+	${MKDIR} ${STAGEDIR}${PREFIX}/stdlib
+	${INSTALL_DATA} ${WRKSRC}/etc/* ${STAGEDIR}${PREFIX}/etc
+	${INSTALL_DATA} ${WRKSRC}/include/* ${STAGEDIR}${PREFIX}/include
+	${INSTALL_DATA} ${WRKSRC}/lib/* ${STAGEDIR}${PREFIX}/lib
+	${CP} -R ${WRKSRC}/stdlib/* ${STAGEDIR}${PREFIX}/stdlib
+.if ${PORT_OPTIONS:MEXAMPLES}
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+	${CP} -R ${WRKSRC}/samples/* ${STAGEDIR}${EXAMPLESDIR}
 .endif
 
 .include <bsd.port.mk>

Modified: head/lang/x10/pkg-descr
==============================================================================
--- head/lang/x10/pkg-descr	Tue Jan 14 02:31:29 2014	(r339656)
+++ head/lang/x10/pkg-descr	Tue Jan 14 02:40:02 2014	(r339657)
@@ -3,4 +3,4 @@ provide a programming model that can add
 of multiples cores, hardware accelerators, clusters, and supercomputers 
 in a manner that provides scalable performance in a productive manner.
 
-WWW:	http://x10-lang.org
+WWW: http://x10-lang.org/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Matthias Andree freebsd_committer freebsd_triage 2014-01-14 02:40:19 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!