summaryrefslogtreecommitdiff
path: root/math/plplot-ada/files
diff options
context:
space:
mode:
Diffstat (limited to 'math/plplot-ada/files')
-rw-r--r--math/plplot-ada/files/Makefile17
-rw-r--r--math/plplot-ada/files/build_plplot.gpr15
-rw-r--r--math/plplot-ada/files/plplot.gpr.in15
3 files changed, 0 insertions, 47 deletions
diff --git a/math/plplot-ada/files/Makefile b/math/plplot-ada/files/Makefile
deleted file mode 100644
index 3bdb4f98c091..000000000000
--- a/math/plplot-ada/files/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-all: build
-
-build:
- gnatmake -p -P build_plplot
-
-install:
- mkdir -p ${DESTDIR}${PREFIX}/lib/gnat \
- ${DESTDIR}${PREFIX}/lib/plplotada \
- ${DESTDIR}${PREFIX}/include/plplotada
- ${BSD_INSTALL_DATA} ada/build/lib/libplplotada.a \
- ${DESTDIR}${PREFIX}/lib/plplotada
- ${BSD_INSTALL_DATA} ada/build/lib/*.ali \
- ${DESTDIR}${PREFIX}/lib/plplotada
- ${BSD_INSTALL_DATA} plplot.gpr \
- ${DESTDIR}${PREFIX}/lib/gnat
- ${BSD_INSTALL_DATA} ada/*.ad[bs] \
- ${DESTDIR}${PREFIX}/include/plplotada
diff --git a/math/plplot-ada/files/build_plplot.gpr b/math/plplot-ada/files/build_plplot.gpr
deleted file mode 100644
index c347c14716b0..000000000000
--- a/math/plplot-ada/files/build_plplot.gpr
+++ /dev/null
@@ -1,15 +0,0 @@
-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 ;
diff --git a/math/plplot-ada/files/plplot.gpr.in b/math/plplot-ada/files/plplot.gpr.in
deleted file mode 100644
index a21c7947f14d..000000000000
--- a/math/plplot-ada/files/plplot.gpr.in
+++ /dev/null
@@ -1,15 +0,0 @@
-library project PLPLOT is
-
- for Languages use ("Ada");
-
- for Source_Dirs use ("../../include/plplotada");
- for Library_Dir use "../../lib/plplotada";
- for Library_Name use "plplotada";
- for Library_Kind use "static";
- for Externally_Built use "True";
-
- package Linker is
- for switches ("Ada") use ("-L@PREFIX@/lib", "-lplplotd");
- end Linker;
-
-end PLPLOT;