summaryrefslogtreecommitdiff
path: root/math/maxima/files
diff options
context:
space:
mode:
authorBrendan Fabeny <bf@FreeBSD.org>2012-04-23 09:34:03 +0000
committerBrendan Fabeny <bf@FreeBSD.org>2012-04-23 09:34:03 +0000
commit27a09a8dfbe3974d329da310d3a546d0e1ed4a7e (patch)
treede565bb9205789d6676472f732777a9199a45319 /math/maxima/files
parentupdate to 1.0.56 and adjust dependent ports; switch to the packaged (diff)
update math/maxima to 5.27.0, and adjust a dependent port
Notes
Notes: svn path=/head/; revision=295301
Diffstat (limited to 'math/maxima/files')
-rw-r--r--math/maxima/files/patch-doc__info__extract_categories.sh16
-rw-r--r--math/maxima/files/patch-doc__info__extract_categories1.sed15
2 files changed, 0 insertions, 31 deletions
diff --git a/math/maxima/files/patch-doc__info__extract_categories.sh b/math/maxima/files/patch-doc__info__extract_categories.sh
deleted file mode 100644
index 5083e06fb3b2..000000000000
--- a/math/maxima/files/patch-doc__info__extract_categories.sh
+++ /dev/null
@@ -1,16 +0,0 @@
---- doc/info/extract_categories.sh.orig 2011-08-01 00:39:51.000000000 -0400
-+++ doc/info/extract_categories.sh 2011-12-16 09:05:05.000000000 -0500
-@@ -17,9 +17,10 @@
- if [ $f = "maxima.texi" ]
- then echo SKIP OVER $f
- else
-- sed 's/^@def\(fn\|vr\) *{[^}]*} *\([^[:blank:]]*\).*/@anchor{Item: \2}\
--\0/; s/^@node *\([^,]*\).*/@anchor{Item: \1}\
--\0/' "$f" > tmp.texi
-+ sed 's/^@deffn *{[^}]*} *\([^[:blank:]]*\).*/@anchor{Item: \1}\
-+&/; s/^@defvr *{[^}]*} *\([^[:blank:]]*\).*/@anchor{Item: \1}\
-+&/; s/^@node *\([^,]*\).*/@anchor{Item: \1}\
-+&/' "$f" > tmp.texi
- mv tmp.texi "$f"
- fi
- done
diff --git a/math/maxima/files/patch-doc__info__extract_categories1.sed b/math/maxima/files/patch-doc__info__extract_categories1.sed
deleted file mode 100644
index 5eef7139239f..000000000000
--- a/math/maxima/files/patch-doc__info__extract_categories1.sed
+++ /dev/null
@@ -1,15 +0,0 @@
---- doc/info/extract_categories1.sed.orig 2011-08-01 00:39:51.000000000 -0400
-+++ doc/info/extract_categories1.sed 2011-12-16 08:12:32.000000000 -0500
-@@ -1,6 +1,9 @@
--s/^@def\(fn\|vr\) *{[^}]*} *\([^[:blank:]]*\).*/items = ["\2"]/
--s/^@def\(fn\|vr\)x *{[^}]*} *\([^[:blank:]]*\).*/if not "\2" in items: items.append ("\2")/
--s/^@end def\(fn\|vr\)/items = []/
-+s/^@deffn *{[^}]*} *\([^[:blank:]]*\).*/items = ["\1"]/
-+s/^@defvr *{[^}]*} *\([^[:blank:]]*\).*/items = ["\1"]/
-+s/^@deffnx *{[^}]*} *\([^[:blank:]]*\).*/if not "\1" in items: items.append ("\1")/
-+s/^@defvrx *{[^}]*} *\([^[:blank:]]*\).*/if not "\1" in items: items.append ("\1")/
-+s/^@end deffn/items = []/
-+s/^@end defvr/items = []/
- s/^@node *\([^,]*\).*/items = ["\1"] # extracted from node/
- s/@opencatbox//
- s/@closecatbox//