summaryrefslogtreecommitdiffstats
path: root/devel/glibmm/files/patch-docs::reference::beautify_docs.pl
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-19 13:35:06 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-19 13:35:06 +0800
commit716e853082f85512d878931d3c2903f4a669c7e8 (patch)
tree3a24d58f313f014bb8f3aca107a85ec50d2fb1df /devel/glibmm/files/patch-docs::reference::beautify_docs.pl
parentea6bb0f0996a0cf559b13cfa9aef24e8199d6a23 (diff)
downloadmarcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.gz
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.zst
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.zip
Remove these ports now that they have been committed to FreeBSD.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8576 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/glibmm/files/patch-docs::reference::beautify_docs.pl')
-rw-r--r--devel/glibmm/files/patch-docs::reference::beautify_docs.pl20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/glibmm/files/patch-docs::reference::beautify_docs.pl b/devel/glibmm/files/patch-docs::reference::beautify_docs.pl
deleted file mode 100644
index bbb320452..000000000
--- a/devel/glibmm/files/patch-docs::reference::beautify_docs.pl
+++ /dev/null
@@ -1,20 +0,0 @@
---- docs/reference/beautify_docs.pl.in.orig Thu Feb 12 02:52:02 2004
-+++ docs/reference/beautify_docs.pl.in Thu Feb 12 03:00:08 2004
-@@ -25,7 +25,7 @@
- my ($file) = @_;
- my @outbuf;
-
-- open(FILE, '<', $file);
-+ open(FILE, "<$file");
-
- while(<FILE>)
- {
-@@ -71,7 +71,7 @@
- push(@outbuf, $_);
- }
-
-- open(FILE, '>', $file);
-+ open(FILE, ">$file");
-
- # write the whole buffer back
- print FILE "$_" foreach(@outbuf);