diff options
author | acm <acm@FreeBSD.org> | 2006-09-03 22:32:53 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2006-09-03 22:32:53 +0800 |
commit | 30eedb7f0beef33388e9a9a4a89e25724213c6fc (patch) | |
tree | 8284860b8a7bd7200a1beb136b50cfda2c3785b9 /graphics/amanith/files | |
parent | d772ce71afbb19e7557b3ea4fe7dc75c46f9c3bf (diff) | |
download | freebsd-ports-gnome-30eedb7f0beef33388e9a9a4a89e25724213c6fc.tar.gz freebsd-ports-gnome-30eedb7f0beef33388e9a9a4a89e25724213c6fc.tar.zst freebsd-ports-gnome-30eedb7f0beef33388e9a9a4a89e25724213c6fc.zip |
- New port: graphics/amanith
Amanith is an OpenSource C++ CrossPlatform framework designed for 2d & 3d
vector graphics.
Open source has made Amanith possible, so we wanna Amanith to be open source
too. This mean that Amanith source code is fully available for everyone.
Same source tree can be compiled without modifications under multiple targets.
Linux, Win32, Mac, FreeBSD, NetBSD, OpenBSD, Solaris, IRIX, AIX are only few
of them.
All the framework is heavily based on a light plug-in system.
This make fast and easy to include or esclude everything you want.
The Amanith philosophy is to support many open standards as possible.
Png, Jpeg, Svg, Xml, OpenGl, Ansi c++, and many others.
WWW: http://www.amanith.org/
Approved by: garga (mentor)
Diffstat (limited to 'graphics/amanith/files')
-rw-r--r-- | graphics/amanith/files/patch-plugins-fonts_build.conf | 11 | ||||
-rw-r--r-- | graphics/amanith/files/patch-plugins-jpeg_build.conf | 11 | ||||
-rw-r--r-- | graphics/amanith/files/patch-plugins-png_build.conf | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/graphics/amanith/files/patch-plugins-fonts_build.conf b/graphics/amanith/files/patch-plugins-fonts_build.conf new file mode 100644 index 000000000000..d41e547e433e --- /dev/null +++ b/graphics/amanith/files/patch-plugins-fonts_build.conf @@ -0,0 +1,11 @@ +--- plugins/fonts/build.conf Fri Sep 1 21:11:18 2006 ++++ plugins/fonts/build.conf Fri Sep 1 21:14:46 2006 +@@ -40,7 +40,7 @@ + + INCLUDEPATH += $$(AMANITHDIR)/3rdpart/freetype2/include + +-unix: LIBS += $$(AMANITHDIR)/lib/libfreetype2.a $$(AMANITHDIR)/lib/libzlib.a ++unix: LIBS += $(LOCALBASE)/lib/libfreetype.so /usr/lib/libz.so + win32: { + + !contains(DEFINES, WIN32_MINGW) { diff --git a/graphics/amanith/files/patch-plugins-jpeg_build.conf b/graphics/amanith/files/patch-plugins-jpeg_build.conf new file mode 100644 index 000000000000..28f35851c0f2 --- /dev/null +++ b/graphics/amanith/files/patch-plugins-jpeg_build.conf @@ -0,0 +1,11 @@ +--- plugins/jpeg/build.conf Fri Sep 1 21:12:42 2006 ++++ plugins/jpeg/build.conf Fri Sep 1 21:13:02 2006 +@@ -25,7 +25,7 @@ + } + } + +-unix: LIBS += $$(AMANITHDIR)/lib/libjpeg.a ++unix: LIBS += $(LOCALBASE)/lib/libjpeg.so + win32: { + + !contains(DEFINES, WIN32_MINGW) { diff --git a/graphics/amanith/files/patch-plugins-png_build.conf b/graphics/amanith/files/patch-plugins-png_build.conf new file mode 100644 index 000000000000..6ba31d09df9f --- /dev/null +++ b/graphics/amanith/files/patch-plugins-png_build.conf @@ -0,0 +1,11 @@ +--- plugins/png/build.conf Fri Sep 1 21:13:28 2006 ++++ plugins/png/build.conf Fri Sep 1 21:14:18 2006 +@@ -27,7 +27,7 @@ + + INCLUDEPATH += $$(AMANITHDIR)/3rdpart/zlib + +-unix: LIBS += $$(AMANITHDIR)/lib/libpng.a $$(AMANITHDIR)/lib/libzlib.a ++unix: LIBS += $(LOCALBASE)/lib/libpng.so /usr/lib/libz.so + win32: { + + !contains(DEFINES, WIN32_MINGW) { |