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
20 lines
609 B
Makefile
20 lines
609 B
Makefile
# $NetBSD: Makefile,v 1.2 2019/08/08 19:53:42 brook Exp $
|
|
|
|
R_PKGNAME= effects
|
|
R_PKGVER= 4.1-1
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Effect displays for linear, generalized linear, and other models
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
|
|
|
|
DEPENDS+= R-colorspace>=1.4.1:../../graphics/R-colorspace
|
|
DEPENDS+= R-carData>=3.0.2:../../math/R-carData
|
|
DEPENDS+= R-estimability>=1.3:../../math/R-estimability
|
|
DEPENDS+= R-lme4>=1.1.21:../../math/R-lme4
|
|
DEPENDS+= R-survey>=3.36:../../math/R-survey
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|