freebsd-ports/www/moinmoin/Makefile
Mathieu Arnold 551be3c723 Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
2017-11-30 15:50:30 +00:00

79 lines
2.3 KiB
Makefile

# Created by: Hye-Shik Chang <perky@python.or.kr>
# $FreeBSD$
PORTNAME= moinmoin
PORTVERSION= 1.9.9
CATEGORIES= www python
MASTER_SITES= http://static.moinmo.in/files/
DISTNAME= moin-${PORTVERSION}
MAINTAINER= python@FreeBSD.org
COMMENT= Python clone of WikiWiki
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/docs/licenses/COPYING
USES= cpe python:2.7 shebangfix
CPE_VENDOR= moinmo
USE_PYTHON= distutils
PYDISTUTILS_PKGNAME= moin
SHEBANG_FILES= wiki/server/moin*
PLIST_SUB+= PYTHON_SITELIB=${PYTHON_SITELIBDIR:S|^${LOCALBASE}/||} \
DATADIR=share/moin
SUB_FILES= pkg-install
SUB_LIST= MOINDIR=${MOINDIR} MOINDEST=${MOINDEST} MOINVER=${MOINVER} \
HTDOCS=${PYTHON_SITELIBDIR}/MoinMoin/web/static/htdocs
CGIUSER?= www
CGIGROUP?= www
MOINDIR= ${PREFIX}/share/moin
MOINDEST?= ${PREFIX}/www/wiki
MOINVER?= ${PORTVERSION:S|.||g}
MOINTYPE?= CGI
PKGDEINSTALL= ${PKGINSTALL}
.if ${MOINTYPE} == "STANDALONE"
MOINSCRIPT= ${MOINDIR}/server/moin
.elif ${MOINTYPE} == "FCGI"
MOINSCRIPT= ${MOINDIR}/server/moin.fcgi
.elif ${MOINTYPE} == "MOD_PYTHON"
.elif ${MOINTYPE} == "CGI"
MOINSCRIPT= ${MOINDIR}/server/moin.cgi
.elif ${MOINTYPE} == "WSGI"
MOINSCRIPT= ${MOINDIR}/server/moin.wsgi
.else
BROKEN= MOINTYPE must be a STANDALONE, FCGI, WSGI, MOD_PYTHON, or CGI
.endif
pre-everything::
@${ECHO}
@${ECHO} "Set MOINTYPE=(CGI|FCGI|WSGI|STANDALONE) to define"
@${ECHO} "type of installation. Default is CGI."
@${ECHO} "Use MOINDEST=/path to modify installation destination."
@${ECHO} "Default value for MOINDEST is ${PREFIX}/www/wiki."
@${ECHO}
@${ECHO} "To get correct permissions, please set CGIUSER, CGIGROUP"
@${ECHO} "per default it is set to www:www."
@${ECHO}
instance: pre-everything apply-slist
@${ECHO_CMD} "Creating a new wiki instance in ${MOINDEST}."; \
if [ -f ${MOINDIR}/config/wikiconfig.py ]; then \
${MKDIR} ${MOINDEST}; \
${CP} -R ${MOINDIR}/data ${MOINDEST}; \
${CP} -R ${MOINDIR}/underlay ${MOINDEST}; \
${CHMOD} -R u+rw,go-ws ${MOINDEST}/data; \
${INSTALL_SCRIPT} ${MOINDIR}/config/wikiconfig.py ${MOINDEST}; \
if [ ! -z ${MOINSCRIPT} ]; then \
${INSTALL_SCRIPT} ${MOINSCRIPT} ${MOINDEST}; \
fi; \
${CHOWN} -R ${CGIUSER}:${CGIGROUP} ${MOINDEST}; \
${SH} ${PKGINSTALL} ${PKGNAME} INSTANCE ${MOINTYPE}; \
else \
${ECHO_CMD} "You need to install moinmoin first before trying"; \
${ECHO_CMD} "to add a new wiki instance."; \
fi
.include <bsd.port.mk>