aboutsummaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2008-07-09 15:38:06 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2008-07-09 15:38:06 +0000
commite1e8ce361549bb8dd9ba969cdad9489db948bacd (patch)
tree2f02296cb046390aa1fcdd17a8e79507c3802027 /print
parente72d74d65e1720ee25688d4b510bb4be08e01703 (diff)
downloadports-e1e8ce361549bb8dd9ba969cdad9489db948bacd.tar.gz
ports-e1e8ce361549bb8dd9ba969cdad9489db948bacd.zip
- Remove useless scripts
Notes
Notes: svn path=/head/; revision=216612
Diffstat (limited to 'print')
-rw-r--r--print/lilypond/scripts/post-configure14
-rw-r--r--print/lilypond/scripts/post-patch20
2 files changed, 0 insertions, 34 deletions
diff --git a/print/lilypond/scripts/post-configure b/print/lilypond/scripts/post-configure
deleted file mode 100644
index 32ff6afe2fcf..000000000000
--- a/print/lilypond/scripts/post-configure
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-outdir=out
-cd ${WRKSRC} || exit 2
- file=lily/$outdir/lexer.cc
- echo -n "Generating and fixing $file... "
- rm -f $file
- gmake conf=$CONF -C lily $outdir/lexer.cc || true
-
- mv $file $file.orig
- sed -e 's/[^:]istream\*/std::istream*/g' \
- -e 's/[^:]ostream\*/std::ostream*/g' \
- -e 's/class istream;/#include \<iostream\>/g' \
- $file.orig > $file
- echo "done"
diff --git a/print/lilypond/scripts/post-patch b/print/lilypond/scripts/post-patch
deleted file mode 100644
index 9b09186e2d60..000000000000
--- a/print/lilypond/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"