5cef8e1702
Canary::Stability continues to provide the same harmful instructions that it has since 2013, including instructing users to uninstall Perl and install one from 2015 (it also advises users to switch to an unmaintained fork provided by the author). Previously, there was an OPTION to install the actual module. There is no scenario under which that should ever happen, so I'm removing that entirely. This port now only provides a no-op stub.
27 lines
519 B
Makefile
27 lines
519 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= Canary-Stability
|
|
PORTVERSION= 2013
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= # none
|
|
PKGNAMEPREFIX= p5-
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Stub for ancient system-checking module
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
USES= perl5
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
# Install empty stub
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/Canary
|
|
${INSTALL_DATA} ${FILESDIR}/Stability.pm ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/Canary
|
|
|
|
.include <bsd.port.mk>
|