Index: head/math/asymptote/Makefile =================================================================== --- head/math/asymptote/Makefile (revision 472439) +++ head/math/asymptote/Makefile (revision 472440) @@ -1,83 +1,87 @@ # Created by: Nicola Vitale # $FreeBSD$ PORTNAME= asymptote -PORTVERSION= 2.41 -PORTREVISION= 4 +PORTVERSION= 2.44 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= nivit@FreeBSD.org COMMENT= Powerful script-based vector graphics language LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual -LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded \ - libsigsegv.so:devel/libsigsegv +ONLY_FOR_ARCHS= amd64 i386 + +LIB_DEPENDS= libsigsegv.so:devel/libsigsegv RUN_DEPENDS= animate:graphics/ImageMagick \ gv:print/gv \ ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} -ALL_TARGET= asy asy-keywords.el +USES= compiler:c++14-lang gettext-runtime ghostscript gmake ncurses perl5 python \ + shebangfix tar:tgz +SHEBANG_FILES= GUI/*.py +USE_GL= gl glu glut +USE_PERL5= build +USE_TEX= dvipsk formats -CONFIGURE_ARGS= --enable-gc=system CPPFLAGS+= -I${LOCALBASE}/include +GNU_CONFIGURE= yes +MAKE_ENV= ASYMPTOTE_HOME=${WRKDIR} HOME=${WRKDIR} +MAKE_JOBS_UNSAFE= yes + +ALL_TARGET= asy asy-keywords.el +INSTALL_TARGET= install-asy + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +OPTIONS_DEFAULT= FFTW GSL MANPAGES READLINE +OPTIONS_DEFINE= BDWGC DOCS EXAMPLES FFTW GSL MANPAGES OFFSCREEN READLINE + +BDWGC_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded +BDWGC_DESC= Enable Boehm-Demers-Weiser garbage collector +BDWGC_CONFIGURE_ENABLE= gc=${LOCALBASE} + DOCS_ALL_TARGET= html DOCS_BUILD_DEPENDS= texi2dvi:print/texinfo DOCS_CONFIGURE_WITH= docdir=${DOCSDIR} DOCS_INSTALL_TARGET= install-html FFTW_CONFIGURE_ENABLE= fftw FFTW_DESC= Use FFTW to compute the Discrete Fourier Transform FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 -GNU_CONFIGURE= yes GSL_CONFIGURE_ENABLE= gsl GSL_DESC= Enable GNU Scientific library GSL_LIB_DEPENDS= libgsl.so:math/gsl -INSTALL_TARGET= install-asy - -MAKE_ENV= ASYMPTOTE_HOME=${WRKDIR} HOME=${WRKDIR} -MAKE_JOBS_UNSAFE= yes MANPAGES_ALL_TARGET= man MANPAGES_BUILD_DEPENDS= texi2dvi:print/texinfo MANPAGES_INFO= asy-faq MANPAGE_INSTALL_TARGET= install-man OFFSCREEN_CONFIGURE_ENABLE= offscreen OFFSCREEN_DESC= Enable offscreen rendering using OSMesa library OFFSCREEN_LIB_DEPENDS= libOSMesa.so:graphics/libosmesa -ONLY_FOR_ARCHS= amd64 i386 -OPTIONS_DEFAULT= FFTW GSL MANPAGES READLINE -OPTIONS_DEFINE= DOCS EXAMPLES FFTW GSL MANPAGES OFFSCREEN READLINE READLINE_CONFIGURE_ENABLE= readline -READLINE_DESC= ${LIBEDIT_DESC} -READLINE_USES= readline +READLINE_USES= readline:port -SHEBANG_FILES= GUI/*.py - -USES= gettext-runtime ghostscript gmake ncurses perl5 python \ - shebangfix tar:tgz -USE_GL= glut -USE_PERL5= build -USE_TEX= dvipsk formats - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - post-patch: @${REINPLACE_CMD} 's/-lgc/-lgc-threaded/' ${WRKSRC}/configure @${REINPLACE_CMD} 's,/usr/lib/libgs.so,${LOCALBASE}/lib/libgs.so,' \ ${WRKSRC}/settings.cc + @${REINPLACE_CMD} 's,makeinfo,${LOCALBASE}/bin/makeinfo,' \ + ${WRKSRC}/doc/png/Makefile.in + # Fix the python interpreter in the generated file share/asymptote/GUI/xasyVersion.py: @${REINPLACE_CMD} 's,/usr/bin/env python,${PYTHON_CMD},' ${WRKSRC}/Makefile.in post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/asy + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/asy .include Index: head/math/asymptote/distinfo =================================================================== --- head/math/asymptote/distinfo (revision 472439) +++ head/math/asymptote/distinfo (revision 472440) @@ -1,3 +1,3 @@ -TIMESTAMP = 1500975929 -SHA256 (asymptote-2.41.src.tgz) = 1d6e7e89fb5293fad7d836fb0477f785a113f689bd71f37a05af18ff0c5eeef0 -SIZE (asymptote-2.41.src.tgz) = 3516426 +TIMESTAMP = 1527856340 +SHA256 (asymptote-2.44.src.tgz) = 6f9bd2f1ed2835aa69ec382fefbec55ba5ec859341a42a543631a7f04ada49e7 +SIZE (asymptote-2.44.src.tgz) = 3549129 Index: head/math/asymptote/files/patch-runtime.in =================================================================== --- head/math/asymptote/files/patch-runtime.in (nonexistent) +++ head/math/asymptote/files/patch-runtime.in (revision 472440) @@ -0,0 +1,11 @@ +--- runtime.in.orig 2018-06-03 13:52:26 UTC ++++ runtime.in +@@ -85,7 +85,7 @@ stringarray2* => stringArray2() + #include "process.h" + #include "arrayop.h" + +-#ifdef __APPLE__ ++#if defined(__APPLE__) || defined(__FreeBSD__) + extern "C" int isnan(double); + #endif + Property changes on: head/math/asymptote/files/patch-runtime.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/math/asymptote/files/patch-xstream.h =================================================================== --- head/math/asymptote/files/patch-xstream.h (nonexistent) +++ head/math/asymptote/files/patch-xstream.h (revision 472440) @@ -0,0 +1,23 @@ +--- xstream.h.orig 2018-06-10 15:14:47 UTC ++++ xstream.h +@@ -31,7 +31,7 @@ + #define quad_t long long + #define u_quad_t unsigned long long + +-#if defined(__CYGWIN__) || defined(__FreeBSD__) ++#if defined(__CYGWIN__) + #include + #define u_char unsigned char + #define u_int unsigned int +@@ -41,6 +41,11 @@ extern "C" int fseeko(FILE *, off_t, int + extern "C" off_t ftello(FILE *); + #endif + ++#ifdef __FreeBSD__ ++#define xdr_longlong_t xdr_int64_t ++#define xdr_u_longlong_t xdr_u_int64_t ++#endif ++ + #ifdef _POSIX_SOURCE + #undef _POSIX_SOURCE + #include Property changes on: head/math/asymptote/files/patch-xstream.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/math/asymptote/pkg-plist =================================================================== --- head/math/asymptote/pkg-plist (revision 472439) +++ head/math/asymptote/pkg-plist (revision 472440) @@ -1,518 +1,520 @@ bin/asy bin/xasy info/asymptote/Bode.png info/asymptote/CAD1.png info/asymptote/CDlabel.png info/asymptote/GaussianSurface.png info/asymptote/HermiteSpline.png info/asymptote/Hobbycontrol.png info/asymptote/Hobbydir.png info/asymptote/asymptote.info info/asymptote/axis3.png info/asymptote/bezier.png info/asymptote/bezier2.png info/asymptote/beziercurve.png info/asymptote/bigdiagonal.png info/asymptote/binarytreetest.png info/asymptote/brokenaxis.png info/asymptote/colons.png info/asymptote/colors.png info/asymptote/cube.png info/asymptote/cylinderskeleton.png info/asymptote/datagraph.png info/asymptote/diagonal.png info/asymptote/diatom.png info/asymptote/dots.png info/asymptote/eetomumu.png info/asymptote/elliptic.png info/asymptote/errorbars.png info/asymptote/exp.png info/asymptote/filegraph.png info/asymptote/flow.png info/asymptote/flowchartdemo.png info/asymptote/generalaxis.png info/asymptote/generalaxis3.png info/asymptote/graphmarkers.png info/asymptote/grid3xyz.png info/asymptote/hatch.png info/asymptote/helix.png info/asymptote/histogram.png info/asymptote/icon.png info/asymptote/image.png info/asymptote/imagecontour.png info/asymptote/irregularcontour.png info/asymptote/join.png info/asymptote/join3.png info/asymptote/knots.png info/asymptote/labelsquare.png info/asymptote/latexusage.png info/asymptote/leastsquares.png info/asymptote/legend.png info/asymptote/lineargraph.png info/asymptote/lineargraph0.png info/asymptote/linetype.png info/asymptote/log2graph.png info/asymptote/loggraph.png info/asymptote/loggrid.png info/asymptote/logimage.png info/asymptote/logo.png info/asymptote/logticks.png info/asymptote/makepen.png info/asymptote/markers1.png info/asymptote/markers2.png info/asymptote/mexicanhat.png info/asymptote/monthaxis.png info/asymptote/multicontour.png info/asymptote/onecontour.png info/asymptote/parametricgraph.png info/asymptote/penfunctionimage.png info/asymptote/penimage.png info/asymptote/planes.png info/asymptote/quartercircle.png info/asymptote/saddle.png info/asymptote/scaledgraph.png info/asymptote/secondaryaxis.png info/asymptote/shadedtiling.png info/asymptote/slopefield1.png info/asymptote/square.png info/asymptote/subpictures.png info/asymptote/superpath.png info/asymptote/tile.png info/asymptote/triangulate.png info/asymptote/unitcircle3.png info/asymptote/vectorfield.png info/asymptote/westnile.png man/man1/asy.1.gz man/man1/xasy.1x.gz %%DATADIR%%/CAD.asy %%DATADIR%%/GUI/CubicBezier.py %%DATADIR%%/GUI/UndoRedoStack.py %%DATADIR%%/GUI/xasy.py %%DATADIR%%/GUI/xasy2asy.py %%DATADIR%%/GUI/xasyActions.py %%DATADIR%%/GUI/xasyBezierEditor.py %%DATADIR%%/GUI/xasyCodeEditor.py %%DATADIR%%/GUI/xasyColorPicker.py %%DATADIR%%/GUI/xasyFile.py %%DATADIR%%/GUI/xasyGUIIcons.py %%DATADIR%%/GUI/xasyMainWin.py %%DATADIR%%/GUI/xasyOptions.py %%DATADIR%%/GUI/xasyOptionsDialog.py %%DATADIR%%/GUI/xasyVersion.py %%DATADIR%%/animate.asy %%DATADIR%%/animation.asy %%DATADIR%%/annotate.asy %%DATADIR%%/asy-init.el %%DATADIR%%/asy-kate.sh %%DATADIR%%/asy-keywords.el %%DATADIR%%/asy-mode.el %%DATADIR%%/asy.vim %%DATADIR%%/asy_filetype.vim %%DATADIR%%/asymptote.py %%DATADIR%%/babel.asy %%DATADIR%%/bezulate.asy %%DATADIR%%/binarytree.asy %%DATADIR%%/bsp.asy %%DATADIR%%/contour.asy %%DATADIR%%/contour3.asy %%DATADIR%%/drawtree.asy %%DATADIR%%/embed.asy %%DATADIR%%/external.asy %%DATADIR%%/feynman.asy %%DATADIR%%/flowchart.asy %%DATADIR%%/fontsize.asy %%DATADIR%%/geometry.asy %%DATADIR%%/graph.asy %%DATADIR%%/graph3.asy %%DATADIR%%/graph_settings.asy %%DATADIR%%/graph_splinetype.asy %%DATADIR%%/grid3.asy %%DATADIR%%/interpolate.asy %%DATADIR%%/labelpath.asy %%DATADIR%%/labelpath3.asy %%DATADIR%%/latin1.asy %%DATADIR%%/lmfit.asy %%DATADIR%%/markers.asy %%DATADIR%%/math.asy %%DATADIR%%/metapost.asy %%DATADIR%%/nopapersize.ps %%DATADIR%%/obj.asy %%DATADIR%%/ode.asy %%DATADIR%%/palette.asy %%DATADIR%%/patterns.asy %%DATADIR%%/plain.asy %%DATADIR%%/plain_Label.asy %%DATADIR%%/plain_arcs.asy %%DATADIR%%/plain_arrows.asy %%DATADIR%%/plain_bounds.asy %%DATADIR%%/plain_boxes.asy %%DATADIR%%/plain_constants.asy %%DATADIR%%/plain_debugger.asy %%DATADIR%%/plain_filldraw.asy %%DATADIR%%/plain_margins.asy %%DATADIR%%/plain_markers.asy %%DATADIR%%/plain_paths.asy %%DATADIR%%/plain_pens.asy %%DATADIR%%/plain_picture.asy %%DATADIR%%/plain_prethree.asy %%DATADIR%%/plain_scaling.asy %%DATADIR%%/plain_shipout.asy %%DATADIR%%/plain_strings.asy %%DATADIR%%/plain_xasy.asy %%DATADIR%%/pstoedit.asy +%%DATADIR%%/rational.asy %%DATADIR%%/reload.js %%DATADIR%%/roundedpath.asy %%DATADIR%%/simplex.asy %%DATADIR%%/size10.asy %%DATADIR%%/size11.asy %%DATADIR%%/slide.asy %%DATADIR%%/slopefield.asy %%DATADIR%%/smoothcontour3.asy %%DATADIR%%/solids.asy %%DATADIR%%/stats.asy %%DATADIR%%/syzygy.asy %%DATADIR%%/texcolors.asy %%DATADIR%%/three.asy %%DATADIR%%/three_arrows.asy %%DATADIR%%/three_light.asy %%DATADIR%%/three_margins.asy %%DATADIR%%/three_surface.asy %%DATADIR%%/three_tube.asy %%DATADIR%%/tree.asy %%DATADIR%%/trembling.asy %%DATADIR%%/tube.asy %%DATADIR%%/unicode.asy %%DATADIR%%/version.asy %%DATADIR%%/x11colors.asy %%PORTDOCS%%%%DOCSDIR%%/CAD.pdf %%PORTDOCS%%%%DOCSDIR%%/TeXShopAndAsymptote.pdf %%PORTDOCS%%%%DOCSDIR%%/asy-latex.pdf %%PORTDOCS%%%%DOCSDIR%%/asyRefCard.pdf %%PORTDOCS%%%%DOCSDIR%%/asymptote.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/100d.views %%PORTEXAMPLES%%%%EXAMPLESDIR%%/1overx.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierPatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierSaddle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierTriangle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Bode.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/CAD1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/CDlabel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Coons.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/GaussianSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Gouraud.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Gouraudcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/HermiteSpline.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Hobbycontrol.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Hobbydir.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Klein.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBScurve.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBSsphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBSsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Pythagoras.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/PythagoreanTree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSurfaceRoot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Sierpinski.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/SierpinskiGasket.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/SierpinskiSponge.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/advection.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/alignbox.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/alignedaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/cube.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/earthmoon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/embeddedmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/embeddedu3d.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/externalmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/glmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/heatequation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/inlinemovie.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/inlinemovie3.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/pdfmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/slidemovies.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/sphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/torusanimation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/wavepacket.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/wheel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/annotation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/arrows3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/axis3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bars3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/basealign.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bezier.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bezier2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/beziercurve.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bigdiagonal.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/billboard.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/binarytreetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/brokenaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/buildcycle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cardioid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cards.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/centroidfg.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cheese.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/circles.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/circumcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/clockarray.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/coag.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colons.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colorpatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colorplanes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colors.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/condor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cones.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/conicurv.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/contextfonts.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/controlsystem.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cos2theta.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cos3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cosaddition.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpkcolors.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cube.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curvedlabel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curvedlabel3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclohexane.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cylinder.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cylinderskeleton.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/datagraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/delu.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diagonal.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diatom.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diatom.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimension.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dots.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dragon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eetomumu.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/electromagnetic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elliptic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/epix.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/equilateral.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/equilchord.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorbars.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/exp.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/exp3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/externalprc.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/extrudedcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fano.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fequlogo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fermi.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filegraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filegraph.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filesurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filesurface.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fillcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fin.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fjortoft.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/floatingdisk.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/floor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flowchartdemo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractaltree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/functionshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/galleon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gamma.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gamma3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalaxis3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/genusthree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/genustwo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphmarkers.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid3xyz.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hierarchy.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/histogram.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperboloid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperboloidsilhouette.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/icon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/image.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/imagecontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/imagehistogram.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/impact.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/integraltest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/interpolate1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/intro.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/irregularcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/join.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/join3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/jump.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/knots.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3ribbon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3solid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3zoom.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelbox.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelsquare.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/laserlattice.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latticeshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/layers.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/leastsquares.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/leastsquares.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/legend.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lever.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/limit.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lineargraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lineargraph0.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/linearregression.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lines.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/linetype.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lmfit1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/log.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/log2graph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logdown.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/loggraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/loggrid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logticks.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowupint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/magnetic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/makepen.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markers1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markers2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markregular.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mergeExample.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mexicanhat.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/monthaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mosaic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mosquito.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/multicontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/near_earth.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/odetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/onecontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/oneoverx.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/orthocenter.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/p-orbital.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricgraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/partialsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/partitionExample.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pathintersectsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdb.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/penfunctionimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/penimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/phase.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/piicon.eps %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pipeintersection.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pipes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pixel.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/planeproject.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/planes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polararea.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polardatagraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poster.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/progrid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectrevolution.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pseudosphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quartercircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quilt.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rainbow.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/randompath3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/refs.bib %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ring.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/roll.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/roundpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacone.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacone3D.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacylinder.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacylinder3D.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/saddle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/scaledgraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/secondaryaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/secondaryaxis.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shade.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shadedtiling.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shadestroke.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shellmethod.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shellsqrtx01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sin1x.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sin3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sinc.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sinxlex.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/slidedemo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/slopefield1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/smoothelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/soccerball.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spectrum.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spheresilhouette.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphereskeleton.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphericalharmonic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spiral.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spiral3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spline.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring0.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sqrtx01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sqrtx01y1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/square.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/star.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/stereoscopic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/stroke3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/strokepath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/strokeshade.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/subpictures.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/superpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tanh.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/teapot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tensor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tetra.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/textpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermodynamics.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/threeviews.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tile.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/torus.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparency.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/treetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/trefoilknot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triads.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangles.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangulate.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triceratops.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/trumpet.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/truncatedIcosahedron.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tvgen.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/twistedtubes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitcircle3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitoctant.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/upint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfield.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfield3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfieldsphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/venn.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/venn3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertexshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/washer.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/washermethod.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/wedge.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/westnile.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/westnile.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/workcone.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/worksheet.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/worldmap.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xsin1x.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xstitch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01x-1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01y.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/yingyang.asy %%TEXMFLOCALDIR%%/tex/context/third/asymptote/colo-asy.tex %%TEXMFLOCALDIR%%/tex/latex/asymptote/asycolors.sty %%TEXMFLOCALDIR%%/tex/latex/asymptote/asymptote.sty %%TEXMFLOCALDIR%%/tex/latex/asymptote/latexmkrc %%TEXMFLOCALDIR%%/tex/latex/asymptote/ocg.sty