diff options
author | jtb <jtb@pkgsrc.org> | 2001-04-26 20:56:38 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-04-26 20:56:38 +0000 |
commit | 9021e3354bdaefeab8fc744a8af4415f462c898b (patch) | |
tree | a283b8460a3470d2d03abaf963cde6bd4d91ced2 /graphics/iGMT | |
parent | 2aa84346c77c3416758bc3b0e6f46b52fb0232c3 (diff) | |
download | pkgsrc-9021e3354bdaefeab8fc744a8af4415f462c898b.tar.gz |
A newer version of GMT is in pkgsrc now, update dependence to reflect this.
Diffstat (limited to 'graphics/iGMT')
-rw-r--r-- | graphics/iGMT/Makefile | 45 |
1 files changed, 15 insertions, 30 deletions
diff --git a/graphics/iGMT/Makefile b/graphics/iGMT/Makefile index e2e64a31458..c67778342d4 100644 --- a/graphics/iGMT/Makefile +++ b/graphics/iGMT/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/04/14 21:43:44 jtb Exp $ +# $NetBSD: Makefile,v 1.5 2001/04/26 20:56:38 jtb Exp $ DISTNAME= igmt_v1.2 PKGNAME= iGMT-1.2 @@ -9,7 +9,7 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://op.gfz-potsdam.de/igmt/ COMMENT= Interactive Mapping of Geoscientific Datasets -DEPENDS+= GMT-3.3.6:../../graphics/GMT +DEPENDS+= GMT>=3.3.6:../../graphics/GMT DEPENDS+= tcl-[0-9]*:../../lang/tcl DEPENDS+= tk-[0-9]*:../../x11/tk DEPENDS+= ghostscript-[0-9]*:../../print/ghostscript @@ -28,41 +28,26 @@ do-configure: ${SED} -e 's:@PREFIX@:'${PREFIX}':g' \ -e 's:@GMT_PREFIX@:'${GMT_PREFIX}':g' \ -e 's:@TK_PREFIX@:'${TK_PREFIX}':g' \ - < $$i > $$i.tmp && ${MV} -f $$i.tmp $$i; \ + $$i > $$i.tmp && ${MV} -f $$i.tmp $$i; \ done do-install: ${INSTALL_SCRIPT} ${WRKSRC}/igmt ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/igmt ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/igmt - @for f in manual.ps README.TXT NOTES.TXT COPYING COPYRIGHT; do \ - i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/igmt/"; \ - ${ECHO} $$i; $$i; \ - done + cd ${WRKSRC} && ${INSTALL_DATA} manual.ps README.TXT NOTES.TXT \ + COPYING COPYRIGHT ${PREFIX}/share/doc/igmt/ ${INSTALL_DATA_DIR} ${PREFIX}/share/igmt/colormaps - @for f in ${WRKSRC}/colormaps/*; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/igmt/colormaps/"; \ - ${ECHO} $$i; $$i; \ - done - @for f in ${WRKSRC}/igmt*.tcl ${WRKSRC}/*.awk; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/igmt/"; \ - ${ECHO} $$i; $$i; \ - done - @for f in 01_02-98.cmt gps.vel hotspots.dat nuvel.yx \ - igmt_def.gif allslabs_rum.gmt volcanoes.dat wcity.dat \ - wcity_major.dat igmt_gmtdefaults_3.0 igmt_gmtdefaults_3.1 \ - igmt_gmtdefaults_3.2 igmt_gmtdefaults_3.3; do \ - i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/igmt/"; \ - ${ECHO} $$i; $$i; \ - done - @for f in ${WRKSRC}/igmt_helper* ${WRKSRC}/*.batch; do \ - i="${INSTALL_SCRIPT} $$f ${PREFIX}/share/igmt/"; \ - ${ECHO} $$i; $$i; \ - done + ${INSTALL_DATA} ${WRKSRC}/colormaps/* ${PREFIX}/share/igmt/colormaps/ + cd ${WRKSRC} && ${INSTALL_DATA} igmt*.tcl *.awk 01_02-98.cmt \ + gps.vel hotspots.dat nuvel.yx igmt_def.gif \ + allslabs_rum.gmt volcanoes.dat wcity.dat \ + wcity_major.dat igmt_gmtdefaults_3.0 \ + igmt_gmtdefaults_3.1 igmt_gmtdefaults_3.2 \ + igmt_gmtdefaults_3.3 igmt_helper* *.batch \ + ${PREFIX}/share/igmt/ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/igmt - @for f in ${WRKSRC}/example*.ps.gz ${WRKSRC}/example*.dat; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/examples/igmt/"; \ - ${ECHO} $$i; $$i; \ - done + cd ${WRKSRC} && ${INSTALL_DATA} example*.ps.gz \ + ${WRKSRC}/example*.dat ${PREFIX}/share/examples/igmt/ \ .include "../../mk/bsd.pkg.mk" |