summaryrefslogtreecommitdiff
path: root/mail/qmailadmin-devel/Makefile
blob: d60d42c3081c98a5c57725e6d20bc48e8c51c6e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# New ports collection makefile for: qmailadmin
# Date created:		23 Sep 2000
# Whom:			Neil Blakey-Milner
#
# $FreeBSD$
#

PORTNAME=	qmailadmin
PORTVERSION=	1.0.6
CATEGORIES=	mail www
MASTER_SITES=	http://www.inter7.com/qmailadmin/

MAINTAINER=	roam@FreeBSD.org

BUILD_DEPENDS= \
	${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail \
	autorespond:${PORTSDIR}/mail/autorespond \
	ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \
	${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail
RUN_DEPENDS= \
	${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail \
	autorespond:${PORTSDIR}/mail/autorespond \
	ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \
	${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail

GNU_CONFIGURE=	YES
USE_GMAKE=	YES

#
# User-configurable variables
#
# CGIBINDIR     - location of your cgi directory
# CGIBINSUBDIR  - subdirectory to place cgi scripts in
# CGIBINURL     - location of your cgi directory in a URL
# WEBDATADIR    - location of your html files
# WEBDATASUBDIR - subdirectory to place html files in (not working yet)
#
# WITHOUT_IPAUTH	- disable the IP address check after login
# WITHOUT_USER_INDEX	- disable the user index display, which might
#			  confuse earlier versions of Internet Explorer
#

CGIBINDIR?=	www/cgi-bin.default
CGIBINSUBDIR?=	qmailadmin
CGIBINURL?=	cgi-bin
WEBDATADIR?=	www/data.default
WEBDATASUBDIR?=

# I'm working on this..
.if ${WEBDATASUBDIR} != ""
BROKEN=	do not set WEBDATASUBDIR: qmailadmin is a bit buggy in that respect
.endif

PLIST_SUB+=	CGIBINDIR="${CGIBINDIR}" CGIBINSUBDIR="${CGIBINSUBDIR}" \
		WEBDATADIR="${WEBDATADIR}" WEBDATASUBDIR="${WEBDATASUBDIR}"

#
# QMAIL_DIR     - location of qmail directory
#

.if exists(${LOCALBASE}/qmail/bin/qmail-send)
QMAIL_DIR?=	${LOCALBASE}/qmail
.else
QMAIL_DIR?=	/var/qmail
.endif

# End of user-configurable variables

CONFIGURE_ARGS+=	\
	--enable-htmldir=${PREFIX}/${WEBDATADIR}/${WEBDATASUBDIR} \
	--enable-cgibindir=${PREFIX}/${CGIBINDIR}/${CGIBINSUBDIR} \
	--with-htmllibdir=${PREFIX}/share/qmailadmin \
	--enable-cgipath=/${CGIBINURL}/${CGIBINSUBDIR}/qmailadmin \
	--enable-ezmlmidx=y

.if defined(WITHOUT_IPAUTH)
CONFIGURE_ARGS+=	--enable-ipauth=n
.endif

.if defined(WITHOUT_USER_INDEX)
CONFIGURE_ARGS+=	--enable-user-index=n
.endif

pre-install:
	@${MKDIR} ${PREFIX}/share/qmailadmin/html

.include <bsd.port.mk>