diff options
author | gahr <gahr@FreeBSD.org> | 2008-07-09 23:38:06 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2008-07-09 23:38:06 +0800 |
commit | ead48c9913b069e44278598bfb047c27de58b12b (patch) | |
tree | b5a077d7b372b9aa10ba9640cb147353849924fc /print | |
parent | 5a9e3b1fa1e2fff91901b63df66f92a03addb317 (diff) | |
download | freebsd-ports-gnome-ead48c9913b069e44278598bfb047c27de58b12b.tar.gz freebsd-ports-gnome-ead48c9913b069e44278598bfb047c27de58b12b.tar.zst freebsd-ports-gnome-ead48c9913b069e44278598bfb047c27de58b12b.zip |
- Remove useless scripts
Diffstat (limited to 'print')
-rw-r--r-- | print/lilypond/scripts/post-configure | 14 | ||||
-rw-r--r-- | print/lilypond/scripts/post-patch | 20 |
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" |