aboutsummaryrefslogtreecommitdiff
path: root/math/asymptote
diff options
context:
space:
mode:
authorNicola Vitale <nivit@FreeBSD.org>2006-12-23 23:25:56 +0000
committerNicola Vitale <nivit@FreeBSD.org>2006-12-23 23:25:56 +0000
commit8a8807f38b396689c6cc34dab2b506e651868a6e (patch)
tree6963864d88904638cb2ac9d28026989b59921563 /math/asymptote
parent815956d12e4dfc630b76eb7392794b8e726539e5 (diff)
downloadports-8a8807f38b396689c6cc34dab2b506e651868a6e.tar.gz
ports-8a8807f38b396689c6cc34dab2b506e651868a6e.zip
Notes
Diffstat (limited to 'math/asymptote')
-rw-r--r--math/asymptote/Makefile2
-rw-r--r--math/asymptote/distinfo6
-rw-r--r--math/asymptote/files/patch-Makefile.in24
-rw-r--r--math/asymptote/files/patch-doc-Makefile17
-rw-r--r--math/asymptote/pkg-plist17
5 files changed, 36 insertions, 30 deletions
diff --git a/math/asymptote/Makefile b/math/asymptote/Makefile
index ee674367ce18..a06351ac38e2 100644
--- a/math/asymptote/Makefile
+++ b/math/asymptote/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= asymptote
-PORTVERSION= 1.18
+PORTVERSION= 1.19
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/math/asymptote/distinfo b/math/asymptote/distinfo
index ecd39af42e2f..be5040c5977b 100644
--- a/math/asymptote/distinfo
+++ b/math/asymptote/distinfo
@@ -1,3 +1,3 @@
-MD5 (asymptote-1.18.tar.gz) = 00006bb1bb3a17bfca322dfa38ce0520
-SHA256 (asymptote-1.18.tar.gz) = d0c3a5e3f752e22037fa0a0ce9c6fdc1d9dda902fd1ea0e31a2c5a18e84ba392
-SIZE (asymptote-1.18.tar.gz) = 875386
+MD5 (asymptote-1.19.tar.gz) = eeaf4b3793646dcf825c8b56c247edcb
+SHA256 (asymptote-1.19.tar.gz) = de919ec1f7702938de8674817ad0ad86a9375774654828622ea7427c5079cc6c
+SIZE (asymptote-1.19.tar.gz) = 936157
diff --git a/math/asymptote/files/patch-Makefile.in b/math/asymptote/files/patch-Makefile.in
index e2e0c25616e1..14b531b935d8 100644
--- a/math/asymptote/files/patch-Makefile.in
+++ b/math/asymptote/files/patch-Makefile.in
@@ -1,17 +1,17 @@
---- Makefile.in Wed Sep 6 06:52:39 2006
-+++ Makefile.in.port Wed Sep 6 18:38:24 2006
-@@ -21,8 +21,8 @@
- CLEAN = camp.output asy.list asy.sorted
+--- Makefile.in Wed Dec 13 03:06:26 2006
++++ Makefile.in.port Wed Dec 13 13:42:00 2006
+@@ -22,8 +22,8 @@
+ CLEAN = camp.output asy.list
NAME = asy
EXTRABIN = x$(NAME)
--EXTRA = asy-mode.el,asy-keywords.el,asy-init.el,asy.vim,asymptote.py
--LATEXFILES = asymptote.sty,asycolors.sty
+-EXTRA = asy-mode.el asy-keywords.el asy-init.el asy.vim asymptote.py
+-LATEXFILES = asymptote.sty asycolors.sty pdfanim_temp.sty
+EXTRA = base/asy-mode.el base/asy-keywords.el base/asy-init.el base/asy.vim base/asymptote.py
-+LATEXFILES = doc/asymptote.sty doc/asycolors.sty
++LATEXFILES = doc/asymptote.sty doc/asycolors.sty doc/pdfanim_temp.sty
DEFS = @DEFS@ @OPTIONS@
CFLAGS = @CPPFLAGS@ @CFLAGS@
-@@ -43,7 +43,7 @@
+@@ -44,7 +44,7 @@
datadir = $(DESTDIR)@datadir@
asydir = $(datadir)/asymptote
docdir = $(DESTDIR)@docdir@
@@ -20,10 +20,10 @@
animationsdir = $(exampledir)/animations
latexdir = $(DESTDIR)@latexdir@
INSTALL = @INSTALL@
-@@ -68,7 +68,7 @@
+@@ -69,7 +69,7 @@
rm -f $(GC).tar
cd $(GC); \
- ./configure --disable-threads --disable-shared --enable-cplusplus; \
+ ./configure $(GCOPTIONS); \
- $(MAKE) check
+ $(MAKE)
@@ -33,12 +33,12 @@
${INSTALL} -d $(bindir) $(asydir) $(exampledir) $(animationsdir)
-${INSTALL} -d $(latexdir)
${INSTALL} -p -m 755 $(NAME) $(EXTRABIN) $(bindir)
-- ${INSTALL} -p -m 644 base/*.asy base/{$(EXTRA)} $(asydir)
+- ${INSTALL} -p -m 644 base/*.asy $(addprefix base/,$(EXTRA)) $(asydir)
+ ${INSTALL} -p -m 644 base/*.asy $(EXTRA) $(asydir)
${INSTALL} -p -m 644 examples/*.asy examples/piicon.eps \
doc/*.asy doc/*.csv doc/*.dat doc/latexusage.tex $(exampledir)
${INSTALL} -p -m 644 examples/animations/*.asy $(animationsdir)
-- -${INSTALL} -p -m 644 doc/{$(LATEXFILES)} $(latexdir)
+- -${INSTALL} -p -m 644 $(addprefix doc/,$(LATEXFILES)) $(latexdir)
+ -${INSTALL} -p -m 644 $(LATEXFILES) $(latexdir)
-if test -z "$(DESTDIR)"; then \
texhash; \
diff --git a/math/asymptote/files/patch-doc-Makefile b/math/asymptote/files/patch-doc-Makefile
index 015e069c9919..59b85caf373b 100644
--- a/math/asymptote/files/patch-doc-Makefile
+++ b/math/asymptote/files/patch-doc-Makefile
@@ -1,22 +1,13 @@
---- doc/Makefile Sun Nov 5 09:02:52 2006
-+++ doc/Makefile.port Sat Nov 25 11:57:33 2006
-@@ -2,7 +2,7 @@
- ASYFILES = $(wildcard *.asy) latexusage.asy
- FIGURES = version.texi
- ASY = ../asy -dir ../base
--DOCFILES = asymptote.pdf,CAD.pdf
-+DOCFILES = asymptote.pdf CAD.pdf
-
- doc: asymptote.dvi asymptote.info html man
-
-@@ -62,9 +62,10 @@
+--- doc/Makefile Wed Dec 13 03:06:11 2006
++++ doc/Makefile.port Wed Dec 13 13:44:57 2006
+@@ -72,9 +72,10 @@
rm -rf asymptote
install: man faq
+ mkdir $(prefix)/share/doc/asymptote
cd FAQ; $(MAKE) install
${INSTALL} -d -m 755 $(docdir) $(mandir)/man1
-- ${INSTALL} -p -m 644 {$(DOCFILES)} $(docdir)
+- ${INSTALL} -p -m 644 $(DOCFILES) $(docdir)
+ ${INSTALL} -p -m 644 $(DOCFILES) $(prefix)/share/doc/asymptote
${INSTALL} -p -m 644 $(MANFILES) $(mandir)/man1
diff --git a/math/asymptote/pkg-plist b/math/asymptote/pkg-plist
index 356282331089..9e529c67191c 100644
--- a/math/asymptote/pkg-plist
+++ b/math/asymptote/pkg-plist
@@ -13,6 +13,7 @@ bin/xasy
%%DATADIR%%/contour.asy
%%DATADIR%%/drawtree.asy
%%DATADIR%%/embed.asy
+%%DATADIR%%/external.asy
%%DATADIR%%/featpost3D.asy
%%DATADIR%%/feynman.asy
%%DATADIR%%/flowchart.asy
@@ -27,6 +28,7 @@ bin/xasy
%%DATADIR%%/metapost.asy
%%DATADIR%%/palette.asy
%%DATADIR%%/patterns.asy
+%%DATADIR%%/pdfanim.asy
%%DATADIR%%/plain.asy
%%DATADIR%%/plain_Label.asy
%%DATADIR%%/plain_arcs.asy
@@ -49,6 +51,7 @@ bin/xasy
%%DATADIR%%/slopefield.asy
%%DATADIR%%/solids.asy
%%DATADIR%%/stats.asy
+%%DATADIR%%/surface.asy
%%DATADIR%%/texcolors.asy
%%DATADIR%%/three.asy
%%DATADIR%%/tree.asy
@@ -56,6 +59,7 @@ bin/xasy
%%DATADIR%%/version.asy
%%DATADIR%%/x11colors.asy
%%PORTDOCS%%%%DOCSDIR%%/CAD.pdf
+%%PORTDOCS%%%%DOCSDIR%%/PDFAnim_temp_Guide.pdf
%%PORTDOCS%%%%DOCSDIR%%/asy-faq.ascii
%%PORTDOCS%%%%DOCSDIR%%/asy-faq.html/index.html
%%PORTDOCS%%%%DOCSDIR%%/asy-faq.html/section1.html
@@ -68,9 +72,12 @@ bin/xasy
%%PORTDOCS%%%%DOCSDIR%%/asy-faq.html/section8.html
%%PORTDOCS%%%%DOCSDIR%%/asy-faq.html/section9.html
%%PORTDOCS%%%%DOCSDIR%%/asymptote.pdf
+%%EXAMPLESDIR%%/BezierSurface.asy
%%EXAMPLESDIR%%/Bode.asy
%%EXAMPLESDIR%%/CAD1.asy
%%EXAMPLESDIR%%/CDlabel.asy
+%%EXAMPLESDIR%%/Coons.asy
+%%EXAMPLESDIR%%/GaussianSurface.asy
%%EXAMPLESDIR%%/Gouraud.asy
%%EXAMPLESDIR%%/Gouraudcontour.asy
%%EXAMPLESDIR%%/Pythagoras.asy
@@ -79,6 +86,10 @@ bin/xasy
%%EXAMPLESDIR%%/advection.asy
%%EXAMPLESDIR%%/animations/cube.asy
%%EXAMPLESDIR%%/animations/embeddedmovie.asy
+%%EXAMPLESDIR%%/animations/embeddedu3d.asy
+%%EXAMPLESDIR%%/animations/externalmovie.asy
+%%EXAMPLESDIR%%/animations/pdfmovie.asy
+%%EXAMPLESDIR%%/animations/wavepacket.asy
%%EXAMPLESDIR%%/animations/wheel.asy
%%EXAMPLESDIR%%/annotation.asy
%%EXAMPLESDIR%%/axis3.asy
@@ -123,6 +134,7 @@ bin/xasy
%%EXAMPLESDIR%%/fjortoft.asy
%%EXAMPLESDIR%%/flow.asy
%%EXAMPLESDIR%%/flowchartdemo.asy
+%%EXAMPLESDIR%%/fractaltree.asy
%%EXAMPLESDIR%%/generalaxis.asy
%%EXAMPLESDIR%%/generalaxis3.asy
%%EXAMPLESDIR%%/grid.asy
@@ -197,6 +209,8 @@ bin/xasy
%%EXAMPLESDIR%%/sinc.asy
%%EXAMPLESDIR%%/sinxlex.asy
%%EXAMPLESDIR%%/slidedemo.asy
+%%EXAMPLESDIR%%/slidemovies.asy
+%%EXAMPLESDIR%%/slopefield1.asy
%%EXAMPLESDIR%%/sphere.asy
%%EXAMPLESDIR%%/spiral.asy
%%EXAMPLESDIR%%/spring.asy
@@ -208,8 +222,8 @@ bin/xasy
%%EXAMPLESDIR%%/star.asy
%%EXAMPLESDIR%%/subpictures.asy
%%EXAMPLESDIR%%/superpath.asy
-%%EXAMPLESDIR%%/surface.asy
%%EXAMPLESDIR%%/tanh.asy
+%%EXAMPLESDIR%%/tensor.asy
%%EXAMPLESDIR%%/thermodynamics.asy
%%EXAMPLESDIR%%/tile.asy
%%EXAMPLESDIR%%/torus.asy
@@ -239,6 +253,7 @@ bin/xasy
@dirrm %%EXAMPLESDIR%%
share/texmf-local/tex/latex/asymptote/asycolors.sty
share/texmf-local/tex/latex/asymptote/asymptote.sty
+share/texmf-local/tex/latex/asymptote/pdfanim_temp.sty
@dirrm share/texmf-local/tex/latex/asymptote
@unexec %%MKTEXLSR%%
@exec %%MKTEXLSR%%