freebsd-ports/www/wadcomblog/Makefile
Adam Weinberger d17ef79851 Partially revert r530801
The maintainer reset rule was not applied correctly. jlaffaye's ports
are reassigned back to him, with the exception of lang/go where both
quantity and length of timeouts made the reset appropriate and
necessary.

With hat:	portmgr
2020-04-06 17:04:43 +00:00

35 lines
933 B
Makefile

# Created by: Julien Laffaye <kimelto@gmail.com>
# $FreeBSD$
PORTNAME= WadcomBlog
PORTVERSION= 0.3
CATEGORIES= www python
MASTER_SITES= http://laffaye.free.fr/distfiles/ \
http://vss.73rus.com/wadcomblog/files/
MAINTAINER= jlaffaye@FreeBSD.org
COMMENT= Simple open-source static blog engine written in Python
DEPRECATED= Uses deprecated version of python
EXPIRATION_DATE= 2020-09-15
USES= python:2.7
USE_PYTHON= distutils
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@${INSTALL_MAN} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${ECHO_MSG} "installing additional examples to ${EXAMPLESDIR}"
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@(cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR})
.endif
.include <bsd.port.mk>