svn commit: r328928 - in head/lang/phantomjs: . files

Jun Kuriyama kuriyama at FreeBSD.org
Tue Oct 1 07:43:52 UTC 2013


Author: kuriyama
Date: Tue Oct  1 07:43:51 2013
New Revision: 328928
URL: http://svnweb.freebsd.org/changeset/ports/328928

Log:
  - Honor $MAKE_JOBS_NUMBER [1].
  - Upgrade to 1.9.2.
  - Use $STAGEDIR.
  
  PR:		ports/181983 [1]
  Submitted by:	mat [1]

Added:
  head/lang/phantomjs/files/
  head/lang/phantomjs/files/patch-src-phantomjs.pro   (contents, props changed)
Modified:
  head/lang/phantomjs/Makefile
  head/lang/phantomjs/distinfo

Modified: head/lang/phantomjs/Makefile
==============================================================================
--- head/lang/phantomjs/Makefile	Tue Oct  1 07:24:06 2013	(r328927)
+++ head/lang/phantomjs/Makefile	Tue Oct  1 07:43:51 2013	(r328928)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	phantomjs
-PORTVERSION=	1.9.0
+PORTVERSION=	1.9.2
 CATEGORIES=	lang
 MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
 DISTNAME=	${PORTNAME}-${PORTVERSION}-source
@@ -20,12 +20,11 @@ USE_DOS2UNIX=	YES
 USE_QT4=	moc qmake gui webkit rcc
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
-NO_STAGE=	yes
 do-build:
-	cd ${WRKSRC} && ${SETENV} OSTYPE=freebsd MAKEFLAGS= bash -x build.sh --jobs 2 --confirm
+	cd ${WRKSRC} && ${SETENV} OSTYPE=freebsd MAKEFLAGS= bash -x build.sh --jobs ${MAKE_JOBS_NUMBER} --confirm
 
 do-install:
-	cd ${WRKSRC} && ${INSTALL_PROGRAM} bin/phantomjs ${PREFIX}/bin/
+	cd ${WRKSRC} && ${INSTALL_PROGRAM} bin/phantomjs ${STAGEDIR}${PREFIX}/bin/
 
 .include <bsd.port.pre.mk>
 

Modified: head/lang/phantomjs/distinfo
==============================================================================
--- head/lang/phantomjs/distinfo	Tue Oct  1 07:24:06 2013	(r328927)
+++ head/lang/phantomjs/distinfo	Tue Oct  1 07:43:51 2013	(r328928)
@@ -1,2 +1,2 @@
-SHA256 (phantomjs-1.9.0-source.zip) = f51ebd98df9fd628544b719b41bb5b42a180afa603888c62a04e5e5ace588d0b
-SIZE (phantomjs-1.9.0-source.zip) = 40903639
+SHA256 (phantomjs-1.9.2-source.zip) = 5755bb5b0942b018a41003b4b8be740b9356948f437617d933b8b8b9a8f339e1
+SIZE (phantomjs-1.9.2-source.zip) = 40840382

Added: head/lang/phantomjs/files/patch-src-phantomjs.pro
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/phantomjs/files/patch-src-phantomjs.pro	Tue Oct  1 07:43:51 2013	(r328928)
@@ -0,0 +1,11 @@
+--- src/phantomjs.pro.orig	2013-10-01 10:49:57.204247173 +0900
++++ src/phantomjs.pro	2013-10-01 10:50:42.830414131 +0900
+@@ -60,7 +60,7 @@
+ include(linenoise/linenoise.pri)
+ include(qcommandline/qcommandline.pri)
+ 
+-linux*|mac {
++linux*|mac|freebsd* {
+     INCLUDEPATH += breakpad/src
+ 
+     SOURCES += breakpad/src/client/minidump_file_writer.cc \


More information about the svn-ports-head mailing list