diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2007-03-27 16:25:54 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2007-03-27 16:25:54 +0000 |
commit | c46d3879c7034788ba01f747dff4b9444aaddd57 (patch) | |
tree | 1890a14ee2beffa048c281c067e69c609509799f /math/asymptote/files | |
parent | b8254b01b8aac2739e63bc5d146068a4cf38b725 (diff) | |
download | ports-c46d3879c7034788ba01f747dff4b9444aaddd57.tar.gz ports-c46d3879c7034788ba01f747dff4b9444aaddd57.zip |
- Update patch-Makefile.in (I forgot it in my last commit), fix build.
Submitted by: pointyhat (via kris)
Notes
Notes:
svn path=/head/; revision=188565
Diffstat (limited to 'math/asymptote/files')
-rw-r--r-- | math/asymptote/files/patch-Makefile.in | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/math/asymptote/files/patch-Makefile.in b/math/asymptote/files/patch-Makefile.in index 14b531b935d8..d6ea43ed3f7e 100644 --- a/math/asymptote/files/patch-Makefile.in +++ b/math/asymptote/files/patch-Makefile.in @@ -1,17 +1,19 @@ ---- Makefile.in Wed Dec 13 03:06:26 2006 -+++ Makefile.in.port Wed Dec 13 13:42:00 2006 -@@ -22,8 +22,8 @@ +--- Makefile.in Mon Mar 5 10:04:20 2007 ++++ Makefile.in.port Mon Mar 5 21:44:00 2007 +@@ -22,9 +22,9 @@ CLEAN = camp.output asy.list NAME = asy EXTRABIN = x$(NAME) -EXTRA = asy-mode.el asy-keywords.el asy-init.el asy.vim asymptote.py +-KEYWORDS = base $(ASYMPTOTE_SITEDIR) -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 ++KEYWORDS = base/*.asy +LATEXFILES = doc/asymptote.sty doc/asycolors.sty doc/pdfanim_temp.sty DEFS = @DEFS@ @OPTIONS@ CFLAGS = @CPPFLAGS@ @CFLAGS@ -@@ -44,7 +44,7 @@ +@@ -45,7 +45,7 @@ datadir = $(DESTDIR)@datadir@ asydir = $(datadir)/asymptote docdir = $(DESTDIR)@docdir@ @@ -20,8 +22,8 @@ animationsdir = $(exampledir)/animations latexdir = $(DESTDIR)@latexdir@ INSTALL = @INSTALL@ -@@ -69,7 +69,7 @@ - rm -f $(GC).tar +@@ -73,7 +73,7 @@ + fi cd $(GC); \ ./configure $(GCOPTIONS); \ - $(MAKE) check @@ -29,7 +31,16 @@ html: asy cd doc; $(MAKE) doc -@@ -111,11 +111,11 @@ +@@ -103,7 +103,7 @@ + + asy-keywords.el: asy-list.pl + ./asy -l -dir base > asy.list +- ls $(addsuffix /*.asy,$(KEYWORDS)) | grep -v plain\* | grep -v featpost3D | xargs ./asy -l -dir base >> asy.list ++ ls $(KEYWORDS) | grep -v plain\* | grep -v featpost3D | xargs ./asy -l -dir base >> asy.list + ./asy-list.pl asy.list @VERSION@ + ln -sf ../asy-keywords.el base/ + +@@ -115,11 +115,11 @@ ${INSTALL} -d $(bindir) $(asydir) $(exampledir) $(animationsdir) -${INSTALL} -d $(latexdir) ${INSTALL} -p -m 755 $(NAME) $(EXTRABIN) $(bindir) |