From owner-svn-ports-all@FreeBSD.ORG Tue Jun 24 18:15:45 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2ECC8772; Tue, 24 Jun 2014 18:15:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 198FD28A3; Tue, 24 Jun 2014 18:15:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5OIFjxg059724; Tue, 24 Jun 2014 18:15:45 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5OIFiMi059716; Tue, 24 Jun 2014 18:15:44 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201406241815.s5OIFiMi059716@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 24 Jun 2014 18:15:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359118 - in head/devel: . swig30 swig30/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 18:15:45 -0000 Author: sunpoet Date: Tue Jun 24 18:15:43 2014 New Revision: 359118 URL: http://svnweb.freebsd.org/changeset/ports/359118 QAT: https://qat.redports.org/buildarchive/r359118/ Log: - Add swig 3.0.2 SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of target languages including common scripting languages such as Javascript, Perl, PHP, Python, Tcl and Ruby. The list of supported languages also includes non-scripting languages such as C#, Common Lisp (CLISP, Allegro CL, CFFI, UFFI), D, Go language, Java, Lua, Modula-3, OCAML, Octave and R. Also several interpreted and compiled Scheme implementations (Guile, MzScheme/Racket, Chicken) are supported. SWIG is most commonly used to create high-level interpreted or compiled programming environments, user interfaces, and as a tool for testing and prototyping C/C++ software. SWIG is typically used to parse C/C++ interfaces and generate the 'glue code' required for the above target languages to call into the C/C++ code. SWIG can also export its parse tree in the form of XML and Lisp s-expressions. WWW: http://www.swig.org/ Added: head/devel/swig30/ - copied from r358706, head/devel/swig20/ Deleted: head/devel/swig30/files/patch-Lib__std__std_container.i head/devel/swig30/files/patch-Lib__std__std_map.i head/devel/swig30/files/patch-Lib__std__std_set.i Modified: head/devel/Makefile head/devel/swig30/Makefile head/devel/swig30/distinfo head/devel/swig30/pkg-descr head/devel/swig30/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 24 18:14:49 2014 (r359117) +++ head/devel/Makefile Tue Jun 24 18:15:43 2014 (r359118) @@ -4572,6 +4572,7 @@ SUBDIR += swank-clojure SUBDIR += swig13 SUBDIR += swig20 + SUBDIR += swig30 SUBDIR += synfig SUBDIR += sysconftool SUBDIR += sysfsutils Modified: head/devel/swig30/Makefile ============================================================================== --- head/devel/swig20/Makefile Sat Jun 21 14:54:06 2014 (r358706) +++ head/devel/swig30/Makefile Tue Jun 24 18:15:43 2014 (r359118) @@ -2,69 +2,56 @@ # $FreeBSD$ PORTNAME= swig -PORTVERSION= 2.0.11 -PORTREVISION= 1 +PORTVERSION= 3.0.2 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMESUFFIX= 30 -MAINTAINER= jwbacon@tds.net +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generate wrappers for calling C/C++ code from other languages LICENSE= GPLv3 LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre -USES= gmake libtool lua:51 -USE_AUTOTOOLS= autoconf:env - -VER= ${PORTVERSION:R} -PLIST_SUB+= PORTVERSION=${PORTVERSION} VER="${VER}" +OPTIONS_DEFINE= DOCS EXAMPLES -GNU_CONFIGURE= yes +ALL_TARGET= # empty CFLAGS+= -fPIC -DPIC -ALL_TARGET= # none - -CONFIGURE_ARGS+=--program-suffix=${VER} - -CONFIGURE_ARGS+=--with-lua=${LUA_BINDIR}/lua \ +CONFIGURE_ARGS= --program-suffix=${PORTVERSION:R} \ + --with-lua=${LUA_BINDIR}/lua \ --with-luaincl=${LUA_INCDIR} \ --with-lualib=${LUA_LIBDIR} +GNU_CONFIGURE= yes +USE_AUTOTOOLS= autoconf:env +#USES= gmake libtool lua +USES= gmake lua -OCTAVE_VER_CMD= ${LOCALBASE}/bin/octave-config -v 2>/dev/null || ${TRUE} +PLIST_SUB= MAJOR_VER=${PORTVERSION:R} +PORTDATA= * +PORTDOCS= * +PORTEXAMPLES= * -.include +OCTAVE_VER_CMD= ${LOCALBASE}/bin/octave-config -v 2>/dev/null || ${TRUE} post-patch: - ${SETENV} OCTAVE_VER=$$(${OCTAVE_VER_CMD}) \ - ${REINPLACE_CMD} -e 's|$$RUBY |${RUBY} |; \ - s|^PHP4CONFIG=.*$$|PHP4CONFIG=php-config|; \ - s|OCTAVEDIR=".*"|OCTAVEDIR="${LOCALBASE}/include/octave-$${OCTAVE_VER}"|; \ - s|MZSCHEME --mute-banner|MZSCHEME|; \ - /^MZDYNOBJ/s|`$$|\| tail -n 1`|; \ - ' ${WRKSRC}/configure - ${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \ - ${WRKSRC}/Lib/lua/luarun.swg + @${SETENV} OCTAVE_VER=$$(${OCTAVE_VER_CMD}) ${REINPLACE_CMD} \ + -e 's|$$RUBY |${RUBY} |' \ + -e 's|^PHP4CONFIG=.*$$|PHP4CONFIG=php-config|' \ + -e 's|OCTAVEDIR=".*"|OCTAVEDIR="${LOCALBASE}/include/octave-$${OCTAVE_VER}"|' \ + -e 's|MZSCHEME --mute-banner|MZSCHEME|' \ + -e '/^MZDYNOBJ/s|`$$|\| tail -n 1`|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/Lib/lua/luarun.swg post-configure: ${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION} - cd ${WRKSRC}/Examples && ${FIND} . -type d \ - -exec ${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION}/{} \; - cd ${WRKSRC}/Examples && ${FIND} . -type f \ - -exec ${INSTALL_DATA} {} ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION}/{} \; -.endif -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR}/${PORTVERSION} - cd ${WRKSRC}/Doc && ${FIND} . -type d \ - -exec ${INSTALL} -d ${STAGEDIR}${DOCSDIR}/${PORTVERSION}/{} \; - cd ${WRKSRC}/Doc && ${FIND} . -type f \ - -exec ${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR}/${PORTVERSION}/{} \; -.endif + cd ${WRKSRC}/Doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/${PORTVERSION} + cd ${WRKSRC}/Examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION} -regression-test: build - cd ${WRKSRC} && ${GMAKE} check +regression-test test: build + cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check -.include +.include Modified: head/devel/swig30/distinfo ============================================================================== --- head/devel/swig20/distinfo Sat Jun 21 14:54:06 2014 (r358706) +++ head/devel/swig30/distinfo Tue Jun 24 18:15:43 2014 (r359118) @@ -1,2 +1,2 @@ -SHA256 (swig-2.0.11.tar.gz) = 63780bf29f53937ad399a1f68bccb3730c90f65746868c4cdfc25cafcd0a424e -SIZE (swig-2.0.11.tar.gz) = 5310295 +SHA256 (swig-3.0.2.tar.gz) = a2669657cabcedc371f63c0457407a183e0b6b2ef4e7e303c1ec9a3964cc7813 +SIZE (swig-3.0.2.tar.gz) = 5690863 Modified: head/devel/swig30/pkg-descr ============================================================================== --- head/devel/swig20/pkg-descr Sat Jun 21 14:54:06 2014 (r358706) +++ head/devel/swig30/pkg-descr Tue Jun 24 18:15:43 2014 (r359118) @@ -1,9 +1,15 @@ -SWIG is a tool for automatically generating the wrapper code needed -to link collections of functions written in C/C++ with other -programming languages. - -Using SWIG, it is possible to greatly simplify interface development -and to put interesting interfaces on existing applications with -little effort. +SWIG is a software development tool that connects programs written in C and C++ +with a variety of high-level programming languages. SWIG is used with different +types of target languages including common scripting languages such as +Javascript, Perl, PHP, Python, Tcl and Ruby. The list of supported languages +also includes non-scripting languages such as C#, Common Lisp (CLISP, Allegro +CL, CFFI, UFFI), D, Go language, Java, Lua, Modula-3, OCAML, Octave and R. Also +several interpreted and compiled Scheme implementations (Guile, MzScheme/Racket, +Chicken) are supported. SWIG is most commonly used to create high-level +interpreted or compiled programming environments, user interfaces, and as a tool +for testing and prototyping C/C++ software. SWIG is typically used to parse +C/C++ interfaces and generate the 'glue code' required for the above target +languages to call into the C/C++ code. SWIG can also export its parse tree in +the form of XML and Lisp s-expressions. WWW: http://www.swig.org/ Modified: head/devel/swig30/pkg-plist ============================================================================== --- head/devel/swig20/pkg-plist Sat Jun 21 14:54:06 2014 (r358706) +++ head/devel/swig30/pkg-plist Tue Jun 24 18:15:43 2014 (r359118) @@ -1,4293 +1,3 @@ -bin/ccache-swig%%VER%% -bin/swig%%VER%% -man/man1/ccache-swig2.0.1.gz -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/cmdopt.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/engineering.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/file.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/index.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/internals.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/migrate.txt -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/parm.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/runtime.txt -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/scanner.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/tree.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/wrapobj.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Allegrocl.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Android.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Arguments.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/CCache.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/CSharp.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Chicken.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Contents.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Contract.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Customization.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/D.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Extending.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Go.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Guile.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Introduction.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Java.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Library.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Lisp.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Lua.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Makefile -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Modula3.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Modules.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Mzscheme.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Ocaml.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Octave.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Perl5.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Php.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Pike.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Preface.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Preprocessor.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Python.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/R.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/README -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Ruby.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIG.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGDocumentation.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGDocumentation.pdf -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGPlus.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Scripting.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Sections.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Tcl.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Typemaps.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Varargs.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Warnings.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Windows.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/android-class.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/android-simple.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch2.1.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/chapters -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/fixstyle.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/index.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/linkchecker.config -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/makechap.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/maketoc.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/margin-left.patch -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/style.css -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swig16.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swightml.book -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swigpdf.book -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/AndroidManifest.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/ant.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/build.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/jni/Android.mk -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/jni/example.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/jni/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/jni/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/local.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/proguard.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/project.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/res/layout/main.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/res/values/strings.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/class/src/org/swig/classexample/SwigClass.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/AndroidManifest.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/ant.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/build.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/jni/Android.mk -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/jni/Application.mk -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/jni/example.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/jni/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/jni/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/local.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/proguard.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/project.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/res/layout/main.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/res/values/strings.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/extend/src/org/swig/extendexample/SwigExtend.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/AndroidManifest.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/ant.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/build.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/jni/Android.mk -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/jni/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/jni/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/local.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/proguard.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/project.properties -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/res/layout/main.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/res/values/strings.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/src/org/swig/simple/SwigSimple.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/runme-lowlevel.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/runme-tinyclos.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/mod1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/mod2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/multi.setup -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/multi_init.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/single.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/single.setup -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/test.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/runme1.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/runme2.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme1.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme2.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme3.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/arrays/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/arrays/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/arrays/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/arrays/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/arrays/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/constants/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/constants/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/constants/example.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/simple/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/simple/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/d1/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/d2/runme.d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/d/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/callback/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/class/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/constants/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/enum/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/extend/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/funcptr/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/multimap/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/pointer/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/reference/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/simple/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/template/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/template/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/go/variables/runme.go -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/class/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/matrix.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/matrix.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/dual.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/example2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/embed.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/embed2.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/embed3.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/lua.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/swig.tmpl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/typemap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/typemap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/foolib.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/module_load/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/module_load/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/module_load/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/module_load/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/module_load/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/example.dsw -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/Example.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/xmlstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/callback/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/class/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/constants/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/cpointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/cpointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/cpointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/cpointer/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/disown/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/disown/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/disown/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/disown/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/disown/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/enum/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/extend/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/funcptr/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/overloading/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/overloading/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/overloading/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/overloading/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/overloading/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pointer/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pragmas/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pragmas/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pragmas/include.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/pragmas/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/proxy/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/proxy/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/proxy/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/proxy/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/proxy/runme.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php/reference/example.cxx *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***