git: 6394edf1f973 - main - cad/NASTRAN-95: Remove expired port:

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Mon, 20 Mar 2023 00:05:40 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6394edf1f9732ae237e2dcf59622e9624c32006e

commit 6394edf1f9732ae237e2dcf59622e9624c32006e
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-03-19 22:58:23 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-03-19 23:51:42 +0000

    cad/NASTRAN-95: Remove expired port:
    
    2023-03-20 cad/NASTRAN-95: Broken since 2020
---
 MOVED                                      |   1 +
 cad/Makefile                               |   1 -
 cad/NASTRAN-95/Makefile                    |  72 ------
 cad/NASTRAN-95/distinfo                    |   3 -
 cad/NASTRAN-95/files/NASTRAN95-license.txt | 103 --------
 cad/NASTRAN-95/files/patch-bin_nastran     |  10 -
 cad/NASTRAN-95/files/patch-src_Makefile    |  11 -
 cad/NASTRAN-95/files/patch-um_Makefile     |  11 -
 cad/NASTRAN-95/pkg-descr                   |  13 -
 cad/NASTRAN-95/pkg-plist                   | 399 -----------------------------
 10 files changed, 1 insertion(+), 623 deletions(-)

diff --git a/MOVED b/MOVED
index 6289be63c7fa..0de693f30d6c 100644
--- a/MOVED
+++ b/MOVED
@@ -17797,3 +17797,4 @@ multimedia/libquicktime||2023-03-18|Abandoned upstream and fails to build with n
 devel/p5-Net-ZooKeeper||2023-03-19|Has expired: Broken since 2020
 devel/libhyve-remote||2023-03-19|Has expired: Broken since 2020
 chinese/brise||2023-03-19|Has expired: Broken since 2020
+cad/NASTRAN-95||2023-03-19|Has expired: Broken since 2020
diff --git a/cad/Makefile b/cad/Makefile
index 1051d7e7c5d6..48be6f53129f 100644
--- a/cad/Makefile
+++ b/cad/Makefile
@@ -1,6 +1,5 @@
     COMMENT = CAD tools
 
-    SUBDIR += NASTRAN-95
     SUBDIR += PrusaSlicer
     SUBDIR += abc
     SUBDIR += admesh
