diff options
author | Rene Ladan <rene@FreeBSD.org> | 2022-02-28 22:16:01 +0100 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2022-02-28 22:34:25 +0100 |
commit | 8e2a89b541867f9b43bfefc59a9af5245cdb4c2c (patch) | |
tree | 6683a6255be5b39bf367ccb345a5f20f52cdd32c /math/plplot-ada/files | |
parent | www/element-web: Update to 1.10.5 (diff) |
cleanup: Remove ports depending on expired lang/gcc6-aux
Keep ports-mgmt/synth and dependencies (including lang/gcc6-aux itself)
for now as synth is the only Ada port still maintained and might be
somewhat high-profile.
Removed ports:
archivers/zip-ada
cad/ghdl
databases/adabase
databases/apq
databases/apq-mysql
databases/apq-odbc
databases/apq-pgsql
devel/ada-util
devel/adabooch
devel/adaid
devel/ahven
devel/alog
devel/aunit
devel/florist-gpl
devel/gprbuild
devel/libspark2012
devel/matreshka
devel/pcsc-ada
devel/pragmarcs
devel/sdl_gnat
dns/ironsides
graphics/generic_image_decoder
lang/adacontrol
lang/asis
lang/gnat_util
lang/lua-ada
math/plplot-ada
misc/excel-writer
net/adasockets
net/anet
security/libadacrypt
textproc/adabrowse
textproc/templates_parser
textproc/words
textproc/xmlada
x11-toolkits/gtkada
x11-toolkits/gtkada3
Diffstat (limited to 'math/plplot-ada/files')
-rw-r--r-- | math/plplot-ada/files/Makefile | 17 | ||||
-rw-r--r-- | math/plplot-ada/files/build_plplot.gpr | 15 | ||||
-rw-r--r-- | math/plplot-ada/files/plplot.gpr.in | 15 |
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; |