summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Rękorajski2006-04-21 23:41:38 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit33ad7caea034bc074fd48a0b5d597cb1e72fdc99 (patch)
treed325cbabe916a4a54613b52d5e8775337d0fad57
parent7da5f80c3f5af465c44ed09e3ec378b0fc0a5534 (diff)
downloadgrace-33ad7caea034bc074fd48a0b5d597cb1e72fdc99.zip
grace-33ad7caea034bc074fd48a0b5d597cb1e72fdc99.tar.gz
- orphaned, outdated
Changed files: grace.perl.patch -> 1.2 xmgrace -> 1.2
-rw-r--r--grace.perl.patch8
-rw-r--r--xmgrace16
2 files changed, 0 insertions, 24 deletions
diff --git a/grace.perl.patch b/grace.perl.patch
deleted file mode 100644
index 26f4cc7..0000000
--- a/grace.perl.patch
+++ /dev/null
@@ -1,8 +0,0 @@
---- grace-5.0.0/auxiliary/fdf2fit.orig Wed Jul 15 08:45:44 1998
-+++ grace-5.0.0/auxiliary/fdf2fit Wed Jul 15 08:46:14 1998
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl
-+#!/usr/bin/perl
- # fdf2fit - script to convert Origin-4 .fdf fit parameter files to ACE/gr's
- # Version 0.3
- # Author Yu. V. Ralchenko <fnralch@plasma-gate.weizmann.ac.il>
diff --git a/xmgrace b/xmgrace
deleted file mode 100644
index 860772d..0000000
--- a/xmgrace
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-
-use File::Basename;
-
-$grhome =$ENV{GRACE_HOME};
-$grhome ="/usr/X11R6/lib/X11/grace" if "$grhome" eq "";
-$dynamic = "$grhome" . "/bin/xmgrace.dynamic";
-$semistatic = "$grhome" . "/bin/xmgrace.semistatic";
-$basename = basename($0);
-if (-x "$dynamic") {
- exec $dynamic $basename, @ARGV;
-} elsif (-x "$semistatic") {
- exec $semistatic $basename, @ARGV;
-} else {
- die "ERROR: Can't find any grace executable in $grhome/bin\n";
-}