diff --git a/cad/NASTRAN-95/Makefile b/cad/NASTRAN-95/Makefile
deleted file mode 100644
index 731328ffb431..000000000000
--- a/cad/NASTRAN-95/Makefile
+++ /dev/null
@@ -1,72 +0,0 @@
-PORTNAME=	NASTRAN-95
-PORTVERSION=	20160908
-PORTREVISION=	6
-CATEGORIES=	cad science
-
-MAINTAINER=	pfg@FreeBSD.org
-COMMENT=	NASA Structural Analysis System
-WWW=		https://github.com/nasa/NASTRAN-95
-
-LICENSE=	NOSA
-LICENSE_NAME=	NASA OPEN SOURCE AGREEMENT VERSION 1.3
-LICENSE_FILE=	${FILESDIR}/NASTRAN95-license.txt
-LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
-
-BROKEN=		Produces bogus files on newer versions of GCC fortran
-DEPRECATED=	Broken since 2020
-EXPIRATION_DATE=	2023-03-20
-
-USES=		fortran gmake dos2unix
-
-USE_GITHUB=	yes
-GH_ACCOUNT=	twuerfl
-GH_TAGNAME=	a73c57a
-
-ALL_TARGET=	# empty
-INSTALL_TARGET=	install-strip
-
-NASTHOME=	${PREFIX}/libexec/${PORTNAME}
-PLIST_SUB=	NASTHOME=${NASTHOME}
-
-OPTIONS_DEFINE=	DOCS EXAMPLES
-
-.include <bsd.port.options.mk>
-
-.if ${FORTRAN_DEFAULT} == gfortran && ${GCC_DEFAULT} >= 10
-FFLAGS+=	-fallow-invalid-boz
-.endif
-
-pre-build:
-	@${REINPLACE_CMD} -e 's+%%FC%%+${FC}+g ; s+%%FFLAGS%%+${FFLAGS}+g;' \
-		${WRKSRC}/src/Makefile \
-		${WRKSRC}/um/Makefile
-# Version string limited to 7 characters
-	@${REINPLACE_CMD} -e 's+LINUX  +FREEBSD+g;' \
-		${WRKSRC}/src/btstrp.f
-
-do-build:
-	@(cd ${WRKSRC}/src; ${MAKE_CMD} ${ALL_TARGET})
-	@(cd ${WRKSRC}/um; ${MAKE_CMD} ${ALL_TARGET})
-	@(cd ${WRKSRC}/utility; ${FC} -o chkfil.exe ${FFLAGS} chkfil.f ${LDFLAGS})
-
-do-install:
-	@${REINPLACE_CMD} -e 's+%%NASTHOME%%+${NASTHOME}+g' \
-		${WRKSRC}/bin/nastran
-	${INSTALL_SCRIPT} ${WRKSRC}/bin/nastran ${STAGEDIR}${PREFIX}/bin/
-	@${MKDIR} ${STAGEDIR}${NASTHOME}/bin
-	${INSTALL} ${WRKSRC}/src/nastran.exe ${STAGEDIR}${NASTHOME}/bin/nastrn.exe
-	${INSTALL} ${WRKSRC}/utility/chkfil.exe ${STAGEDIR}${NASTHOME}/bin/
-	(cd ${WRKSRC} && ${COPYTREE_SHARE} "rf" ${STAGEDIR}${NASTHOME})
-	@${MKDIR} ${STAGEDIR}${NASTHOME}/um/
-	${INSTALL} ${WRKSRC}/um/nasthelp.exe ${STAGEDIR}${NASTHOME}/um/
-	${INSTALL_DATA} ${WRKSRC}/um/*.TXT ${STAGEDIR}${NASTHOME}/um/
-
-do-install-DOCS-on:
-	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/doc/*.pdf	${STAGEDIR}${DOCSDIR}
-
-do-install-EXAMPLES-on:
-	(cd ${WRKSRC} && ${COPYTREE_SHARE} "demoout inp test" ${STAGEDIR}${EXAMPLESDIR})
-
-.include <bsd.port.mk>
diff --git a/cad/NASTRAN-95/distinfo b/cad/NASTRAN-95/distinfo
deleted file mode 100644
index 0a1038f5ddd1..000000000000
--- a/cad/NASTRAN-95/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1502791592
-SHA256 (twuerfl-NASTRAN-95-20160908-a73c57a_GH0.tar.gz) = 2a05a340c1a043b6a88859da3db7d89d0d8328ce0ca7236b4a0b7206a003c75e
-SIZE (twuerfl-NASTRAN-95-20160908-a73c57a_GH0.tar.gz) = 137502681
diff --git a/cad/NASTRAN-95/files/NASTRAN95-license.txt b/cad/NASTRAN-95/files/NASTRAN95-license.txt
deleted file mode 100644
index 0d16df7965ed..000000000000
--- a/cad/NASTRAN-95/files/NASTRAN95-license.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-NASA OPEN SOURCE AGREEMENT VERSION 1.3
-
-THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY").  THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE.  ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. 
-
-Government Agency: National Aeronautics and Space Administration  
-Government Agency Original Software Designation: LAR-16804-GS
-Government Agency Original Software Title: NASTRAN
-Government Agency Point of Contact for Original Software: b.lumanog@nasa.gov
-
-1. DEFINITIONS
-
-A. "Contributor" means Government Agency, as the developer of the Original Software, and any entity that makes a Modification.
-B. "Covered Patents" mean patent claims licensable by a Contributor that are necessarily infringed by the use or sale of its Modification alone or when combined with the Subject Software.
-C.  "Display" means the showing of a copy of the Subject Software, either directly or by means of an image, or any other device.
-D. "Distribution" means conveyance or transfer of the Subject Software, regardless of means, to another.
-E.  "Larger Work" means computer software that combines Subject Software, or portions thereof, with software separate from the Subject Software that is not governed by the terms of this Agreement.
-F.  "Modification" means any alteration of, including addition to or deletion from, the substance or structure of either the Original Software or Subject Software, and includes derivative works, as that term is defined in the Copyright Statute, 17 USC 101.  However, the act of including Subject Software as part of a Larger Work does not in and of itself constitute a Modification.
-G. "Original Software" means the computer software first released under this Agreement by Government Agency with Government Agency designation LAR-16804-GS and entitled NASTRAN, including source code, object code and accompanying documentation, if any.
-H. "Recipient" means anyone who acquires the Subject Software under this Agreement, including all Contributors.
-I. "Redistribution" means Distribution of the Subject Software after a Modification has been made.
-J. "Reproduction" means the making of a counterpart, image or copy of the Subject Software.
-K. "Sale" means the exchange of the Subject Software for money or equivalent value.
-L. "Subject Software" means the Original Software, Modifications, or any respective parts thereof.
-M. "Use" means the application or employment of the Subject Software for any purpose.
-
-2. GRANT OF RIGHTS
-
-A. Under Non-Patent Rights:  Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software:
-
-1. Use
-2. Distribution
-3. Reproduction
-4. Modification
-5. Redistribution
-6. Display
-
-B. Under Patent Rights:  Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient under Covered Patents a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software:
-
-1. Use
-2. Distribution
-3. Reproduction
-4. Sale
-5. Offer for Sale
-
-C. The rights granted under Paragraph B. also apply to the combination of a Contributor's Modification and the Subject Software if, at the time the Modification is added by the Contributor, the addition of such Modification causes the combination to be covered by the Covered Patents.  It does not apply to any other combinations that include a Modification.
-
-D. The rights granted in Paragraphs A. and B. allow the Recipient to sublicense those same rights.  Such sublicense must be under the same terms and conditions of this Agreement.
-
-
-3. OBLIGATIONS OF RECIPIENT
-
-A. Distribution or Redistribution of the Subject Software must be made under this Agreement except for additions covered under paragraph 3H.
-
-1. Whenever a Recipient distributes or redistributes the Subject Software, a copy of this Agreement must be included with each copy of the Subject Software; and
-2. If Recipient distributes or redistributes the Subject Software in any form other than source code, Recipient must also make the source code freely available, and must provide with each copy of the Subject Software information on how to obtain the source code in a reasonable manner on or through a medium customarily used for software exchange.
-
-B. Each Recipient must ensure that the following copyright notice appears prominently in the Subject Software:
-
-This software may be used, reproduced, and provided to others only as permitted under the terms of the agreement under which it was acquired from the U.S. Government. Neither title to, nor ownership of, the software is hereby transferred. This notice shall remain on all copies of the software.
-
-C. Each Contributor must characterize its alteration of the Subject Software as a Modification and must identify itself as the originator of its Modification in a manner that reasonably allows subsequent Recipients to identify the originator of the Modification.  In fulfillment of these requirements, Contributor must include a file (e.g., a change log file) that describes the alterations made and the date of the alterations, identifies Contributor as originator of the alterations, and consents to characterization of the alterations as a Modification, for example, by including a statement that the Modification is derived, directly or indirectly, from Original Software provided by Government Agency. Once consent is granted, it may not thereafter be revoked.
-
-D. A Contributor may add its own copyright notice to the Subject Software.  Once a copyright notice has been added to the Subject Software, a Recipient may not remove it without the express permission of the Contributor who added the notice.
-
-E. A Recipient may not make any representation in the Subject Software or in any promotional, advertising or other material that may be construed as an endorsement by Government Agency or by any prior Recipient of any product or service provided by Recipient, or that may seek to obtain commercial advantage by the fact of Government Agency's or a prior Recipient's participation in this Agreement.  
-
-F. In an effort to track usage and maintain accurate records of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested to provide Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., the following information: First and Last Name; Email Address; and Affiliation.  Recipient's name and personal information shall be used for statistical purposes only. Once a Recipient makes a Modification available, it is requested that the Recipient inform Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., how to access the Modification.
-
-G. Each Contributor represents that that its Modification is believed to be Contributor's original creation and does not violate any existing agreements, regulations, statutes or rules, and further that Contributor has sufficient rights to grant the rights conveyed by this Agreement.
-
-H. A Recipient may choose to offer, and to charge a fee for, warranty, support, indemnity and/or liability obligations to one or more other Recipients of the Subject Software.  A Recipient may do so, however, only on its own behalf and not on behalf of Government Agency or any other Recipient.  Such a Recipient must make it absolutely clear that any such warranty, support, indemnity and/or liability obligation is offered by that Recipient alone.  Further, such Recipient agrees to indemnify Government Agency and every other Recipient for any liability incurred by them as a result of warranty, support, indemnity and/or liability offered by such Recipient.
-
-I. A Recipient may create a Larger Work by combining Subject Software with separate software not governed by the terms of this agreement and distribute the Larger Work as a single product. In such case, the Recipient must make sure Subject Software, or portions thereof, included in the Larger Work is subject to this Agreement.
-
-J. Notwithstanding any provisions contained herein, Recipient is hereby put on notice that export of any goods or technical data from the United States may require some form of export license from the U.S. Government.  Failure to obtain necessary export licenses may result in criminal liability under U.S. laws.  Government Agency neither represents that a license shall not be required nor that, if required, it shall be issued.  Nothing granted herein provides any such export license. 
-
-4. DISCLAIMER OF WARRANTIES AND LIABILITIES; WAIVER AND INDEMNIFICATION
-
-A. No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE.  FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS."
-
-B. Waiver and Indemnity:  RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT.  IF RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW.  RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT.
-
-5. GENERAL TERMS
-
-A. Termination:  This Agreement and the rights granted hereunder will terminate automatically if a Recipient fails to comply with these terms and conditions, and fails to cure such noncompliance within thirty (30) days of becoming aware of such noncompliance.  Upon termination, a Recipient agrees to immediately cease use and distribution of the Subject Software.  All sublicenses to the Subject Software properly granted by the breaching Recipient shall survive any such termination of this Agreement.
-
-B. Severability:  If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement.  
-
-C. Applicable Law:  This Agreement shall be subject to United States federal law only for all purposes, including, but not limited to, determining the validity of this Agreement, the meaning of its provisions and the rights, obligations and remedies of the parties.
-
-D. Entire Understanding:  This Agreement constitutes the entire understanding and agreement of the parties relating to release of the Subject Software and may not be superseded, modified or amended except by further written agreement duly executed by the parties.
-
-E. Binding Authority:  By accepting and using the Subject Software under this Agreement, a Recipient affirms its authority to bind the Recipient to all terms and conditions of this Agreement and that that Recipient hereby agrees to all terms and conditions herein.
-
-F. Point of Contact:  Any Recipient contact with Government Agency is to be directed to the designated representative as follows: 
-
-Barbara "Bonnie" Lumanog
-Software Release Authority
-MS 158, NASA Langley Research Center
-Hampton, VA 23681
-Fax: 757-864-6500
-Phone: 757-864-2933
-Email: b.lumanog@nasa.gov
diff --git a/cad/NASTRAN-95/files/patch-bin_nastran b/cad/NASTRAN-95/files/patch-bin_nastran
deleted file mode 100644
index 524da6013565..000000000000
--- a/cad/NASTRAN-95/files/patch-bin_nastran
+++ /dev/null
@@ -1,10 +0,0 @@
---- bin/nastran.orig	2016-09-08 21:25:12 UTC
-+++ bin/nastran
-@@ -1,6 +1,7 @@
- #!/bin/csh
- unalias rm
- clear
-+set NASTHOME=%%NASTHOME%%
- set rfdir=$NASTHOME/rf
- set nasexec=$NASTHOME/bin/nastrn.exe
- set naschk=$NASTHOME/bin/chkfil.exe
diff --git a/cad/NASTRAN-95/files/patch-src_Makefile b/cad/NASTRAN-95/files/patch-src_Makefile
deleted file mode 100644
index 618ac3a434f2..000000000000
--- a/cad/NASTRAN-95/files/patch-src_Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/Makefile.orig	2016-09-08 21:25:12 UTC
-+++ src/Makefile
-@@ -1,6 +1,6 @@
- # Declaration of variables
--FC = gfortran
--FFLAGS =  -w -fno-range-check -fno-automatic -fcray-pointer -std=legacy 
-+FC = %%FC%%
-+FFLAGS =  %%FFLAGS%% -w -fno-range-check -fno-automatic -fcray-pointer -std=legacy 
- 
- # file names
- EXEC=nastran.exe
diff --git a/cad/NASTRAN-95/files/patch-um_Makefile b/cad/NASTRAN-95/files/patch-um_Makefile
deleted file mode 100644
index c5ebcc3fadb8..000000000000
--- a/cad/NASTRAN-95/files/patch-um_Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- um/Makefile.orig	2016-09-08 21:25:12 UTC
-+++ um/Makefile
-@@ -1,6 +1,6 @@
- # Declaration of variables
--FC = gfortran
--FFLAGS =  -w -fno-range-check -fno-automatic -fcray-pointer 
-+FC = %%FC%%
-+FFLAGS = %%FFLAGS%% -w -fno-range-check -fno-automatic -fcray-pointer 
- #-std=legacy 
- 
- # file names
diff --git a/cad/NASTRAN-95/pkg-descr b/cad/NASTRAN-95/pkg-descr
deleted file mode 100644
index 99bc01c8452b..000000000000
--- a/cad/NASTRAN-95/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-NASTRAN-95
-
-NASTRAN is the NASA Structural Analysis System, a finite element analysis
-(FEA) program completed in the early 1970's. It was the first of its kind
-and opened the door to computer-aided engineering. Subsections of a design
-can be modeled and then larger groupings of these elements can again be
-modeled. NASTRAN can handle elastic stability analysis, complex
-eigenvalues for vibration and dynamic stability analysis, dynamic response
-for transient and steady state loads, and random excitation, and static
-response to concentrated and distributed loads, thermal expansion, and
-enforced deformations.
-
-NOTE: There is no technical support available for this software.
diff --git a/cad/NASTRAN-95/pkg-plist b/cad/NASTRAN-95/pkg-plist
deleted file mode 100644
index 94a3b8383387..000000000000
--- a/cad/NASTRAN-95/pkg-plist
+++ /dev/null
@@ -1,399 +0,0 @@
-bin/nastran
-%%NASTHOME%%/bin/chkfil.exe
-%%NASTHOME%%/bin/nastrn.exe
-%%NASTHOME%%/rf/AERO10
-%%NASTHOME%%/rf/AERO11
-%%NASTHOME%%/rf/AERO9
-%%NASTHOME%%/rf/DISP0
-%%NASTHOME%%/rf/DISP1
-%%NASTHOME%%/rf/DISP10
-%%NASTHOME%%/rf/DISP11
-%%NASTHOME%%/rf/DISP12
-%%NASTHOME%%/rf/DISP13
-%%NASTHOME%%/rf/DISP14
-%%NASTHOME%%/rf/DISP15
-%%NASTHOME%%/rf/DISP16
-%%NASTHOME%%/rf/DISP17
-%%NASTHOME%%/rf/DISP18
-%%NASTHOME%%/rf/DISP19
-%%NASTHOME%%/rf/DISP2
-%%NASTHOME%%/rf/DISP3
-%%NASTHOME%%/rf/DISP4
-%%NASTHOME%%/rf/DISP5
-%%NASTHOME%%/rf/DISP6
-%%NASTHOME%%/rf/DISP7
-%%NASTHOME%%/rf/DISP8
-%%NASTHOME%%/rf/DISP9
-%%NASTHOME%%/rf/HEAT1
-%%NASTHOME%%/rf/HEAT3
-%%NASTHOME%%/rf/HEAT9
-%%NASTHOME%%/rf/NASINFO
-%%NASTHOME%%/um/BULK.TXT
-%%NASTHOME%%/um/CASE.TXT
-%%NASTHOME%%/um/DICT.TXT
-%%NASTHOME%%/um/DMAP.TXT
-%%NASTHOME%%/um/EXEC.TXT
-%%NASTHOME%%/um/INTR.TXT
-%%NASTHOME%%/um/MSSG.TXT
-%%NASTHOME%%/um/PLOT.TXT
-%%NASTHOME%%/um/RFMT.TXT
-%%NASTHOME%%/um/SUBS.TXT
-%%NASTHOME%%/um/UMFL.TXT
-%%NASTHOME%%/um/nasthelp.exe
-%%PORTDOCS%%%%DOCSDIR%%/NASA-SP-221(06) The NASTRAN Theoretical Manual.pdf
-%%PORTDOCS%%%%DOCSDIR%%/NASA-SP-222(08) NASTRAN Users Manual Vol I.pdf
-%%PORTDOCS%%%%DOCSDIR%%/NASA-SP-222(08) NASTRAN Users Manual Vol II.pdf
-%%PORTDOCS%%%%DOCSDIR%%/NASA-SP-223(05) NASTRAN Programmers Manual.pdf
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01000a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01001a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01002a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01011b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01011c.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01012a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01013a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01014a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01021b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01032a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01033a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01034a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01041a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01051a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01061a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01062a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01071a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01081a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01091a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01092a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01101a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01111a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01112a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01121a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01122a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01131a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01132a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01133a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01141a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01151a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01161a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d01171a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02023a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02024a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02025a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02026a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02027a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02032a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02033a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02034a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02035a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d02036a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03012a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03013a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03014a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03041a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03051a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03061a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03071a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03081a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03082a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d03083a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d04011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d05011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d05021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d06011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d07011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d07012a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d07021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d07022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d08011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d08012a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d08013a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d08014a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d09011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d09021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d09022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d09031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d09041a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d10011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d10021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d10022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d10023a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11011b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d11032a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d12011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d13011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d14011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/d15011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t00001a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01181a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01191a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01201a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01211a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01221a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01231a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01241a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01251a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01261a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01271a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01281a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01291a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01301a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01311a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01321a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01331a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t01341a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03091a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03101a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03111a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03111b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03121a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03121b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03121c.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t03131a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t04021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t04021b.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t05031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t08021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t08022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t08031a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t09051a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t09061a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t09071a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t13021a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t13022a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t16011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demoout/t17011a.out
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01000a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01001a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01002a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011b.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011c.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01011c.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01012a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01012a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01013a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01013a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01014a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01014a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01021b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01021b.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01031a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01032a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01032a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01033a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01033a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01034a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01041a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01041a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01051a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01051a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01061a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01061a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01062a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01071a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01071a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01081a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01081a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01091a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01091a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01092a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01092a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01101a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01101a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01111a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01111a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01112a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01112a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01121a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01121a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01122a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01122a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01131a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01131a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01132a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01132a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01133a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01133a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01141a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01141a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01151a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01151a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01161a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01161a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01171a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d01171a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02022a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02023a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02023a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02024a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02024a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02025a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02025a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02026a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02026a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02027a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02027a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02031a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02032a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02032a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02033a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02033a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02034a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02034a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02035a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d02036a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03012a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03012a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03013a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03013a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03014a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03014a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03031a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03041a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03041a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03051a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03051a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03061a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03061a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03071a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03071a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03081a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03081a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03082a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03082a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03083a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d03083a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d04011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d04011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d05011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d05011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d05021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d05021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d06011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d06011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07012a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07012a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d07022a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08012a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08012a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08013a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08013a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08014a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d08014a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09022a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09031a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09041a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d09041a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d10023a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11011b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11021a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11022a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11031a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11032a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d11032a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d12011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d12011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d13011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d13011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d14011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d14011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d15011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/d15011a.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t00001a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01181a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01191a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01201a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01211a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01221a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01231a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01241a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01251a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01261a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01271a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01281a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01291a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01301a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01311a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01321a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01331a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t01341a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03091a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03101a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03111a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03111b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03121a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03121b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03121c.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t03131a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t04021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t04021b.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t05031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t08021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t08022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t08031a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t09051a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t09061a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t09071a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t13021a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t13022a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t16011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inp/t17011a.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test/bar.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test/beam.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test/beam_hex.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test/large_problem1.inp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test/large_problem3.inp