diff options
author | John Marino <marino@FreeBSD.org> | 2014-02-16 22:01:00 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-02-16 22:01:00 +0000 |
commit | 256a421761ef717832d1bd13ae50f8aa339326a9 (patch) | |
tree | 610c63f437e9ab26bae7afa0b60cfa2607283ffb /math/plplot-ada/files/build_plplot.gpr | |
parent | Release cups-* nad foomatic-* ports. Currently I have no enough (diff) |
Add new port math/plplot-ada: Ada bindings to plplot library
Notes
Notes:
svn path=/head/; revision=344634
Diffstat (limited to 'math/plplot-ada/files/build_plplot.gpr')
-rw-r--r-- | math/plplot-ada/files/build_plplot.gpr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/math/plplot-ada/files/build_plplot.gpr b/math/plplot-ada/files/build_plplot.gpr new file mode 100644 index 000000000000..c347c14716b0 --- /dev/null +++ b/math/plplot-ada/files/build_plplot.gpr @@ -0,0 +1,15 @@ +project BUILD_PLPLOT is + + for Languages use ("Ada"); + + for Source_Dirs use ("ada"); + for Object_Dir use "ada/build"; + for Library_Dir use "ada/build/lib"; + for Library_Name use "plplotada"; + for Library_Kind use "static"; + + package compiler is + for switches ("Ada") use ("-O2", "-gnatn"); + end compiler; + +end BUILD_PLPLOT ; |