summaryrefslogtreecommitdiff
path: root/textproc/xml_ez_out
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xml_ez_out')
-rw-r--r--textproc/xml_ez_out/Makefile58
-rw-r--r--textproc/xml_ez_out/distinfo2
-rw-r--r--textproc/xml_ez_out/files/example.gpr12
-rw-r--r--textproc/xml_ez_out/files/runme.sh.in17
-rw-r--r--textproc/xml_ez_out/files/xezo_bld.gpr14
-rw-r--r--textproc/xml_ez_out/files/xml_ez_out.gpr7
-rw-r--r--textproc/xml_ez_out/pkg-descr11
-rw-r--r--textproc/xml_ez_out/pkg-plist17
8 files changed, 0 insertions, 138 deletions
diff --git a/textproc/xml_ez_out/Makefile b/textproc/xml_ez_out/Makefile
deleted file mode 100644
index b7bd05a30bc1..000000000000
--- a/textproc/xml_ez_out/Makefile
+++ /dev/null
@@ -1,58 +0,0 @@
-# Created by: John Marino <marino@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= xml_ez_out
-PORTVERSION= 1.06
-PORTREVISION= 2
-CATEGORIES= textproc
-MASTER_SITES= http://www.mckae.com/xml_ezout/
-DISTNAME= ${PORTNAME}_${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Library for emitting XML from Ada programs
-
-LICENSE= GPLv2 GMGPL
-LICENSE_COMB= multi
-
-BROKEN= unfetchable
-DEPRECATED= Unfetchable, unmaintained
-EXPIRATION_DATE= 2019-10-16
-
-USES= ada dos2unix tar:tgz
-WRKSRC= ${WRKDIR}/xml_ez_out
-BUILD_WRKSRC= ${WRKSRC}/mckae
-PORTDOCS= README
-PORTEXAMPLES= example.gpr tmeztf.adb runme.sh
-
-OPTIONS_DEFINE= DOCS EXAMPLES
-
-post-extract:
- @${CP} ${FILESDIR}/xezo_bld.gpr ${WRKSRC}
- @${SED} -e "s,@PREFIX@,${LOCALBASE},g" ${FILESDIR}/runme.sh.in \
- > ${WRKSRC}/runme.sh
-
-do-build:
- (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gnatmake -p -Pxezo_bld)
-
-do-install:
- @${MKDIR} ${STAGEDIR}${PREFIX}/lib/gnat \
- ${STAGEDIR}${PREFIX}/lib/xml_ez_out \
- ${STAGEDIR}${PREFIX}/include/xml_ez_out
- ${INSTALL_DATA} ${FILESDIR}/xml_ez_out.gpr \
- ${STAGEDIR}${PREFIX}/lib/gnat
- ${INSTALL_DATA} ${BUILD_WRKSRC}/mckae* \
- ${STAGEDIR}${PREFIX}/include/xml_ez_out
- ${INSTALL_DATA} ${WRKSRC}/lib/* \
- ${STAGEDIR}${PREFIX}/lib/xml_ez_out
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${BUILD_WRKSRC}/README ${STAGEDIR}${DOCSDIR}
-
-do-install-EXAMPLES-on:
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_SCRIPT} ${WRKSRC}/runme.sh ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_DATA} ${BUILD_WRKSRC}/tmeztf.adb \
- ${FILESDIR}/example.gpr ${STAGEDIR}${EXAMPLESDIR}
-
-.include <bsd.port.mk>
diff --git a/textproc/xml_ez_out/distinfo b/textproc/xml_ez_out/distinfo
deleted file mode 100644
index c2229d0cb5ea..000000000000
--- a/textproc/xml_ez_out/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (xml_ez_out_1.06.tgz) = 2473caaddfdbd1e75a1b1e2e3b3b77c6641032a78f281af6bdbd229d26e49f61
-SIZE (xml_ez_out_1.06.tgz) = 12694
diff --git a/textproc/xml_ez_out/files/example.gpr b/textproc/xml_ez_out/files/example.gpr
deleted file mode 100644
index b68a07683b0b..000000000000
--- a/textproc/xml_ez_out/files/example.gpr
+++ /dev/null
@@ -1,12 +0,0 @@
-with "xml_ez_out";
-project Example is
-
- for Exec_Dir use "/tmp";
- for Object_Dir use "/tmp";
- for Main use ("tmeztf.adb");
-
- package Compiler is
- for Default_Switches ("ada") use ("-O2");
- end Compiler;
-
-end Example;
diff --git a/textproc/xml_ez_out/files/runme.sh.in b/textproc/xml_ez_out/files/runme.sh.in
deleted file mode 100644
index 4b81040f96ae..000000000000
--- a/textproc/xml_ez_out/files/runme.sh.in
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-# This script will:
-# 1) Build the example executable in /tmp
-# 2) Tell the user how to execute it
-
-GNATMAKE=@PREFIX@/gcc-aux/bin/gnatmake
-ADA_PROJECT_PATH=@PREFIX@/lib/gnat
-export ADA_PROJECT_PATH
-
-${GNATMAKE} -P example
-
-echo
-echo "The source for the example is tmeztf.adb"
-echo "The executable example is located in /tmp/tmeztf"
-echo "It requires no optons; just run it"
-echo 'You may want to execute "rm /tmp/tmeztf*" when you are done.'
diff --git a/textproc/xml_ez_out/files/xezo_bld.gpr b/textproc/xml_ez_out/files/xezo_bld.gpr
deleted file mode 100644
index a9a9c409cdd5..000000000000
--- a/textproc/xml_ez_out/files/xezo_bld.gpr
+++ /dev/null
@@ -1,14 +0,0 @@
-project XEZO_Bld is
-
- for Languages use ("ada");
- for Source_Dirs use ("mckae");
- for Object_Dir use "obj";
- for Library_Name use "xml_ez_out";
- for Library_Dir use "lib";
- for Library_Kind use "static";
-
- package Builder is
- for Default_Switches ("ada") use ("-gnatf", "-gnatws", "-O2");
- end Builder;
-
-end XEZO_Bld;
diff --git a/textproc/xml_ez_out/files/xml_ez_out.gpr b/textproc/xml_ez_out/files/xml_ez_out.gpr
deleted file mode 100644
index 800b178be503..000000000000
--- a/textproc/xml_ez_out/files/xml_ez_out.gpr
+++ /dev/null
@@ -1,7 +0,0 @@
-project XML_EZ_Out is
- for Languages use ("ada");
- for Source_Dirs use ("../../include/xml_ez_out");
- for Library_Name use "xml_ez_out";
- for Library_Dir use "../../lib/xml_ez_out";
- for Externally_Built use "true";
-end XML_EZ_Out;
diff --git a/textproc/xml_ez_out/pkg-descr b/textproc/xml_ez_out/pkg-descr
deleted file mode 100644
index bc28b7b5c914..000000000000
--- a/textproc/xml_ez_out/pkg-descr
+++ /dev/null
@@ -1,11 +0,0 @@
-XML EZ_Out is a small set of packages intended to aid the creation of
-XML-formatted output from within Ada programs. It basically wraps the
-tags and data provided to it with XML syntax and writes them to a
-user-supplied medium.
-
-This medium can be any sort of writable entity, such as a file, a
-memory buffer, or even a communications link, such as a socket. The
-only functionality required of the medium is that it supply a
-meaningful "Put" (for writing a string) and "New_Line" procedure.
-
-WWW: http://www.mckae.com/xmlEz.html
diff --git a/textproc/xml_ez_out/pkg-plist b/textproc/xml_ez_out/pkg-plist
deleted file mode 100644
index 62eb658ba5d8..000000000000
--- a/textproc/xml_ez_out/pkg-plist
+++ /dev/null
@@ -1,17 +0,0 @@
-include/xml_ez_out/mckae-xml-ez_out-generic_medium.adb
-include/xml_ez_out/mckae-xml-ez_out-generic_medium.ads
-include/xml_ez_out/mckae-xml-ez_out-string_stream.adb
-include/xml_ez_out/mckae-xml-ez_out-string_stream.ads
-include/xml_ez_out/mckae-xml-ez_out-text_file.ads
-include/xml_ez_out/mckae-xml-ez_out.ads
-include/xml_ez_out/mckae-xml.ads
-include/xml_ez_out/mckae.ads
-lib/gnat/xml_ez_out.gpr
-lib/xml_ez_out/libxml_ez_out.a
-lib/xml_ez_out/mckae-xml-ez_out-generic_medium.ali
-lib/xml_ez_out/mckae-xml-ez_out-string_stream.ali
-lib/xml_ez_out/mckae-xml-ez_out-text_file.ali
-lib/xml_ez_out/mckae-xml-ez_out.ali
-lib/xml_ez_out/mckae-xml.ali
-lib/xml_ez_out/mckae.ali
-lib/xml_ez_out/tmeztf.ali