mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 12:26:27 -04:00
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/
11 lines
320 B
Text
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");
|