svn commit: r419663 - head/java/java3d

Jung-uk Kim jkim at FreeBSD.org
Thu Aug 4 23:59:17 UTC 2016


Author: jkim
Date: Thu Aug  4 23:59:15 2016
New Revision: 419663
URL: https://svnweb.freebsd.org/changeset/ports/419663

Log:
  - Fix build when CC contains "/".
  - Fix license.

Modified:
  head/java/java3d/Makefile

Modified: head/java/java3d/Makefile
==============================================================================
--- head/java/java3d/Makefile	Thu Aug  4 23:23:26 2016	(r419662)
+++ head/java/java3d/Makefile	Thu Aug  4 23:59:15 2016	(r419663)
@@ -10,7 +10,7 @@ MASTER_SITES=	https://sites.google.com/s
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Provides API for creating and manipulation of 3D geometry
 
-LICENSE=	GPLv2 MIT
+LICENSE=	BSD2CLAUSE GPLv2
 LICENSE_COMB=	multi
 
 USES=		tar:bzip2
@@ -29,7 +29,7 @@ PORTDOCS=	*
 OPTIONS_DEFINE=	DOCS
 
 post-patch:
-	${REINPLACE_CMD} -e "s/gcc/${CC}/g" \
+	${REINPLACE_CMD} -e 's|gcc|${CC}|g' \
 		${WRKSRC}/j3d-core/src/native/ogl/build-freebsd.xml
 
 do-build:


More information about the svn-ports-all mailing list