93e94bec97
The canonical form [1] of an R package Makefile includes the following: - The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as needed), and CATEGORIES. - HOMEPAGE is not present but defined in math/R/Makefile.extension to refer to the CRAN web page describing the package. Other relevant web pages are often linked from there via the URL field. This updates all current R packages to this form, which will make regular updates _much_ easier, especially using pkgtools/R2pkg. [1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
25 lines
814 B
Makefile
25 lines
814 B
Makefile
# $NetBSD: Makefile,v 1.2 2019/08/08 19:53:46 brook Exp $
|
|
|
|
R_PKGNAME= RcmdrMisc
|
|
R_PKGVER= 2.5-1
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= R Commander miscellaneous functions
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
DEPENDS+= R-colorspace>=1.4.1:../../graphics/R-colorspace
|
|
DEPENDS+= R-abind>=1.4.5:../../math/R-abind
|
|
DEPENDS+= R-car>=3.0.0:../../math/R-car
|
|
DEPENDS+= R-e1071>=1.7.2:../../math/R-e1071
|
|
DEPENDS+= R-nortest>=1.0.4:../../math/R-nortest
|
|
DEPENDS+= R-sandwich>=2.5.1:../../math/R-sandwich
|
|
DEPENDS+= R-Hmisc>=4.1.0:../../misc/R-Hmisc
|
|
DEPENDS+= R-haven>=2.1.1:../../textproc/R-haven
|
|
DEPENDS+= R-readstata13>=0.9.2:../../textproc/R-readstata13
|
|
DEPENDS+= R-readxl>=1.3.1:../../textproc/R-readxl
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|