diff options
author | Eric L. Hernes <erich@FreeBSD.org> | 1996-08-16 17:04:26 +0000 |
---|---|---|
committer | Eric L. Hernes <erich@FreeBSD.org> | 1996-08-16 17:04:26 +0000 |
commit | abca0ff0427dea46b05c2b980be13f0ee8bf80e1 (patch) | |
tree | 9106121911be8591f71f853bbd2c91081878868c /astro/xephem/files/patch-aa | |
parent | Fix shar so that it doesn't generate: (diff) |
moved xephem to `misc', MOTIF_STATIC should work
now too.
Diffstat (limited to 'astro/xephem/files/patch-aa')
-rw-r--r-- | astro/xephem/files/patch-aa | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/astro/xephem/files/patch-aa b/astro/xephem/files/patch-aa new file mode 100644 index 000000000000..135684fa2c68 --- /dev/null +++ b/astro/xephem/files/patch-aa @@ -0,0 +1,86 @@ +--- Imakefile~ Mon Aug 21 10:36:30 1995 ++++ Imakefile Thu Aug 1 11:58:04 1996 +@@ -24,7 +24,7 @@ + + + DEPXMLIB = $(USRLIBDIR)/libXm.a +- XMLIB = -lXm ++ XMLIB = ${MOTIFLIB} + DEPLIBS = $(DEPXMLIB) $(DEPXTOOLLIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) + SYS_LIBRARIES = -lm +@@ -34,4 +34,9 @@ + + /* especially worth having this dependency so the displayed version is current. + */ ++install:: ++ mkdir -p ${PREFIX}/lib/X11/xephem ++ tar -cf - auxil edb gscdbd tools work |(cd ${PREFIX}/lib/X11/xephem; tar -xf -) ++ cp XEphem.ad ${PREFIX}/lib/X11/app-defaults/XEphem ++ + versionmenu.o: patchlevel.h +--- XEphem.ad~ Mon Aug 7 10:23:43 1995 ++++ XEphem.ad Thu Aug 1 11:54:15 1996 +@@ -102,39 +102,39 @@ + XEphem*TZone.UTC.set: False + + ! default plot and listing filenames (a leading ~ refers to HOME) +-XEphem*Plot*Filename.value: work/ephem.plt +-XEphem*List*Filename.value: work/ephem.lst ++XEphem*Plot*Filename.value: /usr/X11R6/lib/X11/xephem/work/ephem.plt ++XEphem*List*Filename.value: /usr/X11R6/lib/X11/xephem/work/ephem.lst + + ! default sky list filename (a leading ~ refers to HOME) +-XEphem*SkyList*textString: work/skylist.txt ++XEphem*SkyList*textString: /usr/X11R6/lib/X11/xephem/work/skylist.txt + + ! default close list filename (a leading ~ refers to HOME) +-XEphem*CloseList*textString: work/closelist.txt ++XEphem*CloseList*textString: /usr/X11R6/lib/X11/xephem/work/closelist.txt + + ! default help file name (a leading ~ refers to HOME) +-XEphem.HELPFILE: auxil/xephem.hlp ++XEphem.HELPFILE: /usr/X11R6/lib/X11/xephem/auxil/xephem.hlp + + ! default Earth menu sites file name +-XEphem.SITESFILE: auxil/xephem_sites ++XEphem.SITESFILE: /usr/X11R6/lib/X11/xephem/auxil/xephem_sites + + ! default initial database directory, file name pattern, and file names. + ! DBinitialFiles may list db files to read automatically upon startup, each + ! separated by one blank. These will be searched for in DBdirectory. +-XEphem.DBdirectory: edb ++XEphem.DBdirectory: /usr/X11R6/lib/X11/xephem/edb + XEphem.DBpattern: *.edb + XEphem.DBinitialFiles: basic.edb + + ! default database fifo name (a leading ~ refers to HOME) +-XEphem.DBFIFO: fifos/xephem_db_fifo ++XEphem.DBFIFO: ~/.xephem/xephem_db_fifo + + ! default Skyview output fifo name (a leading ~ refers to HOME) +-XEphem.SKYOUTFIFO: fifos/xephem_out_fifo ++XEphem.SKYOUTFIFO: ~/.xephem/xephem_out_fifo + + ! default Skyview direction input fifo name (a leading ~ refers to HOME) +-XEphem.SKYINFIFO: fifos/xephem_in_fifo ++XEphem.SKYINFIFO: ~/.xephem/xephem_in_fifo + + ! default Skyview Button2 fifo name (a leading ~ refers to HOME) +-XEphem.SKYLOCFIFO: fifos/xephem_loc_fifo ++XEphem.SKYLOCFIFO: ~/.xephem/xephem_loc_fifo + + ! set Geocentric.set to true for geocentric separations, + ! or Topocentric.set to true for topocentric separation.. +--- misc.c~ Thu Aug 3 14:22:44 1995 ++++ misc.c Thu Aug 1 11:00:17 1996 +@@ -673,7 +673,9 @@ + #include <errno.h> + #include <perror.h> + #else ++#ifndef __FreeBSD__ + extern char *sys_errlist[]; ++#endif + extern int errno; + #endif + return (sys_errlist[errno]); |