diff options
author | thierry <thierry@FreeBSD.org> | 2004-05-30 01:52:41 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-05-30 01:52:41 +0800 |
commit | 3d1a25466e4a53cfcd702c45a08319f9d9dfba2e (patch) | |
tree | 5c8d5f55a085647e56120c871e440abe6b45cc88 /graphics/smoke/files | |
parent | 3c94611fc8bb464a2f79afbed04ed791bd2fd74c (diff) | |
download | freebsd-ports-gnome-3d1a25466e4a53cfcd702c45a08319f9d9dfba2e.tar.gz freebsd-ports-gnome-3d1a25466e4a53cfcd702c45a08319f9d9dfba2e.tar.zst freebsd-ports-gnome-3d1a25466e4a53cfcd702c45a08319f9d9dfba2e.zip |
Add smoke 0.5.1, vector graphics OpenGL renderer.
PR: 62411
Submitted by: Igor Pokrovsky <tiamat@comset.net>
Diffstat (limited to 'graphics/smoke/files')
-rw-r--r-- | graphics/smoke/files/patch-project | 11 | ||||
-rw-r--r-- | graphics/smoke/files/patch-src_main.cc | 11 | ||||
-rw-r--r-- | graphics/smoke/files/patch-src_store.h | 13 |
3 files changed, 35 insertions, 0 deletions
diff --git a/graphics/smoke/files/patch-project b/graphics/smoke/files/patch-project new file mode 100644 index 000000000000..0c43bc2d951f --- /dev/null +++ b/graphics/smoke/files/patch-project @@ -0,0 +1,11 @@ +--- project.orig Thu Feb 5 19:06:25 2004 ++++ project Thu Feb 5 19:08:56 2004 +@@ -2,6 +2,6 @@ + HEADERS = src/*.h + SOURCES = src/bound.cc src/caches.cc src/colour.cc src/editing.h src/fill_types.cc src/geometry.cc src/gldisplaylist.cc src/load.cc src/main.cc src/scene.cc src/segments.cc src/store.h src/stroke.cc src/tesselate.cc src/test.cc src/tree.cc src/vecmat.cc src/viewport.cc src/usec_timer.cc src/utility.cc + TARGET = smoke +-INCLUDEPATH = /usr/local/include ++INCLUDEPATH = %%FREETYPE_INCLUDEPATH%% %%SDL_INCLUDEPATH%% + DEFINES = _REENTRANT +-LIBS = `freetype-config --libs` -lSDL -lpthread -lXxf86dga -lXxf86vm -lXv ++LIBS = `%%FREETYPE_CONFIG%% --libs` `%%SDL_CONFIG%% --libs` %%PTHREAD_LIBS%% -lXxf86dga -lXxf86vm -lXv diff --git a/graphics/smoke/files/patch-src_main.cc b/graphics/smoke/files/patch-src_main.cc new file mode 100644 index 000000000000..5ce5bcf15bca --- /dev/null +++ b/graphics/smoke/files/patch-src_main.cc @@ -0,0 +1,11 @@ +--- src/main.cc.orig Thu Feb 5 20:36:50 2004 ++++ src/main.cc Thu Feb 5 20:36:58 2004 +@@ -36,7 +36,7 @@ + #include <string> + #include <GL/gl.h> + #include <GL/glu.h> +-#include <SDL/SDL.h> ++#include <SDL.h> + + using namespace std; // Lots of IO + diff --git a/graphics/smoke/files/patch-src_store.h b/graphics/smoke/files/patch-src_store.h new file mode 100644 index 000000000000..514692e05f61 --- /dev/null +++ b/graphics/smoke/files/patch-src_store.h @@ -0,0 +1,13 @@ +--- src/store.h.orig Sat May 17 15:34:24 2003 ++++ src/store.h Mon May 24 22:08:54 2004 +@@ -32,8 +32,8 @@ + + #include <string> + #include <map> +-#include <freetype/freetype.h> +- ++#include <ft2build.h> ++#include FT_FREETYPE_H + + + class Store |