diff options
author | markd <markd@pkgsrc.org> | 2006-01-12 01:41:48 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-01-12 01:41:48 +0000 |
commit | 9471f76f17be3eaee16720ad44ecdcabcb06ae2f (patch) | |
tree | 0f7dec819c92eee37f9012ebe2db6f6e129f2134 /math/R | |
parent | b1738877ff450726a915ee756d3a19110110e29e (diff) | |
download | pkgsrc-9471f76f17be3eaee16720ad44ecdcabcb06ae2f.tar.gz |
If MANZ=yes was set then the subsequent USE_TOOLS+=gzip caused a gzip
link to appear in the tools directory and be picked up and embedded in
one of the installed scripts. Since this package clearly uses gzip at
runtime add an explicit USE_TOOLS+=gzip:run and fixup the gzip path that
gets embedded. Fixes PR pkg/32218. Bump PKGREVISION.
Diffstat (limited to 'math/R')
-rw-r--r-- | math/R/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 7512ef54565..ea22beaa2d6 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.78 2005/12/29 23:23:53 markd Exp $ +# $NetBSD: Makefile,v 1.79 2006/01/12 01:41:48 markd Exp $ DISTNAME= R-2.2.1 +PKGREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=base/R-2/} @@ -15,7 +16,7 @@ NOT_FOR_PLATFORM= NetBSD-1.[0-4]*-alpha NetBSD-1.5-alpha \ PKG_INSTALLATION_TYPES= overwrite pkgviews TEST_TARGET= check -USE_TOOLS+= gmake perl:run sed xmkmf +USE_TOOLS+= gmake gzip:run perl:run sed xmkmf USE_GNU_READLINE= # uses callback interface USE_LANGUAGES= c fortran USE_LIBTOOL= yes @@ -49,6 +50,7 @@ CONFIGURE_ENV+= ac_cv_lib_blas_dgemm_=yes CONFIGURE_ENV+= GETWD=${TOOLS_PWD_CMD:Q} CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q} CONFIGURE_ENV+= lt_cv_path_SED=${TOOLS_SED:Q} +CONFIGURE_ENV+= ac_cv_path_R_GZIPCMD=${TOOLS_GZIP_CMD:Q} # Package assumes it can append to files (specifically DESCRIPTION) that have # been installed SHAREMODE |