fe127c87ad
- Refrain from invoking ${PERL} - Call Mailman's distributed check_perms script post-installation to fix file permissions instead of doing so manually. This is more modular and will greatly ease maintenance of the port. It implies a level of trust in check_perms... but then, installing and running any 3rd party software implies a level of trust.
115 lines
3.3 KiB
Makefile
115 lines
3.3 KiB
Makefile
# New ports collection makefile for: mailman
|
|
# Date created: 10 July 2000
|
|
# Whom: n_hibma@qubesoft.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mailman
|
|
PORTVERSION= 2.0.13
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.list.org/ \
|
|
${MASTER_SITE_GNU} \
|
|
${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= mailman
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= wjv@FreeBSD.org
|
|
|
|
.if defined(WITH_APACHE2)
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache2
|
|
.else
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache13
|
|
.endif
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_PYTHON= yes
|
|
CONFIGURE_ARGS= --prefix=${MAILMANDIR} --with-python=${PYTHON_CMD} \
|
|
--with-username=${MM_USERNAME} \
|
|
--with-groupname=${MM_GROUPNAME} \
|
|
--with-mail-gid=${MAIL_GID} --with-cgi-gid=${CGI_GID}
|
|
PKGOPTS= ${FILESDIR}/pkg-opts
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# The Mailman port supports a number of variables that may be tweaked at
|
|
# build time. Getting the values of some of them right is crucial!
|
|
# Perform a "make options" to see more information on these variables.
|
|
#
|
|
MM_USERNAME?= mailman
|
|
MM_USERID?= 91
|
|
MM_GROUPNAME?= ${MM_USERNAME}
|
|
MM_GROUPID?= ${MM_USERID}
|
|
MM_DIR?= mailman
|
|
.if ${OSVERSION} >= 450000
|
|
MAIL_GID?= 26
|
|
.else
|
|
MAIL_GID?= 1
|
|
.endif
|
|
CGI_GID?= 80
|
|
IMGDIR= www/icons
|
|
#
|
|
# End of user-configurable variables.
|
|
|
|
MAILMANDIR= ${PREFIX}/${MM_DIR}
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
|
PLIST_SUB= MMDIR=${MM_DIR} MMGRP=${MM_GROUPNAME} IMGDIR=${IMGDIR}
|
|
|
|
options:
|
|
@ ${ECHO_MSG} "===> Build options for ${PKGNAME}:"
|
|
@ ${CAT} ${PKGOPTS}
|
|
|
|
post-extract:
|
|
.if !defined(BATCH)
|
|
@ ${TEST} -r ${PKGOPTS} && \
|
|
(${ECHO_MSG} '-------------------------------------------------------------------------'; \
|
|
${ECHO_MSG} 'Perform a "make options" to see a list of available installation options.'; \
|
|
${ECHO_MSG} '-------------------------------------------------------------------------')
|
|
.endif
|
|
|
|
pre-configure:
|
|
# Mailman's configure script needs the "mailman" user/group to exist, so
|
|
# $PKGINSTALL has to be patched before the do-configure target executes.
|
|
@ ${SED} \
|
|
-e 's#%%USER%%#${MM_USERNAME}#g' -e 's#%%UID%%#${MM_USERID}#g' \
|
|
-e 's#%%GROUP%%#${MM_GROUPNAME}#g' -e 's#%%GID%%#${MM_GROUPID}#g' \
|
|
-e 's#%%MAILMANDIR%%#${MAILMANDIR}#g' pkg-install > \
|
|
${PKGINSTALL}
|
|
@ ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
post-configure:
|
|
@ ${SED} -e 's#%%USER%%#${MM_USERNAME}#g' \
|
|
-e 's#%%GROUP%%#${MM_GROUPNAME}#g' \
|
|
-e 's#%%MAILMANDIR%%#${MAILMANDIR}#g' pkg-deinstall > \
|
|
${PKGDEINSTALL}
|
|
@ ${SED} -e 's#%%MAILMANDIR%%#${MAILMANDIR}#g' \
|
|
-e 's#%%DOCSDIR%%#${DOCSDIR}#g' pkg-message > ${PKGMESSAGE}
|
|
|
|
pre-install:
|
|
@ ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
post-install:
|
|
.for dir in cron scripts
|
|
@ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${MAILMANDIR}/${dir}
|
|
.endfor
|
|
@ ${CHGRP} -R ${MM_GROUPNAME} ${MAILMANDIR}
|
|
@ ${MKDIR} ${PREFIX}/${IMGDIR}
|
|
.for imgfile in mailman.jpg PythonPowered.png gnu-head-tiny.jpg
|
|
@ ${CP} ${MAILMANDIR}/icons/${imgfile} ${PREFIX}/${IMGDIR}
|
|
.endfor
|
|
@ uudecode -p ${FILESDIR}/powerlogo.gif.uue > \
|
|
${PREFIX}/${IMGDIR}/powerlogo.gif
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} ${DOCSDIR}
|
|
.for docfile in BUGS FAQ INSTALL NEWS README* UPGRADING
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@ ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.if !defined(BATCH)
|
|
@ ${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|