summaryrefslogtreecommitdiff
path: root/devel/asis-gpl/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/asis-gpl/files')
-rw-r--r--devel/asis-gpl/files/Makefile.bsd22
-rw-r--r--devel/asis-gpl/files/patch-aa12
-rw-r--r--devel/asis-gpl/files/patch-ab27
3 files changed, 0 insertions, 61 deletions
diff --git a/devel/asis-gpl/files/Makefile.bsd b/devel/asis-gpl/files/Makefile.bsd
deleted file mode 100644
index 0bd162f77ff4..000000000000
--- a/devel/asis-gpl/files/Makefile.bsd
+++ /dev/null
@@ -1,22 +0,0 @@
-ASISPROGFLAGS=-I../../asis -I../../gnat -I../../obj -largs -L../.. -lasis-${PORTVERSION}
-
-all:
- ${GMAKE} -C obj clean bld-objs CFLAGS="${CFLAGS} -fPIC" CC=adagcc RM="rm -f"
- adagcc -shared -Wl,-soname,libasis-${PORTVERSION}.so.1 \
- -o libasis-${PORTVERSION}.so.1 obj/*.o -lc
- ${LN} -sf libasis-${PORTVERSION}.so.1 libasis-${PORTVERSION}.so
- ${GMAKE} -C obj clean libasis.a CFLAGS="${CFLAGS}" CC=adagcc
- chmod a-w obj/*.ali
- cd asistant && \
- gnatmake ${CFLAGS} -o ../asistant.prg asistant-driver -I../asis -I../gnat -I../obj -largs -L.. -lasis-${PORTVERSION}
- cd examples/ds && \
- gnatmake ${CFLAGS} -o ../../display_source display_source ${ASISPROGFLAGS}
- cd examples/gnatelim && \
- gnatmake ${CFLAGS} -o ../../gnatelim gnatelim-driver ${ASISPROGFLAGS}
- cd examples/gnatstub && \
- gnatmake ${CFLAGS} -o ../../gnatstub gnatstub-driver ${ASISPROGFLAGS}
-
-clean:
- ${GMAKE} clean
- rm -f asistant.prg display_source gnatelim gnatstub libasis*.so.*
- rm -f libasis*.so
diff --git a/devel/asis-gpl/files/patch-aa b/devel/asis-gpl/files/patch-aa
deleted file mode 100644
index 55cc39c424f5..000000000000
--- a/devel/asis-gpl/files/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
-#PATCHOPTIONS: -p0
---- asis/a4g-gnat_int.ads.orig Wed Oct 27 15:06:50 1999
-+++ asis/a4g-gnat_int.ads Wed Oct 27 15:06:57 1999
-@@ -67,7 +67,7 @@
- -- Compiler Variables & Routines --
- -----------------------------------
-
-- Gcc : constant String := "gcc";
-+ Gcc : constant String := "adagcc";
-
- Nul_Argument_List : constant Argument_List (1 .. 0) := (others => null);
-
diff --git a/devel/asis-gpl/files/patch-ab b/devel/asis-gpl/files/patch-ab
deleted file mode 100644
index 294bc08c8226..000000000000
--- a/devel/asis-gpl/files/patch-ab
+++ /dev/null
@@ -1,27 +0,0 @@
-#PATCHOPTIONS: -p0
---- examples/ds/display_source.adb.dist Wed Sep 1 17:16:01 1999
-+++ examples/ds/display_source.adb Fri May 26 19:02:05 2000
-@@ -311,7 +311,7 @@
- Asis.Ada_Environments.Dissociate ( The_DS_Context );
- Asis.Implementation.Finalize ("");
-
-- -- let's delete the *.at? and *.ali files
-+ -- let's delete the *.adt and *.ali files
- declare
- To_Erase : String := Ada.Command_Line.Argument (Command_File) ;
- File : File_Type ;
-@@ -320,12 +320,12 @@
- To_Erase (To_Erase'Last - 3 .. To_Erase'Last - 1 ) = ".AD"
- then
- -- tree file
-- To_Erase ( To_Erase'Last - 1 ) := 't' ;
-+ To_Erase ( To_Erase'Last ) := 't' ;
- Open ( File , Out_File , To_Erase ) ;
- Delete ( File ) ;
-
- -- ali file
-- To_Erase (To_Erase'Last -2 .. To_Erase'Last) := "ali";
-+ To_Erase (To_Erase'Last - 2 .. To_Erase'Last) := "ali";
- Open ( File , Out_File , To_Erase ) ;
- Delete ( File ) ;
-