aboutsummaryrefslogtreecommitdiff
path: root/graphics/pencil/files
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-04-30 10:03:40 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-04-30 10:03:40 +0000
commit13a2874db928565871d62c00cb4189df14b6f56c (patch)
tree359f2abec4f88915871f9d81cfb2b88b33d9ec06 /graphics/pencil/files
parentbca380651e0116fcfaaae83f18412fb4c0ca5ad8 (diff)
downloadports-13a2874db928565871d62c00cb4189df14b6f56c.tar.gz
ports-13a2874db928565871d62c00cb4189df14b6f56c.zip
Pencil is an animation/drawing software. It lets you
create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. WWW: http://www.les-stooges.org/pascal/pencil PR: ports/122827 Submitted by: Ganael Laplanche <ganael.laplanche at martymac.com>
Notes
Notes: svn path=/head/; revision=212339
Diffstat (limited to 'graphics/pencil/files')
-rw-r--r--graphics/pencil/files/patch-pencil.pro12
-rw-r--r--graphics/pencil/files/src-external-freebsd-freebsd.cpp26
2 files changed, 38 insertions, 0 deletions
diff --git a/graphics/pencil/files/patch-pencil.pro b/graphics/pencil/files/patch-pencil.pro
new file mode 100644
index 000000000000..cf65c1069cbe
--- /dev/null
+++ b/graphics/pencil/files/patch-pencil.pro
@@ -0,0 +1,12 @@
+--- pencil.pro.orig 2008-04-16 14:23:57.000000000 +0000
++++ pencil.pro 2008-04-16 14:19:45.000000000 +0000
+@@ -86,5 +86,9 @@
+ SOURCES += src/external/linux/linux.cpp
+ LIBS += -Lliblinux -lming -lpng
+ }
++freebsd-g++ {
++ SOURCES += src/external/freebsd/freebsd.cpp
++ LIBS += -lming -lpng
++}
+ RESOURCES += pencil.qrc
+ QT += xml opengl
diff --git a/graphics/pencil/files/src-external-freebsd-freebsd.cpp b/graphics/pencil/files/src-external-freebsd-freebsd.cpp
new file mode 100644
index 000000000000..64bc068fc5d9
--- /dev/null
+++ b/graphics/pencil/files/src-external-freebsd-freebsd.cpp
@@ -0,0 +1,26 @@
+/*
+
+Pencil - Traditional Animation Software
+Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation;
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+*/
+#include "object.h"
+
+void initialise() {
+ // nothing, for now
+}
+
+void Object::exportMovie(int startFrame, int endFrame, QMatrix view, Layer* currentLayer, QSize exportSize, QString filePath, int fps) {
+ QMessageBox assembling("Export",tr("Not supported yet on this platform..."),QMessageBox::Information,0,0,0);
+ assembling.show();
+ // nothing
+}