daadfc77f9
Pkgsrc changes: o Adapt to new package contents. Upstream changes: - Core + Inlined hashing and comparison functions + Hash memory allocation moved from system malloc to lazy allocated + Avoided infinite catching of exceptions while dying from exception + Some svn fixes + Added a check for duplicate vtable entries in PMCs + Building Parrot with Perl 5.12 and gcc-4.5 / g++-4.5 + Eliminated cruft left over after dynops_mapping + Improved charset and string encoding + Better organisation of programs by reposition it to "tools/build" and "tools/release" + Implemented Exception clone vtable function + Added experimental function Parrot_getpid and getpid method + --gc-threshold command line argument added, which controls the % of memory wasted by the GC + Closed a lot of tickets - Testing + Added more core pmc tests + Rearranged some tests with C coverage + We now have Smolder back, at http://smolder.parrot.org . Submit reports with "make smoke" + skip_all implementation in Parrot's Test::More completed - GitMigration + Set up a test site for github trac plugin at http://mksig.org/trac/ + Code of Trac plugin at github is on http://github.com/cotto/github-trac + Parrot is now mirrored on github at http://github.com/parrot/parrot - Compilers + Fixed problem with imcc HLL in load_bytecode difference between loading a pbc and compiling a pir
71 lines
2.1 KiB
Makefile
71 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2010/09/24 08:36:16 he Exp $
|
|
#
|
|
|
|
VERSION= 2.8.0
|
|
RTYPE= devel
|
|
DISTNAME= parrot-${VERSION}
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/${RTYPE}/${VERSION}/
|
|
|
|
MAINTAINER= he@NetBSD.org
|
|
HOMEPAGE= http://www.parrotcode.org/
|
|
COMMENT= Virtual machine made to run Perl 6 and other languages
|
|
LICENSE= artistic-2.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= perl
|
|
PTHREAD_OPTS+= require
|
|
BUILD_TARGET= world
|
|
TEST_TARGET= test
|
|
HAS_CONFIGURE= yes
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIG_SHELL= perl
|
|
CONFIGURE_SCRIPT= Configure.pl
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX:Q} \
|
|
--icu-config=${PREFIX}/bin/icu-config \
|
|
--optimize
|
|
|
|
SUBST_CLASSES+= pthread
|
|
SUBST_STAGE.pthread= post-configure
|
|
SUBST_FILES.pthread= Makefile
|
|
SUBST_SED.pthread= -e 's|-pthread||g'
|
|
SUBST_SED.pthread+= -e 's|-lpthread||g'
|
|
SUBST_SED.pthread+= -e 's|-lc_r||g'
|
|
SUBST_SED.pthread+= -e '/^CFLAGS /s|$$|${PTHREAD_CFLAGS:Q}|'
|
|
SUBST_SED.pthread+= -e '/^LINKFLAGS /s|$$|${PTHREAD_LDFLAGS:Q} ${PTHREAD_LIBS:Q}|'
|
|
SUBST_SED.pthread+= -e '/^LDFLAGS /s|$$|${PTHREAD_LDFLAGS:Q} ${PTHREAD_LIBS:Q}|'
|
|
|
|
PLIST_SUBST+= VERSION=${VERSION:Q}
|
|
PLIST_SRC+= ${PLIST_SRC_DFLT}
|
|
# Default this to ELF shared libs with .so,
|
|
# Darwin has PLIST.Darwin which gets included automatically.
|
|
.if (${OPSYS} != "Darwin")
|
|
PLIST_SRC+= PLIST.shared
|
|
.endif
|
|
|
|
REPLACE_PERL+= tools/build/ops2c.pl
|
|
REPLACE_PERL+= tools/build/pmc2c.pl
|
|
REPLACE_PERL+= tools/dev/create_language.pl
|
|
REPLACE_PERL+= tools/dev/gen_makefile.pl
|
|
REPLACE_PERL+= tools/dev/mk_language_shell.pl
|
|
REPLACE_PERL+= tools/dev/pprof2cg.pl
|
|
REPLACE_PERL+= tools/dev/reconfigure.pl
|
|
|
|
REPLACE_INTERPRETER+= parrot
|
|
REPLACE.parrot.old= .*parrot[^[:space:]]*
|
|
REPLACE.parrot.new= ${PREFIX}/bin/parrot
|
|
REPLACE_FILES.parrot+= tools/dev/pbc_to_exe.pir
|
|
|
|
# Does relink internally, so allow local rpath entries
|
|
BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC}
|
|
|
|
pre-install:
|
|
${CHMOD} -R g-w ${WRKSRC}
|
|
|
|
.include "../../textproc/icu/buildlink3.mk"
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|