ports/graphics/generic_image_decoder/files/patch-gid.gpr
John Marino 8a184b717c Add new Ada port: graphics/generic_image_decoder
The Generic Image Decoder (GID) is an Ada package for decoding a broad
variety on image formats from any data stream to any kind of medium.
Examples include in-memory bitmap, a GUI objecct, another stream, floating
point data for scientific calculations, a browser element or a device.
Animations are also supported.  GID features:

  * Standalone; requires no other libraries or bindings
  * Completely portable - no OS, CPU, or compiler dependencies
  * Task safe
  * Endian-neutral
  * Free and open source
  * Pure Ada95 (suitable for Ada2005 and Ada2012 projects)

Currently supports BMP, GIF, JPEG, PNG and TGA formats.

WWW: http://gen-img-dec.sourceforge.net/
2014-03-23 23:55:27 +00:00

11 lines
320 B
Text

--- gid.gpr.orig 2014-03-21 21:26:29.000000000 +0000
+++ gid.gpr
@@ -4,7 +4,7 @@
--
project GID is
- for Source_Dirs use (".", "test");
+ for Source_Dirs use ("src", "test");
for Exec_Dir use "test";
type Build_Mode_Type is
("Debug", "Fast_but_checked", "Fast", "Small", "Smallest", "Profiling");