diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-08-28 06:19:05 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-08-28 06:19:05 +0000 |
commit | 72384a63b529df0a9680c876f273225467365d6a (patch) | |
tree | dc7f70fb9ffeb4112e21f78f6d45481194acb28a /graphics/diacanvas2/files | |
parent | 549649379e3f4903a0f7ccc0043ac9a9435c010b (diff) | |
download | ports-72384a63b529df0a9680c876f273225467365d6a.tar.gz ports-72384a63b529df0a9680c876f273225467365d6a.zip |
Notes
Diffstat (limited to 'graphics/diacanvas2/files')
-rw-r--r-- | graphics/diacanvas2/files/patch-demos::dia-textbox.c | 11 | ||||
-rw-r--r-- | graphics/diacanvas2/files/patch-diacanvas::dia-export-print.c | 15 | ||||
-rw-r--r-- | graphics/diacanvas2/files/patch-ltmain.sh | 15 |
3 files changed, 26 insertions, 15 deletions
diff --git a/graphics/diacanvas2/files/patch-demos::dia-textbox.c b/graphics/diacanvas2/files/patch-demos::dia-textbox.c new file mode 100644 index 000000000000..e03ed74a61d7 --- /dev/null +++ b/graphics/diacanvas2/files/patch-demos::dia-textbox.c @@ -0,0 +1,11 @@ +--- demos/dia-textbox.c.orig Mon Oct 6 03:18:15 2003 ++++ demos/dia-textbox.c Sat Aug 28 00:07:51 2004 +@@ -140,7 +140,7 @@ + textbox->text = dia_canvas_item_create (DIA_TYPE_CANVAS_TEXT, NULL); + dia_canvas_item_set_child_of (textbox->text, DIA_CANVAS_ITEM (textbox)); + +- g_message (__FUNCTION__": %p %p %p %p %p", textbox, textbox->text, textbox->text->parent, DIA_CANVAS_ITEM (textbox)->canvas, textbox->text->canvas); ++ g_message ("%s: %p %p %p %p %p", __func__, textbox, textbox->text, textbox->text->parent, DIA_CANVAS_ITEM (textbox)->canvas, textbox->text->canvas); + } + + static void diff --git a/graphics/diacanvas2/files/patch-diacanvas::dia-export-print.c b/graphics/diacanvas2/files/patch-diacanvas::dia-export-print.c new file mode 100644 index 000000000000..89f5fb3a1670 --- /dev/null +++ b/graphics/diacanvas2/files/patch-diacanvas::dia-export-print.c @@ -0,0 +1,15 @@ +--- diacanvas/dia-export-print.c.orig Sat Aug 28 00:01:51 2004 ++++ diacanvas/dia-export-print.c Sat Aug 28 00:07:51 2004 +@@ -310,10 +310,10 @@ + print_image ((DiaShapeImage *)shape, context); + break; + case DIA_SHAPE_WIDGET: +- g_message (__FUNCTION__": Widget not yet implemented."); ++ g_message ("%s: Widget not yet implemented.", __func__); + break; + case DIA_SHAPE_CLIP: +- g_message (__FUNCTION__": Clip not yet implemented."); ++ g_message ("%s: Clip not yet implemented.", __func__); + break; + default: + g_message ("Shape with type %d is not (yet) implemented", shape->type); diff --git a/graphics/diacanvas2/files/patch-ltmain.sh b/graphics/diacanvas2/files/patch-ltmain.sh deleted file mode 100644 index b59517094f9c..000000000000 --- a/graphics/diacanvas2/files/patch-ltmain.sh +++ /dev/null @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Wed Oct 29 09:38:29 2003 -+++ ltmain.sh Wed Oct 29 09:38:41 2003 -@@ -4210,10 +4210,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false ; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |