33 lines
841 B
Makefile
33 lines
841 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
PORTNAME= certbot-dns-cpanel
|
||
|
DISTVERSION= 0.2.2
|
||
|
CATEGORIES= security python
|
||
|
MASTER_SITES= CHEESESHOP
|
||
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||
|
|
||
|
MAINTAINER= h.freshports@skarnell.se
|
||
|
COMMENT= CPanel DNS Authenticator plugin for Certbot
|
||
|
|
||
|
LICENSE= APACHE20
|
||
|
|
||
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}certbot>0:security/py-certbot@${PY_FLAVOR} \
|
||
|
${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface@${PY_FLAVOR} \
|
||
|
${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
|
||
|
|
||
|
USES= python
|
||
|
USE_PYTHON= autoplist distutils
|
||
|
|
||
|
SUB_FILES= pkg-message
|
||
|
|
||
|
PLIST_FILES= "${PREFIX}/etc/certbot-dns-cpanel/credentials.ini.sample"
|
||
|
|
||
|
NO_ARCH= yes
|
||
|
|
||
|
post-install:
|
||
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/certbot-dns-cpanel
|
||
|
${INSTALL_DATA} ${FILESDIR}/credentials.ini.sample \
|
||
|
${STAGEDIR}${PREFIX}/etc/certbot-dns-cpanel
|
||
|
|
||
|
.include <bsd.port.mk>
|