diff options
author | jlam <jlam> | 2008-03-07 16:11:39 +0000 |
---|---|---|
committer | jlam <jlam> | 2008-03-07 16:11:39 +0000 |
commit | f6b6279b586d560f992b0c5676be19934ba0f6dc (patch) | |
tree | 6c7b14f2ec16c12945ddc7c7cb79619ed2a7c350 /math/R/Makefile | |
parent | 1eeb45335a0ecaf2a4db54d120320a78bf193126 (diff) | |
download | pkgsrc-f6b6279b586d560f992b0c5676be19934ba0f6dc.tar.gz |
+ Remove modifications to configure.in and configure in patch-aa and
patch-ac that altered the order in which the terminal library for
readline was detected. The termcap.buildlink3.mk file (included
indirectly by readline/buildlink3.mk) will do the right thing by
itself.
+ Modify the pkg-index.tmpl INSTALL script fragment: we can just use
${PKG_PREFIX} instead of substituting for @PREFIX@ everywhere. Also
refactor the commands to rebuild the package index into a shell
function and give some indication to the user what is happening.
+ Remove chown operation in post-install that was basically
cargo-culted from the very first version of R imported into pkgsrc.
It's not necessary.
+ Support user-destdir installation.
Bump the PKGREVISION to 2.
Diffstat (limited to 'math/R/Makefile')
-rw-r--r-- | math/R/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index b2f84824f7b..efea99fe059 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.94 2007/11/08 19:39:43 joerg Exp $ +# $NetBSD: Makefile,v 1.95 2008/03/07 16:11:39 jlam Exp $ DISTNAME= R-2.6.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=base/R-2/} @@ -14,6 +14,7 @@ NOT_FOR_PLATFORM= NetBSD-1.[0-4]*-alpha NetBSD-1.5-alpha \ NetBSD-1.5.*-alpha NetBSD-1.5[A-U]-alpha PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir TEST_TARGET= check USE_TOOLS+= gmake gzip:run makeinfo perl:run sed unzip:run xmkmf @@ -99,7 +100,4 @@ DEINSTALL_TEMPLATES+= ../../math/R/files/pkg-index.tmpl PRINT_PLIST_AWK+= /^lib\/R\/doc\/html\/packages.html$$/ { next; } PRINT_PLIST_AWK+= /^lib\/R\/doc\/html\/search\/index.txt$$/ { next; } -post-install: - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/R - .include "../../mk/bsd.pkg.mk" |