306e66af5d
Approved by: portmgr (implicit)
38 lines
905 B
Makefile
38 lines
905 B
Makefile
# Created by: Mij <mij@bitchx.it>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vmailmgr
|
|
PORTVERSION= 0.97
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.vmailmgr.org/current/ \
|
|
http://mirrors.dataloss.nl/vmailmgr.org/current/
|
|
|
|
MAINTAINER= mij@bitchx.it
|
|
COMMENT= Virtual domain manager for qmail
|
|
|
|
|
|
# get python paths (PYTHON_SITELIBDIR) in case we install the python API
|
|
USES= gmake perl5 python
|
|
USE_AUTOTOOLS= autoconf autoheader automake aclocal
|
|
USE_PERL5= build
|
|
AUTOMAKE_ARGS+= --add-missing -Wno-portability
|
|
|
|
OPTIONS_DEFINE= PYTHONLIBS
|
|
PYTHONLIBS_DESC= Install the Python API
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(PREFIX)
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPYTHONLIB}
|
|
CONFIGURE_ARGS+= --with-pythonapi=${PYTHON_SITELIBDIR}
|
|
PLIST_SUB+= PYTHON_SITELIBDIR="${PYTHON_SITELIBDIR}"
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|