diff options
author | jtb <jtb@pkgsrc.org> | 2001-01-27 08:16:00 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-01-27 08:16:00 +0000 |
commit | 9dbfbcf7e16b782c842faa6f306107aeb61c0da2 (patch) | |
tree | 46ffae04884c0d89db05f18a9dcb175c4c64fca2 /graphics | |
parent | 9e911699d315e156af29c644324f138624404825 (diff) | |
download | pkgsrc-9dbfbcf7e16b782c842faa6f306107aeb61c0da2.tar.gz |
Added the 39 supplemental programs, html documentation, and example scripts.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/GMT/Makefile | 69 | ||||
-rw-r--r-- | graphics/GMT/files/md5 | 6 | ||||
-rw-r--r-- | graphics/GMT/files/patch-sum | 23 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-aa | 30 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ac | 4 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-aj | 18 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ak | 27 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-al | 48 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-am | 48 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-an | 30 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ao | 35 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ap | 51 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-aq | 32 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ar | 43 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-as | 48 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-at | 51 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-au | 43 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-av | 13 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-aw | 11 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ax | 22 | ||||
-rw-r--r-- | graphics/GMT/patches/patch-ay | 34 | ||||
-rw-r--r-- | graphics/GMT/pkg/DESCR | 3 | ||||
-rw-r--r-- | graphics/GMT/pkg/PLIST | 932 |
23 files changed, 1500 insertions, 121 deletions
diff --git a/graphics/GMT/Makefile b/graphics/GMT/Makefile index 0e62ddfaa3c..9cb34b9e77d 100644 --- a/graphics/GMT/Makefile +++ b/graphics/GMT/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/11/26 22:48:12 jtb Exp $ +# $NetBSD: Makefile,v 1.2 2001/01/27 08:16:00 jtb Exp $ DISTNAME= GMT3.3.6 PKGNAME= GMT-3.3.6 @@ -9,43 +9,82 @@ MASTER_SITES= ftp://gmt.soest.hawaii.edu/pub/gmt/ \ ftp://ftp.geologi.uio.no/pub/gmt/ \ ftp://life.csu.edu.au/pub/gmt/ \ ftp://ftp.eos.hokudai.ac.jp/pub/gmt/ -DISTFILES= GMT3.3.6_progs.tar.bz2 GMT3.3.6_doc.tar.bz2 GMT_share.tar.bz2 +DISTFILES= GMT3.3.6_progs.tar.bz2 GMT3.3.6_doc.tar.bz2 GMT_share.tar.bz2 \ + GMT3.3.6_suppl.tar.bz2 GMT3.3.6_scripts.tar.bz2 \ + GMT3.3.6_web.tar.bz2 MAINTAINER= jtb@netbsd.org HOMEPAGE= http://imina.soest.hawaii.edu/gmt/ DEPENDS+= netcdf>=3.0:../../devel/netcdf -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf +BUILD_DEPENDS+= autoreconf:../../devel/autoconf EXTRACT_SUFFIX= .tar.bz2 WRKSRC= ${WRKDIR}/${DISTNAME} - +USE_X11= YES +USE_XAW= YES DIST_SUBDIR= GMT GNU_CONFIGURE= YES USE_LIBTOOL= YES -EVAL_PREFIX+= NETCDF=netcdf +EVAL_PREFIX+= NETCDF=netcdf BASH_PREFIX=bash CONFIGURE_ARGS+="--includedir=${PREFIX}/include/gmt" CONFIGURE_ARGS+="--datadir=${PREFIX}/share/gmt" CONFIGURE_ARGS+="--enable-eps" -INSTALL_TARGET= install install-man install-data +CONFIGURE_ARGS+="--enable-www=${PREFIX}/share/doc/html" +ALL_TARGET= all suppl +INSTALL_TARGET= install-all -pre-configure: - @(cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf 2>/dev/null) +post-extract: + ${MV} -f ${WRKSRC}/www/gmt/doc/ps/ ${WRKSRC} + for e in ${WRKSRC}/examples/*.bat ${WRKSRC}/examples/*/*.bat; do\ + ${RM} -f $$e; \ + done + for h in ${WRKSRC}/examples/do_view.bash \ + ${WRKSRC}/examples/do_view.csh ; do \ + ${SED} -e 's:ghostview:gv:g' < $$h > $$h.tmp && \ + ${MV} -f $$h.tmp $$h; \ + done +.if exists(${BASH_PREFIX}/bin/bash) + for b in ${WKRSRC}/examples/*.bash ${WKRSRC}/examples/*/*.bash; do \ + ${SED} -e 's:\/bin:'${BASH_PREFIX}':g' < $$b > $$b.tmp && \ + ${MV} -f $$b.tmp $$b; \ + done +.endif -do-build: - @(cd ${WRKSRC}/src && ${MAKE}) +pre-configure: + (cd ${WRKSRC} && autoreconf) post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gmt - @for f in GMT_Docs.ps GMT_Tutorial.ps ; do \ - ${INSTALL_DATA} ${WRKSRC}/www/gmt/doc/ps/$$f ${PREFIX}/share/doc/gmt; \ + for f in GMT_Docs.ps GMT_Tutorial.ps ; do \ + ${INSTALL_DATA} ${WRKSRC}/ps/$$f ${PREFIX}/share/doc/gmt; \ done + (cd ${PREFIX}/share/doc/html/gmt/gmt/doc && ${LN} -sf \ + ../../../../gmt ps) ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gmt/tutorial - @for f in bermuda.grd quakes.cpt ship.xyz us.grd data quakes.ngdc \ - topo.cpt ; do \ - ${INSTALL_DATA} ${WRKSRC}/tutorial/$$f ${PREFIX}/share/examples/gmt; \ + for f in bermuda.grd quakes.cpt ship.xyz us.grd data quakes.ngdc \ + topo.cpt ; do \ + ${INSTALL_DATA} ${WRKSRC}/tutorial/$$f \ + ${PREFIX}/share/examples/gmt/tutorial; \ done; ${INSTALL_DATA} ${WRKSRC}/../share/* ${PREFIX}/share/gmt + for i in ${WRKSRC}/examples/*.bash ${WRKSRC}/examples/*.csh \ + ${WRKSRC}/examples/README.SCRIPTS ; do \ + ${INSTALL_DATA} $$i ${PREFIX}/share/examples/gmt; \ + done + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gmt + for f in README.SCRIPTS do_examples.bash do_examples.csh \ + do_view.bash do_view.csh; do \ + ${INSTALL_DATA} ${WRKSRC}/examples/$$f \ + ${PREFIX}/share/examples/gmt; \ + done + for i in 01 02 03 04 05 06 07 08 09 10 \ + 11 12 13 14 15 16 17 18 19 20 ; do \ + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gmt/ex$$i; \ + for j in ${WRKSRC}/examples/ex$$i/* ; do \ + ${INSTALL_DATA} $$j ${PREFIX}/share/examples/gmt/ex$$i; \ + done; \ + done .include "../../mk/bsd.pkg.mk" diff --git a/graphics/GMT/files/md5 b/graphics/GMT/files/md5 index be76cd186be..06e29525236 100644 --- a/graphics/GMT/files/md5 +++ b/graphics/GMT/files/md5 @@ -1,4 +1,8 @@ -$NetBSD: md5,v 1.1.1.1 2000/11/26 22:48:12 jtb Exp $ +$NetBSD: md5,v 1.2 2001/01/27 08:16:01 jtb Exp $ + MD5 (GMT/GMT3.3.6_progs.tar.bz2) = f727d799357583a2b901d832d37d561d MD5 (GMT/GMT3.3.6_doc.tar.bz2) = 2c025e7fcd997a58bafbebba1138cd9e MD5 (GMT/GMT_share.tar.bz2) = 35a67867ecbb8461690109beb663f317 +MD5 (GMT/GMT3.3.6_suppl.tar.bz2) = e9aaf803366856993c341e2d70c6e85e +MD5 (GMT/GMT3.3.6_scripts.tar.bz2) = 75118b19340b5b918562cae462f9d692 +MD5 (GMT/GMT3.3.6_web.tar.bz2) = 7bd286c088a166651456e203e5647665 diff --git a/graphics/GMT/files/patch-sum b/graphics/GMT/files/patch-sum index cc6cb1e79f3..01c231d1016 100644 --- a/graphics/GMT/files/patch-sum +++ b/graphics/GMT/files/patch-sum @@ -1,12 +1,27 @@ -$NetBSD: patch-sum,v 1.3 2000/12/14 00:44:08 jtb Exp $ +$NetBSD: patch-sum,v 1.4 2001/01/27 08:16:01 jtb Exp $ -MD5 (patch-aa) = 37585e253e4d9d5a25dfbf41637d0c58 +MD5 (patch-aa) = f6bd2a5d0af7804458282b876a2bd245 MD5 (patch-ab) = 53baf801019ac455b84c338406c136f6 -MD5 (patch-ac) = 17b5bee492e241ac0511bfb5d5167a73 +MD5 (patch-ac) = 34dd3c33717877f70efeb143d57de09b MD5 (patch-ad) = dab1556098f72997ff9195b2a75b8090 MD5 (patch-ae) = 1ad779053784a61501b672a0f95cab24 MD5 (patch-af) = 9bc80d1f1f305fe60a5c24e90fdd329f MD5 (patch-ag) = 5fd9f8963a7fbba82ddb8526eda22801 MD5 (patch-ah) = 81938a902823d3657c19bd8612a6455b MD5 (patch-ai) = af0285b9046f0d660a5d0319d91c62ba -MD5 (patch-aj) = 4271ee26423bd841c4412b041f3f8da9 +MD5 (patch-aj) = 6d50c47ffc927edb32eb5fdc3928cbd5 +MD5 (patch-ak) = 1849dea510e47cc66ab3ce23b3f690e2 +MD5 (patch-al) = f808f77f226ed7b7946a939212cdeee7 +MD5 (patch-am) = fa7eeff5c1656783c4f973c012936643 +MD5 (patch-an) = ebd2e25587c46d542a48ef194e1c2e8e +MD5 (patch-ao) = be33051e64a4d0244701b15e5bc39273 +MD5 (patch-ap) = aafd583d305406308b312b05bc6c1dba +MD5 (patch-aq) = 302727183c6ce31a9aa1d2874eaa4bb6 +MD5 (patch-ar) = b0419120d391c540fe929797bd3b4db4 +MD5 (patch-as) = 8d0a461ae3d785308ae9504d23add33c +MD5 (patch-at) = a1f26ceb18ba2fe07e1137ee4b827b9c +MD5 (patch-au) = d1997868dcd205b3d1cf694189b81bd0 +MD5 (patch-av) = 07af60e17414034ca9b53e69e9274735 +MD5 (patch-aw) = 872028c7c698b10eb2985340d01f3f8b +MD5 (patch-ax) = 100fd6d5d6a549dc87daee208f77dd47 +MD5 (patch-ay) = f810f43b39137095ca20bd4771955744 diff --git a/graphics/GMT/patches/patch-aa b/graphics/GMT/patches/patch-aa index 0ba14c72a06..60e737730d0 100644 --- a/graphics/GMT/patches/patch-aa +++ b/graphics/GMT/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ +$NetBSD: patch-aa,v 1.4 2001/01/27 08:16:01 jtb Exp $ --- src/Makefile.orig Wed Oct 18 03:30:08 2000 +++ src/Makefile @@ -7,7 +7,7 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ NETCDFINC = $(NETCDF)/include CFLAGS = -I$(NETCDFINC) $(WIN32) $(CC_OPT) -DGMT_DEFAULT_PATH=\"$(GMT_DEFAULT_PATH)\" $(TRIANGLE_D) -CDF = -L$(NETCDFLIB) -lnetcdf -+CDF = -L$(NETCDFLIB) -Wl,-R$(NETCDFLIB) -lnetcdf ++CDF = -Wl,-R$(NETCDFLIB) -L$(NETCDFLIB) -lnetcdf PS = -lpsl GMT = -lgmt @@ -17,7 +17,7 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ -SHARED_LIB = libpsl.a libgmt.a libpsl.$(SL) libgmt.$(SL) -STATIC_LIB = libpsl.a libgmt.a -+SHARED_LIB = libpsl libgmt ++SHARED_LIB = libpsl.la libgmt.la +STATIC_LIB = #------------------------------------------------------------------------------- @@ -50,8 +50,8 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ - $(INSTALL) -m 444 libpsl.$(SL) $(libdir); \ - $(INSTALL) -m 444 libgmt.$(SL) $(libdir); \ - fi; \ -+ $(LIBTOOL) --mode=install $(INSTALL) libpsl.la $(libdir);\ -+ $(LIBTOOL) --mode=install $(INSTALL) libgmt.la $(libdir);\ ++ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) libpsl.la $(libdir);\ ++ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) libgmt.la $(libdir);\ + fi + if [ ! -d $(bindir) ]; then \ + mkdir -p $(bindir); \ @@ -89,18 +89,18 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ #------------------------------------------------------------------------------- -libs: $(GMTLIB) -+libs: libpsl libgmt ++libs: libpsl.la libgmt.la -libpsl.a: pslib.o - $(AR) cvur libpsl.a $? - $(RANLIB) libpsl.a -+libpsl: pslib.o -+ @$(LIBTOOL) --mode=link $(CC) $(CFLAGS) -O -o libpsl.la \ -+ pslib.lo -rpath $(libdir) --version-info 0:0 ++libpsl.la: pslib.o ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ \ ++ pslib.lo -lm -rpath $(libdir) --version-info 0:0 pslib.o: pslib.c $(PS_H) - $(CC) $(CFLAGS) -c pslib.c -+ @$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c pslib.c ++ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c pslib.c -libgmt.a: $(LIB_O) $(TRIANGLE_O) $(ALPHA_SINCOS_O) - $(AR) cvur $@ $? @@ -111,10 +111,10 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ - -libgmt.$(SL): $(LIB_O) $(TRIANGLE_O) $(ALPHA_SINCOS_O) - $(LD) $(LD_OPT) $(LIB_O) $(TRIANGLE_O) $(ALPHA_SINCOS_O) -o $@ -+libgmt: $(LIB_O) $(TRIANGLE_O) $(ALPHA_SINCOS_O) -+ @$(LIBTOOL) --mode=link $(CC) $(CFLAGS) -O -o libgmt.la \ ++libgmt.la: $(LIB_O) $(TRIANGLE_O) $(ALPHA_SINCOS_O) ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ \ + $(LIB_O:.o=.lo) $(TRIANGLE_O:.o=.lo) $(ALPHA_SINCOS_O.o=.lo) \ -+ -rpath $(libdir) --version-info 0:0 ++ $(LDFLAGS) $(CDF) $(LIB) -rpath $(libdir) --version-info 0:0 #------------------------------------------------------------------------------- # program dependencies @@ -122,9 +122,9 @@ $NetBSD: patch-aa,v 1.3 2000/12/14 00:44:08 jtb Exp $ $(PROGS): $(GMTLIB) $(PROGS_O) - $(CC) $(CFLAGS) $@.o -L. -lgmt -lpsl $(CDF) $(LIBS) $(LDFLAGS) -o $@ -+ @$(LIBTOOL) --mode=link $(CC) $(CFLAGS) $@.o libgmt.la libpsl.la $(CDF) $(LIBS) $(LDFLAGS) -o $@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $@.o libgmt.la libpsl.la $(CDF) $(LIBS) $(LDFLAGS) -o $@ $(COMPRESS) $@$(EXE) + .c.o: - $(CC) -c $(CFLAGS) $< -+ @$(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-ac b/graphics/GMT/patches/patch-ac index 49e63b1109b..8f157756bef 100644 --- a/graphics/GMT/patches/patch-ac +++ b/graphics/GMT/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.1.1.1 2000/11/26 22:48:16 jtb Exp $ +$NetBSD: patch-ac,v 1.2 2001/01/27 08:16:01 jtb Exp $ --- configure.in.orig Wed Oct 18 02:59:42 2000 +++ configure.in @@ -14,7 +14,7 @@ $NetBSD: patch-ac,v 1.1.1.1 2000/11/26 22:48:16 jtb Exp $ AC_CHECK_PROG(CSH, csh, csh, bash, ) AC_CHECK_PROG(LD, ld, ld, :) AC_CHECK_PROG(AS, as, as, :) -+AC_CHECK_PROG(LIBTOOL, libtool, libtool, :) ++AC_SUBST(LIBTOOL) AC_PROG_INSTALL +AC_SUBST(INSTALL_PROGRAM) +AC_SUBST(INSTALL_SCRIPT) diff --git a/graphics/GMT/patches/patch-aj b/graphics/GMT/patches/patch-aj index 86ff176c86f..258667751c5 100644 --- a/graphics/GMT/patches/patch-aj +++ b/graphics/GMT/patches/patch-aj @@ -1,12 +1,12 @@ -$NetBSD: patch-aj,v 1.1.1.1 2000/11/26 22:48:17 jtb Exp $ +$NetBSD: patch-aj,v 1.2 2001/01/27 08:16:01 jtb Exp $ ---- src/gmt.h.orig Tue Nov 14 02:03:49 2000 -+++ src/gmt.h -@@ -53,6 +53,7 @@ - * SYSTEM HEADER FILES - *--------------------------------------------------------------------*/ +--- src/meca/pspolar.c.orig Sat Jan 27 04:08:41 2001 ++++ src/meca/pspolar.c +@@ -19,6 +19,7 @@ + * + */ +#include <sys/types.h> - #include <ctype.h> - #include <float.h> - #include <math.h> + #include <string.h> + #include "gmt.h" /* to have gmt environment */ + diff --git a/graphics/GMT/patches/patch-ak b/graphics/GMT/patches/patch-ak new file mode 100644 index 00000000000..14aaab8be6c --- /dev/null +++ b/graphics/GMT/patches/patch-ak @@ -0,0 +1,27 @@ +$NetBSD: patch-ak,v 1.1 2001/01/27 08:16:01 jtb Exp $ + +--- src/dbase/makefile.orig Wed Oct 18 03:01:08 2000 ++++ src/dbase/makefile +@@ -14,18 +14,18 @@ + all: grdraster + + install: all +- $(INSTALL) grdraster$(EXE) $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) grdraster$(EXE) $(bindir) + + uninstall: + \rm -f $(bindir)/grdraster$(EXE) + + grdraster: grdraster.o +- $(CC) $(CFLAGS) $(LDFLAGS) grdraster.o -L.. -lgmt -lpsl $(CDF) $(LIBS) -o grdraster ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) grdraster.o ../libgmt.la ../libpsl.la $(CDF) $(LIBS) -o grdraster + + spotless: clean + + clean: +- rm -f *.o grdraster$(EXE) ++ rm -f *.o *.lo .libs grdraster$(EXE) + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-al b/graphics/GMT/patches/patch-al new file mode 100644 index 00000000000..e458d8fd532 --- /dev/null +++ b/graphics/GMT/patches/patch-al @@ -0,0 +1,48 @@ +$NetBSD: patch-al,v 1.1 2001/01/27 08:16:01 jtb Exp $ + +--- src/mgg/makefile.orig Wed Oct 18 03:01:19 2000 ++++ src/mgg/makefile +@@ -45,7 +45,7 @@ + + install: all + for i in $(MGG); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -54,21 +54,20 @@ + done + + clean: +- rm -f *.o ++ rm -f *.o *.lo + for i in $(MGG); do \ + rm -f $$i$(EXE); \ + done + + spotless: clean +- rm -f *.a ++ rm -fr .libs *.la + + #------------------------------------------------------------------------------- + # library + #------------------------------------------------------------------------------- + + libgmt_mgg.a: gmt_mgg.o +- $(AR) cvr libgmt_mgg.a $? +- $(RANLIB) libgmt_mgg.a ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ gmt_mgg.lo + + gmt_mgg.o: $(MGG_H) + +@@ -77,7 +76,7 @@ + #------------------------------------------------------------------------------- + + $(MGG): libgmt_mgg.a $(MGG_O) +- $(CC) $(CFLAGS) $(LDFLAGS) $@.o -L. -lgmt_mgg -L.. -lpsl -lgmt $(CDF) $(LIBS) -o $@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $@.o -L. -lgmt_mgg ../libpsl.la ../libgmt.la $(CDF) $(LIBS) -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-am b/graphics/GMT/patches/patch-am new file mode 100644 index 00000000000..f2c6c82b544 --- /dev/null +++ b/graphics/GMT/patches/patch-am @@ -0,0 +1,48 @@ +$NetBSD: patch-am,v 1.1 2001/01/27 08:16:01 jtb Exp $ + +--- src/cps/makefile.orig Wed Oct 18 03:01:09 2000 ++++ src/cps/makefile +@@ -12,35 +12,34 @@ + all: cpsencode cpsdecode + + install: all +- $(INSTALL) cpsencode$(EXE) $(bindir) +- $(INSTALL) cpsdecode$(EXE) $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) cpsencode$(EXE) $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) cpsdecode$(EXE) $(bindir) + + uninstall: + \rm -f $(bindir)/cpsencode$(EXE) + \rm -f $(bindir)/cpsdecode$(EXE) + + spotless: clean +- \rm -f *.a ++ \rm -fr .libs *.la + + clean: +- rm -f *.o cpsencode$(EXE) cpsdecode$(EXE) ++ rm -f *.o *.lo cpsencode$(EXE) cpsdecode$(EXE) + + #------------------------------------------------------------------------------- + # library + #------------------------------------------------------------------------------- + + libuu.a: libuu.o +- $(AR) cvr libuu.a $? +- $(RANLIB) libuu.a ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ libuu.lo + + cpsencode: cpsencode.o libuu.a +- $(CC) $(CFLAGS) $(LDFLAGS) cpsencode.o -L. -luu -o cpsencode ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $? -o $@ + + cpsdecode: cpsdecode.o libuu.a +- $(CC) $(CFLAGS) $(LDFLAGS) cpsdecode.o -L. -luu -o cpsdecode ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $? -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< + + cpsencode.c: cps.h uu.h + diff --git a/graphics/GMT/patches/patch-an b/graphics/GMT/patches/patch-an new file mode 100644 index 00000000000..8d9c5f05172 --- /dev/null +++ b/graphics/GMT/patches/patch-an @@ -0,0 +1,30 @@ +$NetBSD: patch-an,v 1.1 2001/01/27 08:16:01 jtb Exp $ + +--- src/gshhs/makefile.orig Sat Jan 27 03:10:36 2001 ++++ src/gshhs/makefile +@@ -12,19 +12,19 @@ + all: gshhs gshhs_dp + + install: all +- $(INSTALL) gshhs$(EXE) $(bindir) +- $(INSTALL) gshhs_dp$(EXE) $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) gshhs$(EXE) $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) gshhs_dp$(EXE) $(bindir) + + clean: +- \rm -f *.o *% gshhs$(EXE) gshhs_dp$(EXE) ++ \rm -f *.o *.lo .libs *% gshhs$(EXE) gshhs_dp$(EXE) + + spotless: clean + + gshhs: gshhs.o +- $(CC) $(CFLAGS) gshhs.o $(LIBS) $(LDFLAGS) -o gshhs ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) gshhs.lo $(LIBS) $(LDFLAGS) -o $@ + + gshhs_dp: gshhs_dp.o +- $(CC) $(CFLAGS) gshhs_dp.o $(LIBS) $(LDFLAGS) -o gshhs_dp ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) gshhs_dp.lo $(LIBS) $(LDFLAGS) -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-ao b/graphics/GMT/patches/patch-ao new file mode 100644 index 00000000000..a1bb3a5fcc9 --- /dev/null +++ b/graphics/GMT/patches/patch-ao @@ -0,0 +1,35 @@ +$NetBSD: patch-ao,v 1.1 2001/01/27 08:16:01 jtb Exp $ + +--- src/imgsrc/makefile.orig Sat Jan 27 03:13:35 2001 ++++ src/imgsrc/makefile +@@ -7,24 +7,24 @@ + include ../makegmt.macros + + CDF = -L$(NETCDF)/lib -lnetcdf +-GMT = -L.. -lgmt -lpsl ++GMT = ../libgmt.la ../libpsl.la + CFLAGS = $(CC_OPT) $(WIN32) -I.. -I$(NETCDF)/include + + all: img2mercgrd + + install: all +- $(INSTALL) img2mercgrd$(EXE) $(bindir) +- $(INSTALL) img2grd $(bindir) ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) img2mercgrd$(EXE) $(bindir) ++ $(INSTALL_SCRIPT) img2grd $(bindir) + + uninstall: + \rm -f $(bindir)/img2mercgrd$(EXE) $(bindir)/img2grd + + img2mercgrd: img2mercgrd.o gmt_imgsubs.o +- $(CC) $(CFLAGS) $(LDFLAGS) img2mercgrd.o gmt_imgsubs.o $(GMT) $(CDF) $(LIBS) -o img2mercgrd ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) img2mercgrd.lo gmt_imgsubs.lo $(GMT) $(CDF) $(LIBS) -o img2mercgrd + + spotless: clean + + clean: +- rm -f *.o img2mercgrd$(EXE) ++ rm -fr *.o *.lo .libs img2mercgrd$(EXE) + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-ap b/graphics/GMT/patches/patch-ap new file mode 100644 index 00000000000..34f6220052d --- /dev/null +++ b/graphics/GMT/patches/patch-ap @@ -0,0 +1,51 @@ +$NetBSD: patch-ap,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/meca/makefile.orig Sat Jan 27 03:17:16 2001 ++++ src/meca/makefile +@@ -9,7 +9,7 @@ + NETCDFINC = $(NETCDF)/include + CDF = -L$(NETCDFLIB) -lnetcdf + CFLAGS = $(CC_OPT) -I.. -I$(NETCDFINC) +-ALLLIB = -L.. -lpsl -lgmt $(CDF) $(LIBS) $(LDFLAGS) ++ALLLIB = ../libpsl.la ../libgmt.la $(CDF) $(LIBS) $(LDFLAGS) + # + # + +@@ -21,7 +21,7 @@ + + install: all + for i in $(MECA); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -32,22 +32,22 @@ + spotless: clean + + psmeca: psmeca.o utilmeca.o nrutil.o +- $(CC) $(CFLAGS) psmeca.o utilmeca.o nrutil.o $(ALLLIB) -o ./$@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) psmeca.lo utilmeca.lo nrutil.lo $(ALLLIB) -o ./$@ + + pscoupe: pscoupe.o utilmeca.o submeca.o distaz.o nrutil.o +- $(CC) $(CFLAGS) pscoupe.o utilmeca.o submeca.o distaz.o nrutil.o $(ALLLIB) -o ./$@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) pscoupe.lo utilmeca.lo submeca.lo distaz.lo nrutil.lo $(ALLLIB) -o ./$@ + + pspolar: pspolar.o +- $(CC) $(CFLAGS) pspolar.o $(ALLLIB) -o ./$@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) pspolar.lo $(ALLLIB) -o ./$@ + + psvelo: psvelo.o utilvelo.o utilstrain.o +- $(CC) $(CFLAGS) psvelo.o utilvelo.o utilstrain.o $(ALLLIB) -o ./$@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) psvelo.lo utilvelo.lo utilstrain.lo $(ALLLIB) -o ./$@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< + + clean: +- rm -f *.o ++ rm -fr *.o *.lo .libs + for i in $(MECA); do \ + rm -f $$i$(EXE); \ + done diff --git a/graphics/GMT/patches/patch-aq b/graphics/GMT/patches/patch-aq new file mode 100644 index 00000000000..27c6919f27b --- /dev/null +++ b/graphics/GMT/patches/patch-aq @@ -0,0 +1,32 @@ +$NetBSD: patch-aq,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/misc/makefile.orig Sat Jan 27 03:22:03 2001 ++++ src/misc/makefile +@@ -30,7 +30,7 @@ + + install: all + for i in $(MISC); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -41,7 +41,7 @@ + spotless: clean + + clean: +- rm -f *.o ++ rm -fr *.o *.lo .libs + for i in $(MISC); do \ + \rm -f $$i$(EXE); \ + done +@@ -51,7 +51,7 @@ + #------------------------------------------------------------------------------- + + $(MISC): $(MISC_O) +- $(CC) $(CFLAGS) $(LDFLAGS) $@.o -L.. -lpsl -lgmt $(CDF) $(LIBS) -o $@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $@.lo ../libpsl.la ../libgmt.la $(CDF) $(LIBS) -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-ar b/graphics/GMT/patches/patch-ar new file mode 100644 index 00000000000..7e1b6a6654f --- /dev/null +++ b/graphics/GMT/patches/patch-ar @@ -0,0 +1,43 @@ +$NetBSD: patch-ar,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/segyprogs/makefile.orig Sat Jan 27 03:25:15 2001 ++++ src/segyprogs/makefile +@@ -8,7 +8,7 @@ + #------------------------- stop here -------------------------- + + CFLAGS = $(CC_OPT) $(WIN32) -I.. -I$(NETCDF)/include -I$(GMT_DEFAULT_PATH)/src +-ALLLIB = -L.. -L$(GMT_DEFAULT_PATH)/bin -lgmt -lpsl -L$(NETCDF)/lib -lnetcdf $(LIBS) ++ALLLIB = ../libgmt.la ../libpsl.la -L$(NETCDF)/lib -lnetcdf $(LIBS) + + SEGYPLOT_H = segy_io.h segy.h segyreel.h + SEGYPLOT_C = pssegyz.c pssegy.c +@@ -23,7 +23,7 @@ + + install: all + for i in $(SEGYPLOT); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -32,16 +32,16 @@ + done + + clean: +- \rm -f *.o ++ \rm -f *.o *.lo + for i in $(SEGYPLOT); do \ + \rm -f $$i$(EXE); \ + done + + spotless: clean +- \rm -f *.a ++ \rm -fr .libs *.la + + $(SEGYPLOT): $(SEGYPLOT_O) segy_io.o +- $(CC) $(CFLAGS) segy_io.o $@.o -o $@ $(ALLLIB) $(LDFLAGS) ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) segy_io.lo $@.lo -o $@ $(ALLLIB) $(LDFLAGS) + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-as b/graphics/GMT/patches/patch-as new file mode 100644 index 00000000000..05ce332f062 --- /dev/null +++ b/graphics/GMT/patches/patch-as @@ -0,0 +1,48 @@ +$NetBSD: patch-as,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/spotter/makefile.orig Wed Oct 18 03:01:22 2000 ++++ src/spotter/makefile +@@ -41,7 +41,7 @@ + + install: all + for i in $(SPOT); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -50,21 +50,20 @@ + done + + clean: +- rm -f *.o ++ rm -f *.o *.la + for i in $(SPOT); do \ + rm -f $$i$(EXE); \ + done + + spotless: clean +- rm -f *.a ++ rm -fr .libs *.la + + #------------------------------------------------------------------------------- + # library + #------------------------------------------------------------------------------- + + libspotter.a: libspotter.o +- $(AR) cvr libspotter.a $? +- $(RANLIB) libspotter.a ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ libspotter.lo + + libspotter.o: $(SPOT_H) + +@@ -73,7 +72,7 @@ + #------------------------------------------------------------------------------- + + $(SPOT): libspotter.a $(SPOT_O) +- $(CC) $(CFLAGS) $(LDFLAGS) $@.o -L. -lspotter -L.. -lpsl -lgmt $(CDF) $(LIBS) -o $@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $@.lo -L. -lspotter ../libpsl.la ../libgmt.la $(CDF) $(LIBS) -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-at b/graphics/GMT/patches/patch-at new file mode 100644 index 00000000000..3d39c2889c1 --- /dev/null +++ b/graphics/GMT/patches/patch-at @@ -0,0 +1,51 @@ +$NetBSD: patch-at,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/x2sys/makefile.orig Wed Oct 18 03:01:23 2000 ++++ src/x2sys/makefile +@@ -7,7 +7,7 @@ + #------------------------- stop here -------------------------- + + CFLAGS = $(CC_OPT) $(WIN32) -I.. -I../mgg -I$(NETCDF)/include +-ALLLIB = -L.. -lgmt -L../mgg -lgmt_mgg -lpsl -L$(NETCDF)/lib -lnetcdf $(LIBS) ++ALLLIB = ../libgmt.la -L../mgg -lgmt_mgg ../libpsl.la -L$(NETCDF)/lib -lnetcdf $(LIBS) + + XSYSTEM_H = x2sys.h + XSYSTEM_C = x2sys_datalist.c x2sys_cross.c +@@ -19,14 +19,13 @@ + #--------------------------------------------------------------- + + libx2sys.a: x2sys.o +- $(AR) cvr libx2sys.a $? +- $(RANLIB) libx2sys.a ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ x2sys.lo + + all: $(XSYSTEM) libx2sys.a + + install: all + for i in $(XSYSTEM); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -35,16 +34,16 @@ + done + + clean: +- \rm -f *.o ++ \rm -f *.o *.lo + for i in $(XSYSTEM); do \ + \rm -f $$i$(EXE); \ + done + + spotless: clean +- \rm -f *.a ++ \rm -fr .libs *.la + + $(XSYSTEM): $(XSYSTEM_O) libx2sys.a +- $(CC) $(CFLAGS) $@.o -o $@ -L. -lx2sys $(ALLLIB) $(LDFLAGS) ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $@.lo -o $@ -L. -lx2sys $(ALLLIB) $(LDFLAGS) + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< diff --git a/graphics/GMT/patches/patch-au b/graphics/GMT/patches/patch-au new file mode 100644 index 00000000000..538d0ddd828 --- /dev/null +++ b/graphics/GMT/patches/patch-au @@ -0,0 +1,43 @@ +$NetBSD: patch-au,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/x_system/makefile.orig Wed Oct 18 03:01:25 2000 ++++ src/x_system/makefile +@@ -21,7 +21,7 @@ + # + + CFLAGS = $(CC_OPT) $(WIN32) -I.. -I../mgg -I$(NETCDF)/include +-ALLLIB = -L.. -lgmt -L../mgg -lgmt_mgg -lpsl -L$(NETCDF)/lib -lnetcdf $(LIBS) ++ALLLIB = ../libgmt.la -L../mgg -lgmt_mgg ../libpsl.la -L$(NETCDF)/lib -lnetcdf $(LIBS) + + ALL_C = x_edit.c x_init.c x_list.c x_over.c x_report.c x_remove.c x_setup.c x_solve_dc_drift.c x_update.c + +@@ -35,7 +35,7 @@ + + install: all + for i in $(ALL); do \ +- $(INSTALL) $$i$(EXE) $(bindir); \ ++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXE) $(bindir); \ + done + + uninstall: +@@ -44,7 +44,7 @@ + done + + clean: +- rm -f *.o ++ rm -fr *.o *.lo .libs + for i in $(ALL); do \ + rm -f $$i$(EXE); \ + done +@@ -56,9 +56,9 @@ + #------------------------------------------------------------------------------- + + $(ALL): $(ALL_O) +- $(CC) $(CFLAGS) $(LDFLAGS) $@.o $(ALLLIB) -o $@ ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $@.lo $(ALLLIB) -o $@ + + .c.o: +- $(CC) -c $(CFLAGS) $< ++ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< + + $(ALL_O): x_system.h diff --git a/graphics/GMT/patches/patch-av b/graphics/GMT/patches/patch-av new file mode 100644 index 00000000000..bb09c47d280 --- /dev/null +++ b/graphics/GMT/patches/patch-av @@ -0,0 +1,13 @@ +$NetBSD: patch-av,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/x_system/x_solve_dc_drift.c.orig Sun Dec 10 14:02:39 2000 ++++ src/x_system/x_solve_dc_drift.c +@@ -354,7 +354,7 @@ + + if (n_iterations == 0) { + printf ("One more iteration?: "); +- gets(string); ++ fgets(string, sizeof(string), stdin); + if (string[0] == 'N' || string[0] == 'n') ok = FALSE; + } + else if (iteration >= n_iterations) diff --git a/graphics/GMT/patches/patch-aw b/graphics/GMT/patches/patch-aw new file mode 100644 index 00000000000..2fd4d4aad6e --- /dev/null +++ b/graphics/GMT/patches/patch-aw @@ -0,0 +1,11 @@ +$NetBSD: patch-aw,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- src/meca/meca.h.orig Sun Dec 10 14:43:19 2000 ++++ src/meca/meca.h +@@ -1,5 +1,6 @@ + #include <stdio.h> + #include <math.h> ++#include <sys/types.h> + + #define EPSIL 0.0001 + diff --git a/graphics/GMT/patches/patch-ax b/graphics/GMT/patches/patch-ax new file mode 100644 index 00000000000..2cf1aba6e9a --- /dev/null +++ b/graphics/GMT/patches/patch-ax @@ -0,0 +1,22 @@ +$NetBSD: patch-ax,v 1.1 2001/01/27 08:16:02 jtb Exp $ + +--- Makefile.orig Sat Jan 27 04:38:15 2001 ++++ Makefile +@@ -62,7 +62,7 @@ + # !! STOP EDITING HERE, THE REST IS FIXED !! + #------------------------------------------------------------------------------- + +-SUPPL = cps dbase gshhs imgsrc meca mex mgg misc segyprogs spotter x2sys x_system xgrid ++SUPPL = cps dbase gshhs imgsrc meca mgg misc segyprogs spotter x2sys x_system xgrid + SUPPL_M = cps dbase imgsrc meca mgg misc segyprogs spotter x2sys x_system + + all: gmt suppl +@@ -85,7 +85,7 @@ + $(MAKE) uninstall; \ + cd .. + +-suppl: mex_config xgrid_config ++suppl: xgrid_config + for d in $(SUPPL); do \ + if [ -d src/$$d ] ; then \ + cd src/$$d; \ diff --git a/graphics/GMT/patches/patch-ay b/graphics/GMT/patches/patch-ay new file mode 100644 index 00000000000..2aa1fdbdc43 --- /dev/null +++ b/graphics/GMT/patches/patch-ay @@ -0,0 +1,34 @@ +$NetBSD: patch-ay,v 1.1 2001/01/27 08:16:03 jtb Exp $ + +--- src/xgrid/makefile.in.orig Sat Jan 27 04:55:11 2001 ++++ src/xgrid/makefile.in +@@ -19,7 +19,7 @@ + # Location of GMT and CDF header files + + CFLAGS= $(CC_OPT) $(WIN32) -I.. -I$(NETCDF)/include @X_CFLAGS@ @CFLAGS@ +-XLIBS=@X_PRE_LIBS@ @X_LIBS@ -lXt -lXaw -lXmu -lXext -lX11 @X_EXTRA_LIBS@ -L.. -lgmt -lpsl -lnetcdf ++XLIBS=@X_PRE_LIBS@ @X_LIBS@ -lXt -lXaw -lXmu -lXext -lX11 @X_EXTRA_LIBS@ ../libgmt.la ../libpsl.la -lnetcdf + + all: @buildtarget@ + +@@ -35,15 +35,16 @@ + \rm -f makefile config.cache config.log config.status + + clean: +- rm -f *.o xgridedit$(EXE) ++ rm -f *.o *.lo .libs xgridedit$(EXE) + + xgridedit: $(OBJS) $(EDITOBJS) xgridedit.o +- $(CC) $(CFLAGS) xgridedit.o -o xgridedit $(OBJS) \ +- $(EDITOBJS) $(CDF) $(XLIBS) $(LIBS) $(LDFLAGS) ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) xgridedit.lo -o \ ++ xgridedit $(OBJS:.o=.lo) $(EDITOBJS:.o=.lo) $(CDF) $(XLIBS) \ ++ $(LIBS) $(LDFLAGS) + + xgridedit.o: xGridEdit.c xgrid_utility.h xgrid_controls.h \ + xgrid_messages.h xgrid_view.h xgrid_textInput.h +- $(CC) $(CFLAGS) -c xGridEdit.c -o xgridedit.o ++ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c xGridEdit.c -o xgridedit.lo + + xgrid_utility.o: xgrid_utility.h + diff --git a/graphics/GMT/pkg/DESCR b/graphics/GMT/pkg/DESCR index 897ae454837..35c0ddfc219 100644 --- a/graphics/GMT/pkg/DESCR +++ b/graphics/GMT/pkg/DESCR @@ -7,3 +7,6 @@ perspective views in black and white, gray tone, hachure patterns, and 24-bit color. GMT supports 25 common map projections plus linear, log, and power scaling, and comes with support data such as coastlines, rivers, and political boundaries. + +The package also include 39 supplemetal programs, html documentation, +and examples. diff --git a/graphics/GMT/pkg/PLIST b/graphics/GMT/pkg/PLIST index 67a369267ab..888b631f518 100644 --- a/graphics/GMT/pkg/PLIST +++ b/graphics/GMT/pkg/PLIST @@ -1,14 +1,26 @@ -@comment $NetBSD: PLIST,v 1.3 2001/01/04 15:10:36 agc Exp $ +@comment $NetBSD: PLIST,v 1.4 2001/01/27 08:16:03 jtb Exp $ +bin/backtracker +bin/binlegs bin/blockmean bin/blockmedian bin/blockmode +bin/cpsdecode +bin/cpsencode +bin/dat2gmt bin/filter1d bin/fitcircle +bin/gmt2bin +bin/gmt2dat bin/gmtconvert bin/gmtdefaults +bin/gmtinfo +bin/gmtlegs +bin/gmtlist bin/gmtmath +bin/gmtpath bin/gmtselect bin/gmtset +bin/gmttrack bin/grd2cpt bin/grd2xyz bin/grdclip @@ -26,6 +38,7 @@ bin/grdmask bin/grdmath bin/grdpaste bin/grdproject +bin/grdraster bin/grdreformat bin/grdsample bin/grdtrack @@ -33,21 +46,36 @@ bin/grdtrend bin/grdvector bin/grdview bin/grdvolume +bin/gshhs +bin/gshhs_dp +bin/hotspotter +bin/img2grd +bin/img2mercgrd bin/makecpt +bin/makepattern bin/mapproject +bin/mgd77togmt bin/minmax bin/nearneighbor +bin/originator bin/project bin/psbasemap bin/psclip bin/pscoast bin/pscontour +bin/pscoupe bin/pshistogram bin/psimage bin/psmask +bin/psmeca +bin/psmegaplot +bin/pspolar bin/psrose bin/psscale +bin/pssegy +bin/pssegyz bin/pstext +bin/psvelo bin/pswiggle bin/psxy bin/psxyz @@ -58,6 +86,18 @@ bin/surface bin/trend1d bin/trend2d bin/triangulate +bin/x2sys_cross +bin/x2sys_datalist +bin/x_edit +bin/x_init +bin/x_list +bin/x_over +bin/x_remove +bin/x_report +bin/x_setup +bin/x_solve_dc_drift +bin/x_update +bin/xgridedit bin/xyz2grd include/gmt/gmt.h include/gmt/gmt_bcr.h @@ -88,6 +128,786 @@ lib/libpsl.la lib/libpsl.so lib/libpsl.so.0 lib/libpsl.so.0.0 +man/man1/backtracker.1 +man/man1/binlegs.1 +man/man1/blockmean.1 +man/man1/blockmedian.1 +man/man1/blockmode.1 +man/man1/cpsdecode.1 +man/man1/cpsencode.1 +man/man1/dat2gmt.1 +man/man1/filter1d.1 +man/man1/fitcircle.1 +man/man1/gmt.1 +man/man1/gmt2bin.1 +man/man1/gmt2dat.1 +man/man1/gmtconvert.1 +man/man1/gmtdefaults.1 +man/man1/gmtinfo.1 +man/man1/gmtlegs.1 +man/man1/gmtlist.1 +man/man1/gmtmath.1 +man/man1/gmtpath.1 +man/man1/gmtselect.1 +man/man1/gmtset.1 +man/man1/gmttrack.1 +man/man1/grd2cpt.1 +man/man1/grd2xyz.1 +man/man1/grdclip.1 +man/man1/grdcontour.1 +man/man1/grdcut.1 +man/man1/grdedit.1 +man/man1/grdfft.1 +man/man1/grdfilter.1 +man/man1/grdgradient.1 +man/man1/grdhisteq.1 +man/man1/grdimage.1 +man/man1/grdinfo.1 +man/man1/grdlandmask.1 +man/man1/grdmask.1 +man/man1/grdmath.1 +man/man1/grdpaste.1 +man/man1/grdproject.1 +man/man1/grdraster.1 +man/man1/grdreformat.1 +man/man1/grdsample.1 +man/man1/grdtrack.1 +man/man1/grdtrend.1 +man/man1/grdvector.1 +man/man1/grdview.1 +man/man1/grdvolume.1 +man/man1/hotspotter.1 +man/man1/img2grd.1 +man/man1/img2mercgrd.1 +man/man1/makecpt.1 +man/man1/makepattern.1 +man/man1/mapproject.1 +man/man1/mgd77togmt.1 +man/man1/minmax.1 +man/man1/nearneighbor.1 +man/man1/originator.1 +man/man1/project.1 +man/man1/psbasemap.1 +man/man1/psclip.1 +man/man1/pscoast.1 +man/man1/pscontour.1 +man/man1/pscoupe.1 +man/man1/pshistogram.1 +man/man1/psimage.1 +man/man1/pslib.1 +man/man1/psmask.1 +man/man1/psmeca.1 +man/man1/psmegaplot.1 +man/man1/pspolar.1 +man/man1/psrose.1 +man/man1/psscale.1 +man/man1/pssegy.1 +man/man1/pssegyz.1 +man/man1/pstext.1 +man/man1/psvelo.1 +man/man1/pswiggle.1 +man/man1/psxy.1 +man/man1/psxyz.1 +man/man1/sample1d.1 +man/man1/spectrum1d.1 +man/man1/splitxyz.1 +man/man1/surface.1 +man/man1/trend1d.1 +man/man1/trend2d.1 +man/man1/triangulate.1 +man/man1/x2sys_cross.1 +man/man1/x2sys_datalist.1 +man/man1/x_edit.1 +man/man1/x_init.1 +man/man1/x_list.1 +man/man1/x_over.1 +man/man1/x_remove.1 +man/man1/x_report.1 +man/man1/x_setup.1 +man/man1/x_solve_dc_drift.1 +man/man1/x_system.1 +man/man1/x_update.1 +man/man1/xyz2grd.1 +share/doc/gmt/GMT_Docs.ps +share/doc/gmt/GMT_Tutorial.ps +share/doc/html/gmt/doc/html/GMT_Docs/GMT_Docs.css +share/doc/html/gmt/doc/html/GMT_Docs/GMT_Docs.html +share/doc/html/gmt/doc/html/GMT_Docs/contents_motif.gif +share/doc/html/gmt/doc/html/GMT_Docs/footnode.html +share/doc/html/gmt/doc/html/GMT_Docs/img1.gif +share/doc/html/gmt/doc/html/GMT_Docs/img10.gif +share/doc/html/gmt/doc/html/GMT_Docs/img100.gif +share/doc/html/gmt/doc/html/GMT_Docs/img101.gif +share/doc/html/gmt/doc/html/GMT_Docs/img102.gif +share/doc/html/gmt/doc/html/GMT_Docs/img103.gif +share/doc/html/gmt/doc/html/GMT_Docs/img104.gif +share/doc/html/gmt/doc/html/GMT_Docs/img105.gif +share/doc/html/gmt/doc/html/GMT_Docs/img106.gif +share/doc/html/gmt/doc/html/GMT_Docs/img107.gif +share/doc/html/gmt/doc/html/GMT_Docs/img108.gif +share/doc/html/gmt/doc/html/GMT_Docs/img109.gif +share/doc/html/gmt/doc/html/GMT_Docs/img11.gif +share/doc/html/gmt/doc/html/GMT_Docs/img110.gif +share/doc/html/gmt/doc/html/GMT_Docs/img111.gif +share/doc/html/gmt/doc/html/GMT_Docs/img112.gif +share/doc/html/gmt/doc/html/GMT_Docs/img113.gif +share/doc/html/gmt/doc/html/GMT_Docs/img114.gif +share/doc/html/gmt/doc/html/GMT_Docs/img115.gif +share/doc/html/gmt/doc/html/GMT_Docs/img116.gif +share/doc/html/gmt/doc/html/GMT_Docs/img117.gif +share/doc/html/gmt/doc/html/GMT_Docs/img118.gif +share/doc/html/gmt/doc/html/GMT_Docs/img119.gif +share/doc/html/gmt/doc/html/GMT_Docs/img12.gif +share/doc/html/gmt/doc/html/GMT_Docs/img13.gif +share/doc/html/gmt/doc/html/GMT_Docs/img14.gif +share/doc/html/gmt/doc/html/GMT_Docs/img15.gif +share/doc/html/gmt/doc/html/GMT_Docs/img16.gif +share/doc/html/gmt/doc/html/GMT_Docs/img17.gif +share/doc/html/gmt/doc/html/GMT_Docs/img18.gif +share/doc/html/gmt/doc/html/GMT_Docs/img19.gif +share/doc/html/gmt/doc/html/GMT_Docs/img2.gif +share/doc/html/gmt/doc/html/GMT_Docs/img20.gif +share/doc/html/gmt/doc/html/GMT_Docs/img21.gif +share/doc/html/gmt/doc/html/GMT_Docs/img22.gif +share/doc/html/gmt/doc/html/GMT_Docs/img23.gif +share/doc/html/gmt/doc/html/GMT_Docs/img24.gif +share/doc/html/gmt/doc/html/GMT_Docs/img25.gif +share/doc/html/gmt/doc/html/GMT_Docs/img26.gif +share/doc/html/gmt/doc/html/GMT_Docs/img27.gif +share/doc/html/gmt/doc/html/GMT_Docs/img28.gif +share/doc/html/gmt/doc/html/GMT_Docs/img29.gif +share/doc/html/gmt/doc/html/GMT_Docs/img3.gif +share/doc/html/gmt/doc/html/GMT_Docs/img30.gif +share/doc/html/gmt/doc/html/GMT_Docs/img31.gif +share/doc/html/gmt/doc/html/GMT_Docs/img32.gif +share/doc/html/gmt/doc/html/GMT_Docs/img33.gif +share/doc/html/gmt/doc/html/GMT_Docs/img34.gif +share/doc/html/gmt/doc/html/GMT_Docs/img35.gif +share/doc/html/gmt/doc/html/GMT_Docs/img36.gif +share/doc/html/gmt/doc/html/GMT_Docs/img37.gif +share/doc/html/gmt/doc/html/GMT_Docs/img38.gif +share/doc/html/gmt/doc/html/GMT_Docs/img39.gif +share/doc/html/gmt/doc/html/GMT_Docs/img4.gif +share/doc/html/gmt/doc/html/GMT_Docs/img40.gif +share/doc/html/gmt/doc/html/GMT_Docs/img41.gif +share/doc/html/gmt/doc/html/GMT_Docs/img42.gif +share/doc/html/gmt/doc/html/GMT_Docs/img43.gif +share/doc/html/gmt/doc/html/GMT_Docs/img44.gif +share/doc/html/gmt/doc/html/GMT_Docs/img45.gif +share/doc/html/gmt/doc/html/GMT_Docs/img46.gif +share/doc/html/gmt/doc/html/GMT_Docs/img47.gif +share/doc/html/gmt/doc/html/GMT_Docs/img48.gif +share/doc/html/gmt/doc/html/GMT_Docs/img49.gif +share/doc/html/gmt/doc/html/GMT_Docs/img5.gif +share/doc/html/gmt/doc/html/GMT_Docs/img50.gif +share/doc/html/gmt/doc/html/GMT_Docs/img51.gif +share/doc/html/gmt/doc/html/GMT_Docs/img52.gif +share/doc/html/gmt/doc/html/GMT_Docs/img53.gif +share/doc/html/gmt/doc/html/GMT_Docs/img54.gif +share/doc/html/gmt/doc/html/GMT_Docs/img55.gif +share/doc/html/gmt/doc/html/GMT_Docs/img56.gif +share/doc/html/gmt/doc/html/GMT_Docs/img57.gif +share/doc/html/gmt/doc/html/GMT_Docs/img58.gif +share/doc/html/gmt/doc/html/GMT_Docs/img59.gif +share/doc/html/gmt/doc/html/GMT_Docs/img6.gif +share/doc/html/gmt/doc/html/GMT_Docs/img60.gif +share/doc/html/gmt/doc/html/GMT_Docs/img61.gif +share/doc/html/gmt/doc/html/GMT_Docs/img62.gif +share/doc/html/gmt/doc/html/GMT_Docs/img63.gif +share/doc/html/gmt/doc/html/GMT_Docs/img64.gif +share/doc/html/gmt/doc/html/GMT_Docs/img65.gif +share/doc/html/gmt/doc/html/GMT_Docs/img66.gif +share/doc/html/gmt/doc/html/GMT_Docs/img67.gif +share/doc/html/gmt/doc/html/GMT_Docs/img68.gif +share/doc/html/gmt/doc/html/GMT_Docs/img69.gif +share/doc/html/gmt/doc/html/GMT_Docs/img7.gif +share/doc/html/gmt/doc/html/GMT_Docs/img70.gif +share/doc/html/gmt/doc/html/GMT_Docs/img71.gif +share/doc/html/gmt/doc/html/GMT_Docs/img72.gif +share/doc/html/gmt/doc/html/GMT_Docs/img73.gif +share/doc/html/gmt/doc/html/GMT_Docs/img74.gif +share/doc/html/gmt/doc/html/GMT_Docs/img75.gif +share/doc/html/gmt/doc/html/GMT_Docs/img76.gif +share/doc/html/gmt/doc/html/GMT_Docs/img77.gif +share/doc/html/gmt/doc/html/GMT_Docs/img78.gif +share/doc/html/gmt/doc/html/GMT_Docs/img79.gif +share/doc/html/gmt/doc/html/GMT_Docs/img8.gif +share/doc/html/gmt/doc/html/GMT_Docs/img80.gif +share/doc/html/gmt/doc/html/GMT_Docs/img81.gif +share/doc/html/gmt/doc/html/GMT_Docs/img82.gif +share/doc/html/gmt/doc/html/GMT_Docs/img83.gif +share/doc/html/gmt/doc/html/GMT_Docs/img84.gif +share/doc/html/gmt/doc/html/GMT_Docs/img85.gif +share/doc/html/gmt/doc/html/GMT_Docs/img86.gif +share/doc/html/gmt/doc/html/GMT_Docs/img87.gif +share/doc/html/gmt/doc/html/GMT_Docs/img88.gif +share/doc/html/gmt/doc/html/GMT_Docs/img89.gif +share/doc/html/gmt/doc/html/GMT_Docs/img9.gif +share/doc/html/gmt/doc/html/GMT_Docs/img90.gif +share/doc/html/gmt/doc/html/GMT_Docs/img91.gif +share/doc/html/gmt/doc/html/GMT_Docs/img92.gif +share/doc/html/gmt/doc/html/GMT_Docs/img93.gif +share/doc/html/gmt/doc/html/GMT_Docs/img94.gif +share/doc/html/gmt/doc/html/GMT_Docs/img95.gif +share/doc/html/gmt/doc/html/GMT_Docs/img96.gif +share/doc/html/gmt/doc/html/GMT_Docs/img97.gif +share/doc/html/gmt/doc/html/GMT_Docs/img98.gif +share/doc/html/gmt/doc/html/GMT_Docs/img99.gif +share/doc/html/gmt/doc/html/GMT_Docs/index_motif.gif +share/doc/html/gmt/doc/html/GMT_Docs/next_motif.gif +share/doc/html/gmt/doc/html/GMT_Docs/next_motif_gr.gif +share/doc/html/gmt/doc/html/GMT_Docs/node1.html +share/doc/html/gmt/doc/html/GMT_Docs/node10.html +share/doc/html/gmt/doc/html/GMT_Docs/node100.html +share/doc/html/gmt/doc/html/GMT_Docs/node101.html +share/doc/html/gmt/doc/html/GMT_Docs/node102.html +share/doc/html/gmt/doc/html/GMT_Docs/node103.html +share/doc/html/gmt/doc/html/GMT_Docs/node104.html +share/doc/html/gmt/doc/html/GMT_Docs/node105.html +share/doc/html/gmt/doc/html/GMT_Docs/node106.html +share/doc/html/gmt/doc/html/GMT_Docs/node107.html +share/doc/html/gmt/doc/html/GMT_Docs/node108.html +share/doc/html/gmt/doc/html/GMT_Docs/node109.html +share/doc/html/gmt/doc/html/GMT_Docs/node11.html +share/doc/html/gmt/doc/html/GMT_Docs/node110.html +share/doc/html/gmt/doc/html/GMT_Docs/node111.html +share/doc/html/gmt/doc/html/GMT_Docs/node112.html +share/doc/html/gmt/doc/html/GMT_Docs/node113.html +share/doc/html/gmt/doc/html/GMT_Docs/node114.html +share/doc/html/gmt/doc/html/GMT_Docs/node115.html +share/doc/html/gmt/doc/html/GMT_Docs/node116.html +share/doc/html/gmt/doc/html/GMT_Docs/node117.html +share/doc/html/gmt/doc/html/GMT_Docs/node118.html +share/doc/html/gmt/doc/html/GMT_Docs/node119.html +share/doc/html/gmt/doc/html/GMT_Docs/node12.html +share/doc/html/gmt/doc/html/GMT_Docs/node120.html +share/doc/html/gmt/doc/html/GMT_Docs/node121.html +share/doc/html/gmt/doc/html/GMT_Docs/node122.html +share/doc/html/gmt/doc/html/GMT_Docs/node123.html +share/doc/html/gmt/doc/html/GMT_Docs/node124.html +share/doc/html/gmt/doc/html/GMT_Docs/node125.html +share/doc/html/gmt/doc/html/GMT_Docs/node126.html +share/doc/html/gmt/doc/html/GMT_Docs/node127.html +share/doc/html/gmt/doc/html/GMT_Docs/node128.html +share/doc/html/gmt/doc/html/GMT_Docs/node129.html +share/doc/html/gmt/doc/html/GMT_Docs/node13.html +share/doc/html/gmt/doc/html/GMT_Docs/node130.html +share/doc/html/gmt/doc/html/GMT_Docs/node131.html +share/doc/html/gmt/doc/html/GMT_Docs/node132.html +share/doc/html/gmt/doc/html/GMT_Docs/node133.html +share/doc/html/gmt/doc/html/GMT_Docs/node134.html +share/doc/html/gmt/doc/html/GMT_Docs/node135.html +share/doc/html/gmt/doc/html/GMT_Docs/node136.html +share/doc/html/gmt/doc/html/GMT_Docs/node137.html +share/doc/html/gmt/doc/html/GMT_Docs/node138.html +share/doc/html/gmt/doc/html/GMT_Docs/node139.html +share/doc/html/gmt/doc/html/GMT_Docs/node14.html +share/doc/html/gmt/doc/html/GMT_Docs/node140.html +share/doc/html/gmt/doc/html/GMT_Docs/node141.html +share/doc/html/gmt/doc/html/GMT_Docs/node142.html +share/doc/html/gmt/doc/html/GMT_Docs/node143.html +share/doc/html/gmt/doc/html/GMT_Docs/node144.html +share/doc/html/gmt/doc/html/GMT_Docs/node145.html +share/doc/html/gmt/doc/html/GMT_Docs/node146.html +share/doc/html/gmt/doc/html/GMT_Docs/node147.html +share/doc/html/gmt/doc/html/GMT_Docs/node148.html +share/doc/html/gmt/doc/html/GMT_Docs/node149.html +share/doc/html/gmt/doc/html/GMT_Docs/node15.html +share/doc/html/gmt/doc/html/GMT_Docs/node150.html +share/doc/html/gmt/doc/html/GMT_Docs/node151.html +share/doc/html/gmt/doc/html/GMT_Docs/node152.html +share/doc/html/gmt/doc/html/GMT_Docs/node153.html +share/doc/html/gmt/doc/html/GMT_Docs/node154.html +share/doc/html/gmt/doc/html/GMT_Docs/node155.html +share/doc/html/gmt/doc/html/GMT_Docs/node156.html +share/doc/html/gmt/doc/html/GMT_Docs/node157.html +share/doc/html/gmt/doc/html/GMT_Docs/node158.html +share/doc/html/gmt/doc/html/GMT_Docs/node159.html +share/doc/html/gmt/doc/html/GMT_Docs/node16.html +share/doc/html/gmt/doc/html/GMT_Docs/node160.html +share/doc/html/gmt/doc/html/GMT_Docs/node161.html +share/doc/html/gmt/doc/html/GMT_Docs/node162.html +share/doc/html/gmt/doc/html/GMT_Docs/node163.html +share/doc/html/gmt/doc/html/GMT_Docs/node164.html +share/doc/html/gmt/doc/html/GMT_Docs/node165.html +share/doc/html/gmt/doc/html/GMT_Docs/node166.html +share/doc/html/gmt/doc/html/GMT_Docs/node167.html +share/doc/html/gmt/doc/html/GMT_Docs/node168.html +share/doc/html/gmt/doc/html/GMT_Docs/node169.html +share/doc/html/gmt/doc/html/GMT_Docs/node17.html +share/doc/html/gmt/doc/html/GMT_Docs/node170.html +share/doc/html/gmt/doc/html/GMT_Docs/node171.html +share/doc/html/gmt/doc/html/GMT_Docs/node172.html +share/doc/html/gmt/doc/html/GMT_Docs/node173.html +share/doc/html/gmt/doc/html/GMT_Docs/node174.html +share/doc/html/gmt/doc/html/GMT_Docs/node175.html +share/doc/html/gmt/doc/html/GMT_Docs/node176.html +share/doc/html/gmt/doc/html/GMT_Docs/node177.html +share/doc/html/gmt/doc/html/GMT_Docs/node178.html +share/doc/html/gmt/doc/html/GMT_Docs/node179.html +share/doc/html/gmt/doc/html/GMT_Docs/node18.html +share/doc/html/gmt/doc/html/GMT_Docs/node180.html +share/doc/html/gmt/doc/html/GMT_Docs/node181.html +share/doc/html/gmt/doc/html/GMT_Docs/node182.html +share/doc/html/gmt/doc/html/GMT_Docs/node19.html +share/doc/html/gmt/doc/html/GMT_Docs/node2.html +share/doc/html/gmt/doc/html/GMT_Docs/node20.html +share/doc/html/gmt/doc/html/GMT_Docs/node21.html +share/doc/html/gmt/doc/html/GMT_Docs/node22.html +share/doc/html/gmt/doc/html/GMT_Docs/node23.html +share/doc/html/gmt/doc/html/GMT_Docs/node24.html +share/doc/html/gmt/doc/html/GMT_Docs/node25.html +share/doc/html/gmt/doc/html/GMT_Docs/node26.html +share/doc/html/gmt/doc/html/GMT_Docs/node27.html +share/doc/html/gmt/doc/html/GMT_Docs/node28.html +share/doc/html/gmt/doc/html/GMT_Docs/node29.html +share/doc/html/gmt/doc/html/GMT_Docs/node3.html +share/doc/html/gmt/doc/html/GMT_Docs/node30.html +share/doc/html/gmt/doc/html/GMT_Docs/node31.html +share/doc/html/gmt/doc/html/GMT_Docs/node32.html +share/doc/html/gmt/doc/html/GMT_Docs/node33.html +share/doc/html/gmt/doc/html/GMT_Docs/node34.html +share/doc/html/gmt/doc/html/GMT_Docs/node35.html +share/doc/html/gmt/doc/html/GMT_Docs/node36.html +share/doc/html/gmt/doc/html/GMT_Docs/node37.html +share/doc/html/gmt/doc/html/GMT_Docs/node38.html +share/doc/html/gmt/doc/html/GMT_Docs/node39.html +share/doc/html/gmt/doc/html/GMT_Docs/node4.html +share/doc/html/gmt/doc/html/GMT_Docs/node40.html +share/doc/html/gmt/doc/html/GMT_Docs/node41.html +share/doc/html/gmt/doc/html/GMT_Docs/node42.html +share/doc/html/gmt/doc/html/GMT_Docs/node43.html +share/doc/html/gmt/doc/html/GMT_Docs/node44.html +share/doc/html/gmt/doc/html/GMT_Docs/node45.html +share/doc/html/gmt/doc/html/GMT_Docs/node46.html +share/doc/html/gmt/doc/html/GMT_Docs/node47.html +share/doc/html/gmt/doc/html/GMT_Docs/node48.html +share/doc/html/gmt/doc/html/GMT_Docs/node49.html +share/doc/html/gmt/doc/html/GMT_Docs/node5.html +share/doc/html/gmt/doc/html/GMT_Docs/node50.html +share/doc/html/gmt/doc/html/GMT_Docs/node51.html +share/doc/html/gmt/doc/html/GMT_Docs/node52.html +share/doc/html/gmt/doc/html/GMT_Docs/node53.html +share/doc/html/gmt/doc/html/GMT_Docs/node54.html +share/doc/html/gmt/doc/html/GMT_Docs/node55.html +share/doc/html/gmt/doc/html/GMT_Docs/node56.html +share/doc/html/gmt/doc/html/GMT_Docs/node57.html +share/doc/html/gmt/doc/html/GMT_Docs/node58.html +share/doc/html/gmt/doc/html/GMT_Docs/node59.html +share/doc/html/gmt/doc/html/GMT_Docs/node6.html +share/doc/html/gmt/doc/html/GMT_Docs/node60.html +share/doc/html/gmt/doc/html/GMT_Docs/node61.html +share/doc/html/gmt/doc/html/GMT_Docs/node62.html +share/doc/html/gmt/doc/html/GMT_Docs/node63.html +share/doc/html/gmt/doc/html/GMT_Docs/node64.html +share/doc/html/gmt/doc/html/GMT_Docs/node65.html +share/doc/html/gmt/doc/html/GMT_Docs/node66.html +share/doc/html/gmt/doc/html/GMT_Docs/node67.html +share/doc/html/gmt/doc/html/GMT_Docs/node68.html +share/doc/html/gmt/doc/html/GMT_Docs/node69.html +share/doc/html/gmt/doc/html/GMT_Docs/node7.html +share/doc/html/gmt/doc/html/GMT_Docs/node70.html +share/doc/html/gmt/doc/html/GMT_Docs/node71.html +share/doc/html/gmt/doc/html/GMT_Docs/node72.html +share/doc/html/gmt/doc/html/GMT_Docs/node73.html +share/doc/html/gmt/doc/html/GMT_Docs/node74.html +share/doc/html/gmt/doc/html/GMT_Docs/node75.html +share/doc/html/gmt/doc/html/GMT_Docs/node76.html +share/doc/html/gmt/doc/html/GMT_Docs/node77.html +share/doc/html/gmt/doc/html/GMT_Docs/node78.html +share/doc/html/gmt/doc/html/GMT_Docs/node79.html +share/doc/html/gmt/doc/html/GMT_Docs/node8.html +share/doc/html/gmt/doc/html/GMT_Docs/node80.html +share/doc/html/gmt/doc/html/GMT_Docs/node81.html +share/doc/html/gmt/doc/html/GMT_Docs/node82.html +share/doc/html/gmt/doc/html/GMT_Docs/node83.html +share/doc/html/gmt/doc/html/GMT_Docs/node84.html +share/doc/html/gmt/doc/html/GMT_Docs/node85.html +share/doc/html/gmt/doc/html/GMT_Docs/node86.html +share/doc/html/gmt/doc/html/GMT_Docs/node87.html +share/doc/html/gmt/doc/html/GMT_Docs/node88.html +share/doc/html/gmt/doc/html/GMT_Docs/node89.html +share/doc/html/gmt/doc/html/GMT_Docs/node9.html +share/doc/html/gmt/doc/html/GMT_Docs/node90.html +share/doc/html/gmt/doc/html/GMT_Docs/node91.html +share/doc/html/gmt/doc/html/GMT_Docs/node92.html +share/doc/html/gmt/doc/html/GMT_Docs/node93.html +share/doc/html/gmt/doc/html/GMT_Docs/node94.html +share/doc/html/gmt/doc/html/GMT_Docs/node95.html +share/doc/html/gmt/doc/html/GMT_Docs/node96.html +share/doc/html/gmt/doc/html/GMT_Docs/node97.html +share/doc/html/gmt/doc/html/GMT_Docs/node98.html +share/doc/html/gmt/doc/html/GMT_Docs/node99.html +share/doc/html/gmt/doc/html/GMT_Docs/previous_motif.gif +share/doc/html/gmt/doc/html/GMT_Docs/previous_motif_gr.gif +share/doc/html/gmt/doc/html/GMT_Docs/up_motif.gif +share/doc/html/gmt/doc/html/GMT_Docs/up_motif_gr.gif +share/doc/html/gmt/doc/html/backtracker.html +share/doc/html/gmt/doc/html/binlegs.html +share/doc/html/gmt/doc/html/blockmean.html +share/doc/html/gmt/doc/html/blockmedian.html +share/doc/html/gmt/doc/html/blockmode.html +share/doc/html/gmt/doc/html/cpsdecode.html +share/doc/html/gmt/doc/html/cpsencode.html +share/doc/html/gmt/doc/html/dat2gmt.html +share/doc/html/gmt/doc/html/filter1d.html +share/doc/html/gmt/doc/html/fitcircle.html +share/doc/html/gmt/doc/html/gmt.html +share/doc/html/gmt/doc/html/gmt2bin.html +share/doc/html/gmt/doc/html/gmt2dat.html +share/doc/html/gmt/doc/html/gmtconvert.html +share/doc/html/gmt/doc/html/gmtdefaults.html +share/doc/html/gmt/doc/html/gmtinfo.html +share/doc/html/gmt/doc/html/gmtlegs.html +share/doc/html/gmt/doc/html/gmtlist.html +share/doc/html/gmt/doc/html/gmtmath.html +share/doc/html/gmt/doc/html/gmtpath.html +share/doc/html/gmt/doc/html/gmtselect.html +share/doc/html/gmt/doc/html/gmtset.html +share/doc/html/gmt/doc/html/gmttrack.html +share/doc/html/gmt/doc/html/grd2cpt.html +share/doc/html/gmt/doc/html/grd2xyz.html +share/doc/html/gmt/doc/html/grdclip.html +share/doc/html/gmt/doc/html/grdcontour.html +share/doc/html/gmt/doc/html/grdcut.html +share/doc/html/gmt/doc/html/grdedit.html +share/doc/html/gmt/doc/html/grdfft.html +share/doc/html/gmt/doc/html/grdfilter.html +share/doc/html/gmt/doc/html/grdgradient.html +share/doc/html/gmt/doc/html/grdhisteq.html +share/doc/html/gmt/doc/html/grdimage.html +share/doc/html/gmt/doc/html/grdinfo.html +share/doc/html/gmt/doc/html/grdlandmask.html +share/doc/html/gmt/doc/html/grdmask.html +share/doc/html/gmt/doc/html/grdmath.html +share/doc/html/gmt/doc/html/grdpaste.html +share/doc/html/gmt/doc/html/grdproject.html +share/doc/html/gmt/doc/html/grdraster.html +share/doc/html/gmt/doc/html/grdreformat.html +share/doc/html/gmt/doc/html/grdsample.html +share/doc/html/gmt/doc/html/grdtrack.html +share/doc/html/gmt/doc/html/grdtrend.html +share/doc/html/gmt/doc/html/grdvector.html +share/doc/html/gmt/doc/html/grdview.html +share/doc/html/gmt/doc/html/grdvolume.html +share/doc/html/gmt/doc/html/hotspotter.html +share/doc/html/gmt/doc/html/img2grd.html +share/doc/html/gmt/doc/html/img2mercgrd.html +share/doc/html/gmt/doc/html/makecpt.html +share/doc/html/gmt/doc/html/makepattern.html +share/doc/html/gmt/doc/html/mapproject.html +share/doc/html/gmt/doc/html/mgd77togmt.html +share/doc/html/gmt/doc/html/minmax.html +share/doc/html/gmt/doc/html/nearneighbor.html +share/doc/html/gmt/doc/html/originator.html +share/doc/html/gmt/doc/html/project.html +share/doc/html/gmt/doc/html/psbasemap.html +share/doc/html/gmt/doc/html/psclip.html +share/doc/html/gmt/doc/html/pscoast.html +share/doc/html/gmt/doc/html/pscontour.html +share/doc/html/gmt/doc/html/pscoupe.html +share/doc/html/gmt/doc/html/pshistogram.html +share/doc/html/gmt/doc/html/psimage.html +share/doc/html/gmt/doc/html/pslib.html +share/doc/html/gmt/doc/html/psmask.html +share/doc/html/gmt/doc/html/psmeca.html +share/doc/html/gmt/doc/html/psmegaplot.html +share/doc/html/gmt/doc/html/pspolar.html +share/doc/html/gmt/doc/html/psrose.html +share/doc/html/gmt/doc/html/psscale.html +share/doc/html/gmt/doc/html/pssegy.html +share/doc/html/gmt/doc/html/pssegyz.html +share/doc/html/gmt/doc/html/pstext.html +share/doc/html/gmt/doc/html/psvelo.html +share/doc/html/gmt/doc/html/pswiggle.html +share/doc/html/gmt/doc/html/psxy.html +share/doc/html/gmt/doc/html/psxyz.html +share/doc/html/gmt/doc/html/sample1d.html +share/doc/html/gmt/doc/html/spectrum1d.html +share/doc/html/gmt/doc/html/splitxyz.html +share/doc/html/gmt/doc/html/surface.html +share/doc/html/gmt/doc/html/trend1d.html +share/doc/html/gmt/doc/html/trend2d.html +share/doc/html/gmt/doc/html/triangulate.html +share/doc/html/gmt/doc/html/tutorial/contents_motif.gif +share/doc/html/gmt/doc/html/tutorial/footnode.html +share/doc/html/gmt/doc/html/tutorial/img1.gif +share/doc/html/gmt/doc/html/tutorial/img10.gif +share/doc/html/gmt/doc/html/tutorial/img11.gif +share/doc/html/gmt/doc/html/tutorial/img12.gif +share/doc/html/gmt/doc/html/tutorial/img13.gif +share/doc/html/gmt/doc/html/tutorial/img14.gif +share/doc/html/gmt/doc/html/tutorial/img15.gif +share/doc/html/gmt/doc/html/tutorial/img16.gif +share/doc/html/gmt/doc/html/tutorial/img17.gif +share/doc/html/gmt/doc/html/tutorial/img18.gif +share/doc/html/gmt/doc/html/tutorial/img19.gif +share/doc/html/gmt/doc/html/tutorial/img2.gif +share/doc/html/gmt/doc/html/tutorial/img20.gif +share/doc/html/gmt/doc/html/tutorial/img21.gif +share/doc/html/gmt/doc/html/tutorial/img22.gif +share/doc/html/gmt/doc/html/tutorial/img23.gif +share/doc/html/gmt/doc/html/tutorial/img24.gif +share/doc/html/gmt/doc/html/tutorial/img25.gif +share/doc/html/gmt/doc/html/tutorial/img26.gif +share/doc/html/gmt/doc/html/tutorial/img27.gif +share/doc/html/gmt/doc/html/tutorial/img28.gif +share/doc/html/gmt/doc/html/tutorial/img29.gif +share/doc/html/gmt/doc/html/tutorial/img3.gif +share/doc/html/gmt/doc/html/tutorial/img30.gif +share/doc/html/gmt/doc/html/tutorial/img31.gif +share/doc/html/gmt/doc/html/tutorial/img32.gif +share/doc/html/gmt/doc/html/tutorial/img33.gif +share/doc/html/gmt/doc/html/tutorial/img34.gif +share/doc/html/gmt/doc/html/tutorial/img35.gif +share/doc/html/gmt/doc/html/tutorial/img36.gif +share/doc/html/gmt/doc/html/tutorial/img37.gif +share/doc/html/gmt/doc/html/tutorial/img38.gif +share/doc/html/gmt/doc/html/tutorial/img4.gif +share/doc/html/gmt/doc/html/tutorial/img5.gif +share/doc/html/gmt/doc/html/tutorial/img6.gif +share/doc/html/gmt/doc/html/tutorial/img7.gif +share/doc/html/gmt/doc/html/tutorial/img8.gif +share/doc/html/gmt/doc/html/tutorial/img9.gif +share/doc/html/gmt/doc/html/tutorial/index_motif.gif +share/doc/html/gmt/doc/html/tutorial/next_motif.gif +share/doc/html/gmt/doc/html/tutorial/next_motif_gr.gif +share/doc/html/gmt/doc/html/tutorial/node1.html +share/doc/html/gmt/doc/html/tutorial/node10.html +share/doc/html/gmt/doc/html/tutorial/node11.html +share/doc/html/gmt/doc/html/tutorial/node12.html +share/doc/html/gmt/doc/html/tutorial/node13.html +share/doc/html/gmt/doc/html/tutorial/node14.html +share/doc/html/gmt/doc/html/tutorial/node15.html +share/doc/html/gmt/doc/html/tutorial/node16.html +share/doc/html/gmt/doc/html/tutorial/node17.html +share/doc/html/gmt/doc/html/tutorial/node18.html +share/doc/html/gmt/doc/html/tutorial/node19.html +share/doc/html/gmt/doc/html/tutorial/node2.html +share/doc/html/gmt/doc/html/tutorial/node20.html +share/doc/html/gmt/doc/html/tutorial/node21.html +share/doc/html/gmt/doc/html/tutorial/node22.html +share/doc/html/gmt/doc/html/tutorial/node23.html +share/doc/html/gmt/doc/html/tutorial/node24.html +share/doc/html/gmt/doc/html/tutorial/node25.html +share/doc/html/gmt/doc/html/tutorial/node26.html +share/doc/html/gmt/doc/html/tutorial/node27.html +share/doc/html/gmt/doc/html/tutorial/node28.html +share/doc/html/gmt/doc/html/tutorial/node29.html +share/doc/html/gmt/doc/html/tutorial/node3.html +share/doc/html/gmt/doc/html/tutorial/node30.html +share/doc/html/gmt/doc/html/tutorial/node31.html +share/doc/html/gmt/doc/html/tutorial/node32.html +share/doc/html/gmt/doc/html/tutorial/node33.html +share/doc/html/gmt/doc/html/tutorial/node34.html +share/doc/html/gmt/doc/html/tutorial/node35.html +share/doc/html/gmt/doc/html/tutorial/node36.html +share/doc/html/gmt/doc/html/tutorial/node37.html +share/doc/html/gmt/doc/html/tutorial/node38.html +share/doc/html/gmt/doc/html/tutorial/node39.html +share/doc/html/gmt/doc/html/tutorial/node4.html +share/doc/html/gmt/doc/html/tutorial/node40.html +share/doc/html/gmt/doc/html/tutorial/node41.html +share/doc/html/gmt/doc/html/tutorial/node42.html +share/doc/html/gmt/doc/html/tutorial/node43.html +share/doc/html/gmt/doc/html/tutorial/node44.html +share/doc/html/gmt/doc/html/tutorial/node45.html +share/doc/html/gmt/doc/html/tutorial/node46.html +share/doc/html/gmt/doc/html/tutorial/node47.html +share/doc/html/gmt/doc/html/tutorial/node48.html +share/doc/html/gmt/doc/html/tutorial/node49.html +share/doc/html/gmt/doc/html/tutorial/node5.html +share/doc/html/gmt/doc/html/tutorial/node50.html +share/doc/html/gmt/doc/html/tutorial/node51.html +share/doc/html/gmt/doc/html/tutorial/node52.html +share/doc/html/gmt/doc/html/tutorial/node53.html +share/doc/html/gmt/doc/html/tutorial/node54.html +share/doc/html/gmt/doc/html/tutorial/node55.html +share/doc/html/gmt/doc/html/tutorial/node56.html +share/doc/html/gmt/doc/html/tutorial/node57.html +share/doc/html/gmt/doc/html/tutorial/node58.html +share/doc/html/gmt/doc/html/tutorial/node59.html +share/doc/html/gmt/doc/html/tutorial/node6.html +share/doc/html/gmt/doc/html/tutorial/node60.html +share/doc/html/gmt/doc/html/tutorial/node61.html +share/doc/html/gmt/doc/html/tutorial/node62.html +share/doc/html/gmt/doc/html/tutorial/node63.html +share/doc/html/gmt/doc/html/tutorial/node64.html +share/doc/html/gmt/doc/html/tutorial/node65.html +share/doc/html/gmt/doc/html/tutorial/node66.html +share/doc/html/gmt/doc/html/tutorial/node67.html +share/doc/html/gmt/doc/html/tutorial/node68.html +share/doc/html/gmt/doc/html/tutorial/node69.html +share/doc/html/gmt/doc/html/tutorial/node7.html +share/doc/html/gmt/doc/html/tutorial/node70.html +share/doc/html/gmt/doc/html/tutorial/node71.html +share/doc/html/gmt/doc/html/tutorial/node72.html +share/doc/html/gmt/doc/html/tutorial/node73.html +share/doc/html/gmt/doc/html/tutorial/node74.html +share/doc/html/gmt/doc/html/tutorial/node75.html +share/doc/html/gmt/doc/html/tutorial/node76.html +share/doc/html/gmt/doc/html/tutorial/node77.html +share/doc/html/gmt/doc/html/tutorial/node78.html +share/doc/html/gmt/doc/html/tutorial/node79.html +share/doc/html/gmt/doc/html/tutorial/node8.html +share/doc/html/gmt/doc/html/tutorial/node80.html +share/doc/html/gmt/doc/html/tutorial/node9.html +share/doc/html/gmt/doc/html/tutorial/previous_motif.gif +share/doc/html/gmt/doc/html/tutorial/previous_motif_gr.gif +share/doc/html/gmt/doc/html/tutorial/tutorial.css +share/doc/html/gmt/doc/html/tutorial/tutorial.html +share/doc/html/gmt/doc/html/tutorial/up_motif.gif +share/doc/html/gmt/doc/html/tutorial/up_motif_gr.gif +share/doc/html/gmt/doc/html/x2sys_cross.html +share/doc/html/gmt/doc/html/x2sys_datalist.html +share/doc/html/gmt/doc/html/x_edit.html +share/doc/html/gmt/doc/html/x_init.html +share/doc/html/gmt/doc/html/x_list.html +share/doc/html/gmt/doc/html/x_over.html +share/doc/html/gmt/doc/html/x_remove.html +share/doc/html/gmt/doc/html/x_report.html +share/doc/html/gmt/doc/html/x_setup.html +share/doc/html/gmt/doc/html/x_solve_dc_drift.html +share/doc/html/gmt/doc/html/x_system.html +share/doc/html/gmt/doc/html/x_update.html +share/doc/html/gmt/doc/html/xyz2grd.html +share/doc/html/gmt/doc/ps +share/doc/html/gmt/gmt_man.html +share/doc/html/gmt/gmt_services.html +share/doc/html/gmt/gmt_suppl.html +share/doc/html/gmt/images/gmt_back.gif +share/doc/html/gmt/images/gmt_bar.gif +share/doc/html/gmt/images/gmt_small_logo.gif +share/examples/gmt/README.SCRIPTS +share/examples/gmt/do_examples.bash +share/examples/gmt/do_examples.csh +share/examples/gmt/do_view.bash +share/examples/gmt/do_view.csh +share/examples/gmt/ex01/job01.bash +share/examples/gmt/ex01/job01.csh +share/examples/gmt/ex01/osu91a1f_16.grd +share/examples/gmt/ex02/etopo5.grd +share/examples/gmt/ex02/geosat5.grd +share/examples/gmt/ex02/job02.bash +share/examples/gmt/ex02/job02.csh +share/examples/gmt/ex03/job03.bash +share/examples/gmt/ex03/job03.csh +share/examples/gmt/ex03/sat.xyg +share/examples/gmt/ex03/ship.xyg +share/examples/gmt/ex03/shipsat.dos +share/examples/gmt/ex04/geoid.cpt +share/examples/gmt/ex04/geoid.grd +share/examples/gmt/ex04/job04.bash +share/examples/gmt/ex04/job04.csh +share/examples/gmt/ex04/job4c.bash +share/examples/gmt/ex04/job4c.csh +share/examples/gmt/ex04/topo.cpt +share/examples/gmt/ex04/topo.grd +share/examples/gmt/ex05/job05.bash +share/examples/gmt/ex05/job05.csh +share/examples/gmt/ex06/fractures.d +share/examples/gmt/ex06/job06.bash +share/examples/gmt/ex06/job06.csh +share/examples/gmt/ex06/v3206.t +share/examples/gmt/ex07/fz.xy +share/examples/gmt/ex07/isochron.xy +share/examples/gmt/ex07/job07.bash +share/examples/gmt/ex07/job07.csh +share/examples/gmt/ex07/quakes.xym +share/examples/gmt/ex07/ridge.xy +share/examples/gmt/ex08/job08.bash +share/examples/gmt/ex08/job08.csh +share/examples/gmt/ex08/topo.grd +share/examples/gmt/ex09/all.xys +share/examples/gmt/ex09/fz.xy +share/examples/gmt/ex09/job09.bash +share/examples/gmt/ex09/job09.csh +share/examples/gmt/ex09/ridge.xy +share/examples/gmt/ex09/track_d.107.xys +share/examples/gmt/ex09/track_d.109.xys +share/examples/gmt/ex09/track_d.111.xys +share/examples/gmt/ex09/track_d.137.xys +share/examples/gmt/ex09/track_d.139.xys +share/examples/gmt/ex09/track_d.165.xys +share/examples/gmt/ex09/track_d.167.xys +share/examples/gmt/ex09/track_d.193.xys +share/examples/gmt/ex09/track_d.195.xys +share/examples/gmt/ex09/track_d.197.xys +share/examples/gmt/ex09/track_d.21.xys +share/examples/gmt/ex09/track_d.223.xys +share/examples/gmt/ex09/track_d.225.xys +share/examples/gmt/ex09/track_d.23.xys +share/examples/gmt/ex09/track_d.25.xys +share/examples/gmt/ex09/track_d.251.xys +share/examples/gmt/ex09/track_d.253.xys +share/examples/gmt/ex09/track_d.279.xys +share/examples/gmt/ex09/track_d.281.xys +share/examples/gmt/ex09/track_d.283.xys +share/examples/gmt/ex09/track_d.309.xys +share/examples/gmt/ex09/track_d.311.xys +share/examples/gmt/ex09/track_d.337.xys +share/examples/gmt/ex09/track_d.339.xys +share/examples/gmt/ex09/track_d.365.xys +share/examples/gmt/ex09/track_d.367.xys +share/examples/gmt/ex09/track_d.369.xys +share/examples/gmt/ex09/track_d.395.xys +share/examples/gmt/ex09/track_d.397.xys +share/examples/gmt/ex09/track_d.423.xys +share/examples/gmt/ex09/track_d.425.xys +share/examples/gmt/ex09/track_d.427.xys +share/examples/gmt/ex09/track_d.451.xys +share/examples/gmt/ex09/track_d.453.xys +share/examples/gmt/ex09/track_d.455.xys +share/examples/gmt/ex09/track_d.481.xys +share/examples/gmt/ex09/track_d.483.xys +share/examples/gmt/ex09/track_d.49.xys +share/examples/gmt/ex09/track_d.51.xys +share/examples/gmt/ex09/track_d.53.xys +share/examples/gmt/ex09/track_d.79.xys +share/examples/gmt/ex09/track_d.81.xys +share/examples/gmt/ex10/agu.d +share/examples/gmt/ex10/job10.bash +share/examples/gmt/ex10/job10.csh +share/examples/gmt/ex11/contoured_cube.ps.bz2 +share/examples/gmt/ex11/job11.bash +share/examples/gmt/ex11/job11.csh +share/examples/gmt/ex11/rgb_cube.awk +share/examples/gmt/ex12/job12.bash +share/examples/gmt/ex12/job12.csh +share/examples/gmt/ex12/table_5.11 +share/examples/gmt/ex13/job13.bash +share/examples/gmt/ex13/job13.csh +share/examples/gmt/ex14/job14.bash +share/examples/gmt/ex14/job14.csh +share/examples/gmt/ex14/table_5.11 +share/examples/gmt/ex15/job15.bash +share/examples/gmt/ex15/job15.csh +share/examples/gmt/ex15/ship.xyz +share/examples/gmt/ex16/ex16.cpt +share/examples/gmt/ex16/job16.bash +share/examples/gmt/ex16/job16.csh +share/examples/gmt/ex16/table_5.11 +share/examples/gmt/ex17/etopo5.grd +share/examples/gmt/ex17/geoid.grd +share/examples/gmt/ex17/job17.bash +share/examples/gmt/ex17/job17.csh +share/examples/gmt/ex18/job18.bash +share/examples/gmt/ex18/job18.csh +share/examples/gmt/ex18/ss_grav.grd +share/examples/gmt/ex19/job19.bash +share/examples/gmt/ex19/job19.csh +share/examples/gmt/ex20/bullseye.def +share/examples/gmt/ex20/job20.bash +share/examples/gmt/ex20/job20.csh +share/examples/gmt/ex20/make_symbol +share/examples/gmt/ex20/volcano.def +share/examples/gmt/tutorial/bermuda.grd +share/examples/gmt/tutorial/data +share/examples/gmt/tutorial/quakes.cpt +share/examples/gmt/tutorial/quakes.ngdc +share/examples/gmt/tutorial/ship.xyz +share/examples/gmt/tutorial/topo.cpt +share/examples/gmt/tutorial/us.grd share/gmt/.gmtdefaults_SI share/gmt/.gmtdefaults_SI.orig share/gmt/.gmtdefaults_US @@ -122,10 +942,15 @@ share/gmt/binned_border_l.cdf share/gmt/binned_river_c.cdf share/gmt/binned_river_i.cdf share/gmt/binned_river_l.cdf +@unexec install-info --delete --info-dir=%D/info %D/share/gmt/dbase/grdraster.info +share/gmt/dbase/grdraster.info +@exec install-info --info-dir=%D/info %D/share/gmt/dbase/grdraster.info share/gmt/gmt.conf share/gmt/gmt.conf.orig share/gmt/gmtformats.d share/gmt/gmtmedia.d +share/gmt/mgg/carter.d +share/gmt/mgg/gmtfile_paths share/gmt/ps_pattern_01.ras share/gmt/ps_pattern_02.ras share/gmt/ps_pattern_03.ras @@ -216,79 +1041,36 @@ share/gmt/ps_pattern_87.ras share/gmt/ps_pattern_88.ras share/gmt/ps_pattern_89.ras share/gmt/ps_pattern_90.ras -man/man1/blockmean.1 -man/man1/blockmedian.1 -man/man1/blockmode.1 -man/man1/filter1d.1 -man/man1/fitcircle.1 -man/man1/gmt.1 -man/man1/gmtconvert.1 -man/man1/gmtdefaults.1 -man/man1/gmtmath.1 -man/man1/gmtselect.1 -man/man1/gmtset.1 -man/man1/grd2cpt.1 -man/man1/grd2xyz.1 -man/man1/grdclip.1 -man/man1/grdcontour.1 -man/man1/grdcut.1 -man/man1/grdedit.1 -man/man1/grdfft.1 -man/man1/grdfilter.1 -man/man1/grdgradient.1 -man/man1/grdhisteq.1 -man/man1/grdimage.1 -man/man1/grdinfo.1 -man/man1/grdlandmask.1 -man/man1/grdmask.1 -man/man1/grdmath.1 -man/man1/grdpaste.1 -man/man1/grdproject.1 -man/man1/grdreformat.1 -man/man1/grdsample.1 -man/man1/grdtrack.1 -man/man1/grdtrend.1 -man/man1/grdvector.1 -man/man1/grdview.1 -man/man1/grdvolume.1 -man/man1/makecpt.1 -man/man1/mapproject.1 -man/man1/minmax.1 -man/man1/nearneighbor.1 -man/man1/project.1 -man/man1/psbasemap.1 -man/man1/psclip.1 -man/man1/pscoast.1 -man/man1/pscontour.1 -man/man1/pshistogram.1 -man/man1/psimage.1 -man/man1/pslib.1 -man/man1/psmask.1 -man/man1/psrose.1 -man/man1/psscale.1 -man/man1/pstext.1 -man/man1/pswiggle.1 -man/man1/psxy.1 -man/man1/psxyz.1 -man/man1/sample1d.1 -man/man1/spectrum1d.1 -man/man1/splitxyz.1 -man/man1/surface.1 -man/man1/trend1d.1 -man/man1/trend2d.1 -man/man1/triangulate.1 -man/man1/xyz2grd.1 -share/doc/gmt/GMT_Docs.ps -share/doc/gmt/GMT_Tutorial.ps -share/examples/gmt/bermuda.grd -share/examples/gmt/data -share/examples/gmt/quakes.cpt -share/examples/gmt/quakes.ngdc -share/examples/gmt/ship.xyz -share/examples/gmt/topo.cpt -share/examples/gmt/us.grd +@dirrm share/gmt/mgg +@dirrm share/gmt/dbase +@dirrm share/gmt @dirrm share/examples/gmt/tutorial +@dirrm share/examples/gmt/ex20 +@dirrm share/examples/gmt/ex19 +@dirrm share/examples/gmt/ex18 +@dirrm share/examples/gmt/ex17 +@dirrm share/examples/gmt/ex16 +@dirrm share/examples/gmt/ex15 +@dirrm share/examples/gmt/ex14 +@dirrm share/examples/gmt/ex13 +@dirrm share/examples/gmt/ex12 +@dirrm share/examples/gmt/ex11 +@dirrm share/examples/gmt/ex10 +@dirrm share/examples/gmt/ex09 +@dirrm share/examples/gmt/ex08 +@dirrm share/examples/gmt/ex07 +@dirrm share/examples/gmt/ex06 +@dirrm share/examples/gmt/ex05 +@dirrm share/examples/gmt/ex04 +@dirrm share/examples/gmt/ex03 +@dirrm share/examples/gmt/ex02 +@dirrm share/examples/gmt/ex01 @dirrm share/examples/gmt -@unexec rmdir %D/include/gmt 2>/dev/null || true -@unexec rmdir %D/share/doc/gmt 2>/dev/null || true -@unexec rmdir %D/share/gmt 2>/dev/null || true +@dirrm share/doc/html/gmt/images +@dirrm share/doc/html/gmt/doc/html/tutorial +@dirrm share/doc/html/gmt/doc/html/GMT_Docs +@dirrm share/doc/html/gmt/doc/html +@dirrm share/doc/html/gmt/doc +@dirrm share/doc/html/gmt +@dirrm share/doc/gmt +@dirrm include/gmt |