freebsd-ports/www/dwoo/Makefile
John Marino 82d7347bc9 Reset maintainership on www/dwoo
This port was not staged, but it was spared a reset because somebody (not
the maintainer) submitted a PR to stage it.  Unfortunately the PR has
numerous problems which have not been addressed in the last couple of
weeks.  Reset the maintainer now, and let the port be pruned at the end
of the month if no one steps up to save it.

PR:		190041
Submitted by:	Joe (thralling.com)
Approved by:	maintainer (Joe Horn)
Rejected by:	marino (technical reasons)
Approved by:	portmgr (implicit, NOT_STAGED)
2014-08-10 13:55:47 +00:00

44 lines
970 B
Makefile

# Created by: Joe Horn <joehorn@gmail.com>
# $FreeBSD$
PORTNAME= dwoo
PORTVERSION= 1.1.1
CATEGORIES= www
MASTER_SITES= http://dwoo.org/upload/code/
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz
.if !defined(NOPORTDOCS)
DISTFILES+= ${PORTNAME}-${PORTVERSION}-docs.tar.gz
.endif
MAINTAINER= ports@FreeBSD.org
COMMENT= Dwoo is a PHP5 template engine
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
USE_PHP= pcre
WANT_PHP_WEB= yes
DEFAULT_PHP_VER=5
SUB_FILES= pkg-message
NO_STAGE= yes
do-install:
@${MKDIR} ${DATADIR}
@cd ${WRKSRC}; ${FIND} . -type d \
-exec ${MKDIR} ${DATADIR}/{} \;
@cd ${WRKSRC}; ${FIND} . -type f \
-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \;
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@cd ${WRKDIR}/docs; ${FIND} . -type d \
-exec ${MKDIR} ${DOCSDIR}/{} \;
@cd ${WRKDIR}/docs; ${FIND} . -type f \
-exec ${INSTALL_DATA} ${WRKDIR}/docs/{} ${DOCSDIR}/{} \;
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>