aboutsummaryrefslogtreecommitdiff
path: root/lang/p5-JavaScript-SpiderMonkey
diff options
context:
space:
mode:
authorAaron Dalton <aaron@FreeBSD.org>2006-06-05 19:48:04 +0000
committerAaron Dalton <aaron@FreeBSD.org>2006-06-05 19:48:04 +0000
commit37ad036b89c5b71cddd18a7bd74e6452810c851c (patch)
tree149996ed8279102671dc8c17b73b6d27970ac44f /lang/p5-JavaScript-SpiderMonkey
parentf6daabd82ba120828784ed66b10dbbc5c94a51d6 (diff)
downloadports-37ad036b89c5b71cddd18a7bd74e6452810c851c.tar.gz
ports-37ad036b89c5b71cddd18a7bd74e6452810c851c.zip
- Update from v0.11 to v0.15
- Restrict to FreeBSD-5+ due to dependency upon lang/spidermonkey - Left odd BUILD_DEPENDS as lang/spidermonkey does not install the shared library correctly 0.15 (28/02/2006) (tb) Rewrote Makefile.PL to work on more platforms 0.14 (12/02/2006) (tb) Removed remaining debug info 0.13 (05/02/2006) (tb) Removed debug info (tb) Made sure Makefile.PL finds libjs if installed in /usr/lib or /usr/local/lib 0.12 (12/03/2005) (ms) Makefile.PL prerequisite changed from undef to '0'. (ms) Thomas Busch added a check to Makefile.PL to find an already installed JS lib. PR: ports/98322 Submitted by: aaron Reviewed by: maintainer Approved by: maintainer, tobez (implicit)
Notes
Notes: svn path=/head/; revision=164491
Diffstat (limited to 'lang/p5-JavaScript-SpiderMonkey')
-rw-r--r--lang/p5-JavaScript-SpiderMonkey/Makefile6
-rw-r--r--lang/p5-JavaScript-SpiderMonkey/pkg-descr1
2 files changed, 6 insertions, 1 deletions
diff --git a/lang/p5-JavaScript-SpiderMonkey/Makefile b/lang/p5-JavaScript-SpiderMonkey/Makefile
index 15408acdd618..9cd07a65ff94 100644
--- a/lang/p5-JavaScript-SpiderMonkey/Makefile
+++ b/lang/p5-JavaScript-SpiderMonkey/Makefile
@@ -30,8 +30,12 @@ MAN3= JavaScript::SpiderMonkey.3
.include <bsd.port.pre.mk>
+.if ${OSVERSION} < 500000 #inherited from lang/spidermonkey
+BROKEN= does not compile on FreeBSD 4.x
+.endif
+
.if ${PERL_LEVEL} < 500600
-IGNORE= requires perl 5.6.x or later. Install lang/perl5 then try again
+IGNORE= requires perl 5.6.x or later. Install lang/perl5 then try again
.endif
.include <bsd.port.post.mk>
diff --git a/lang/p5-JavaScript-SpiderMonkey/pkg-descr b/lang/p5-JavaScript-SpiderMonkey/pkg-descr
index 88696c9c412e..6d9569278cf0 100644
--- a/lang/p5-JavaScript-SpiderMonkey/pkg-descr
+++ b/lang/p5-JavaScript-SpiderMonkey/pkg-descr
@@ -3,3 +3,4 @@ JavaScript Engine. It is different from Claes Jacobsson's
"JavaScript.pm" in that it offers more friendly, Perl-like API.
WWW: http://search.cpan.org/dist/JavaScript-SpiderMonkey/
+Author: Mike Schilli <m@perlmeister.com>