summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Stadler <centic@gentoo.org>2007-10-27 20:15:59 +0000
committerDominik Stadler <centic@gentoo.org>2007-10-27 20:15:59 +0000
commit69ca9c897b1efd44e48acc6ae5d20b03458d40c2 (patch)
treec49d22db3acc8b491daa82e8555515882e4c755c /media-gfx/asymptote/files
parentvariable quoting (diff)
downloadgentoo-2-69ca9c897b1efd44e48acc6ae5d20b03458d40c2.tar.gz
gentoo-2-69ca9c897b1efd44e48acc6ae5d20b03458d40c2.tar.bz2
gentoo-2-69ca9c897b1efd44e48acc6ae5d20b03458d40c2.zip
Add 1.36, fixes Bug 196913, Fix repoman reports in 1.29.
(Portage version: 2.1.3.15)
Diffstat (limited to 'media-gfx/asymptote/files')
-rw-r--r--media-gfx/asymptote/files/asymptote-1.36-configure-ac.patch49
-rw-r--r--media-gfx/asymptote/files/asymptote-1.36-makefile.patch65
-rw-r--r--media-gfx/asymptote/files/digest-asymptote-1.363
3 files changed, 117 insertions, 0 deletions
diff --git a/media-gfx/asymptote/files/asymptote-1.36-configure-ac.patch b/media-gfx/asymptote/files/asymptote-1.36-configure-ac.patch
new file mode 100644
index 000000000000..cf4fc235481a
--- /dev/null
+++ b/media-gfx/asymptote/files/asymptote-1.36-configure-ac.patch
@@ -0,0 +1,49 @@
+--- configure.ac 2007-07-30 02:28:12.000000000 +1000
++++ ../configure.ac.new 2007-08-19 09:19:39.000000000 +1000
+@@ -76,10 +76,16 @@
+ fi
+ fi
+
+-AC_CHECK_HEADER(fftw3.h,
+- AC_CHECK_LIB([fftw3], fftw_execute,,
++AC_ARG_WITH([fftw],
++ [ --with-fftw use fftw3],
++ [with_fftw=$withval],
++ [with_fftw="no"])
++if test "$with_fftw" = "yes"; then
++AC_CHECK_HEADER([fftw3.h],
++ AC_CHECK_LIB([fftw3], [fftw_execute],,
+ AC_MSG_NOTICE([*** Could not find libfftw3: will compile without optional fast Fourier transforms. ***])),
+ AC_MSG_NOTICE([*** Header file fftw3.h not found: will compile without optional fast Fourier transforms. ***]))
++fi
+
+ GCVERSION=gc-7.0
+
+@@ -108,7 +114,8 @@
+ then INCL="-I$prefix/include/gc"
+ else INCL="-I$ac_cv_use_gc/include/gc"
+ fi
+- AC_CHECK_HEADER(gc.h,
++
++ AC_CHECK_HEADER([gc/gc.h],
+ AC_CHECK_LIB([gc],[GC_malloc],[
+ LIBS=$LIBS"-lgc "
+ # LIBS=$LIBS"-lgccpp -lgc "
+@@ -183,11 +190,17 @@
+ [Define if you have a working <rpc/rpc.h> header file])],
+ AC_MSG_WARN([*** Broken rpc headers; XDR support disabled ***]))
+
++AC_ARG_WITH(gsl,
++ [ --with-gsl use gsl libraries],
++ [with_gsl=$withval],
++ [with_gsl="no"])
++if test "$with_gsl" = "yes"; then
+ AC_CHECK_HEADER(gsl/gsl_sf.h,
+ AC_CHECK_LIB([gsl], gsl_sf_Si, [AC_DEFINE(HAVE_LIBGSL, 1,
+ [Define to 1 if you have the 'gsl' library (-lgsl). ]) LIBS=$LIBS"-lgsl -lgslcblas "],
+ AC_MSG_NOTICE([*** Could not find libgsl: will compile without optional special functions. ***]),[-lgslcblas]),
+ AC_MSG_NOTICE([*** Header file gsl_sf.h not found: will compile without optional special functions. ***]))
++fi
+
+ # Checks for typedefs, structures, and compiler characteristics.
+ AC_TYPE_PID_T
diff --git a/media-gfx/asymptote/files/asymptote-1.36-makefile.patch b/media-gfx/asymptote/files/asymptote-1.36-makefile.patch
new file mode 100644
index 000000000000..d4d5b1a5cac4
--- /dev/null
+++ b/media-gfx/asymptote/files/asymptote-1.36-makefile.patch
@@ -0,0 +1,65 @@
+--- ../media-gfx/asymptote-1.33/work/asymptote-1.33/Makefile.in 2007-07-30 02:27:31.000000000 +1000
++++ Makefile.in 2007-08-12 08:15:32.000000000 +1000
+@@ -49,7 +49,7 @@
+ datadir = $(DESTDIR)@datadir@
+ asydir = $(datadir)/asymptote
+ docdir = $(DESTDIR)@docdir@
+-exampledir = $(docdir)/examples
++exampledir = $(asydir)/examples
+ animationsdir = $(exampledir)/animations
+ latexdir = $(DESTDIR)@latexdir@
+ INSTALL = @INSTALL@
+@@ -127,11 +127,9 @@
+ doc/extra/*.asy doc/*.csv doc/*.dat doc/latexusage.tex $(exampledir)
+ ${INSTALL} -p -m 644 examples/animations/*.asy $(animationsdir)
+ -${INSTALL} -p -m 644 $(addprefix doc/,$(LATEXFILES)) $(latexdir)
+- -if test -z "$(DESTDIR)"; then \
+- texhash; \
+- fi
+
+-install-doc: html
++
++install-doc:
+ cd doc; $(MAKE) install-all
+
+ install-man: man
+--- ../media-gfx/asymptote-1.33/work/asymptote-1.33/doc/Makefile 2007-07-30 02:28:22.000000000 +1000
++++ doc/Makefile 2007-08-12 08:21:29.000000000 +1000
+@@ -16,12 +16,12 @@
+
+ html: asymptote/index.html
+
+-man: $(DOCFILES) asy.1
++man: $(MANFILES) asy.1
+
+ faq:
+ cd FAQ; $(MAKE) faq
+
+-doc: asymptote.dvi asymptote.info html man faq
++doc: $(DOCFILES) asymptote.info html man faq
+
+ %.png: %.asy
+ $(ASY) -f png $<
+@@ -84,15 +84,14 @@
+ rm -f CAD.{aux,dvi,log,pdf,toc}
+ rm -rf asymptote
+
+-install: man faq
+- cd FAQ; $(MAKE) install
+- ${INSTALL} -d -m 755 $(docdir) $(mandir)/man1
+- ${INSTALL} -p -m 644 $(DOCFILES) $(docdir)
+- ${INSTALL} -p -m 644 $(MANFILES) $(mandir)/man1
++install: man
++ ${INSTALL} -d -m 755 $(mandir)/man1
+
+-install-all: doc install
+- cd FAQ; $(MAKE) install-info
+- ${INSTALL} -d -m 755 $(infodir)
++install-all: doc faq install
++ cd FAQ; $(MAKE) install-all
++ ${INSTALL} -d -m 755 $(infodir) $(docdir)/html/asymptote
++ ${INSTALL} -p -m 644 $(DOCFILES) $(docdir)
++ ${INSTALL} -p -m 644 asymptote/* $(docdir)/html/asymptote
+ ${INSTALL} -p -m 644 asymptote.info $(infodir)
+ -${INSTALL} -p -m 644 asymptote.info-* $(infodir)
+ -if test -z "$(DESTDIR)"; then \
diff --git a/media-gfx/asymptote/files/digest-asymptote-1.36 b/media-gfx/asymptote/files/digest-asymptote-1.36
new file mode 100644
index 000000000000..3196f6641c45
--- /dev/null
+++ b/media-gfx/asymptote/files/digest-asymptote-1.36
@@ -0,0 +1,3 @@
+MD5 43b1ca519fe460f59278ffbc6a8962d0 asymptote-1.36.src.tgz 1015125
+RMD160 fb6f68e5015d0a89b1b9f5057645656d85a19e78 asymptote-1.36.src.tgz 1015125
+SHA256 c4ab5dd212274d6b0666c96df80f11250c97158488ec1d8e65b70eb152d9eb27 asymptote-1.36.src.tgz 1015125