summaryrefslogtreecommitdiff
path: root/print/lilypond-devel/scripts/post-patch
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
committerKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
commit11ea174ccbc9cebd4134768e8fb92c6a3dc2c559 (patch)
tree1514ed7a486e108239615c1d83319d83bacdbc3d /print/lilypond-devel/scripts/post-patch
parentUpdate dependency to bash2 in preparation for removing bash1. (diff)
As previously announced, remove ports that have reached their expiry date,
and the handful of ports that depended on them.
Notes
Notes: svn path=/head/; revision=129234
Diffstat (limited to 'print/lilypond-devel/scripts/post-patch')
-rw-r--r--print/lilypond-devel/scripts/post-patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/print/lilypond-devel/scripts/post-patch b/print/lilypond-devel/scripts/post-patch
deleted file mode 100644
index aff5fb958c45..000000000000
--- a/print/lilypond-devel/scripts/post-patch
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-outdir=out
-cd ${WRKSRC} || exit 2
-echo "Patching for FlexLexer.h <->gcc3 issues"
-
-file=""
-candidates=`find /usr/include -name FlexLexer.h`
-#take first found file.
-for d in $candidates; do if [ -f $d ]; then file=$d; break; fi; done
-if [ -z "${file}" ]; then echo "Cannot find FlexLexer.h"; exit 2; fi
-
-echo -n "Copying and fixing $file... "
-mkdir -p lily/$outdir
-rm -f lily/$outdir/FlexLexer.h
-sed \
- -e 's/istream/std::istream/' \
- -e 's/[^i]ostream/std::ostream/' \
- -e 's/iostream.h/iostream/' \
- $file > lily/$outdir/FlexLexer.h
-echo "done"