mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
af0091d41c
written for some squirrelmail plugins. About the Plugin: It provides a standard API for other plugins and has no functionality in and of itself. PR: ports/83606 Submitted by: Alexander Wittig <alexander@wittig.name>
70 lines
2.0 KiB
Makefile
70 lines
2.0 KiB
Makefile
# New ports collection makefile for: squirrelmail-compatibility-plugin
|
|
# Date created: 3 Jul 2005
|
|
# Whom: Alexander Wittig <alexander@wittig.name>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= squirrelmail-${SQUIRREL_PLUGIN_NAME}-plugin
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= mail www
|
|
MASTER_SITES= http://www.squirrelmail.org/plugins/
|
|
DISTNAME= ${SQUIRREL_PLUGIN_NAME}-${PORTVERSION}
|
|
DIST_SUBDIR= squirrelmail
|
|
|
|
MAINTAINER= alexander@wittig.name
|
|
COMMENT= Required by many plugins for compatibility with SquirrelMail
|
|
|
|
RUN_DEPENDS= ${SQUIRRELDIR}/index.php:${PORTSDIR}/mail/squirrelmail
|
|
|
|
SQUIRREL_PLUGIN_NAME= compatibility
|
|
|
|
.ifdef SQUIRRELDIR
|
|
PLIST_SUB+= SQUIRRELDIR=${SQUIRRELDIR}
|
|
.else
|
|
. ifndef WITHOUT_WWWDIR
|
|
SQUIRRELDIR= ${PREFIX}/www/squirrelmail
|
|
PLIST_SUB+= SQUIRRELDIR=www/squirrelmail
|
|
. else
|
|
SQUIRRELDIR= ${PREFIX}/squirrelmail
|
|
PLIST_SUB+= SQUIRRELDIR=squirrelmail
|
|
. endif
|
|
.endif
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_PERL5_BUILD= yes
|
|
WANT_PHP_WEB= yes
|
|
|
|
pre-everything::
|
|
@${ECHO} ""
|
|
.ifndef WITHOUT_ACTIVATE
|
|
@${ECHO} "Activating plug-in in SquirrelMail after installation."
|
|
@${ECHO} "If you don't want to automatically activate the plug-in set"
|
|
@${ECHO} "WITHOUT_ACTIVATE=yes"
|
|
.else
|
|
@${ECHO} "NOT Activating plug-in in SquirrelMail after installation."
|
|
@${ECHO} "If you want to automatically activate the plug-in unset"
|
|
@${ECHO} "WITHOUT_ACTIVATE"
|
|
.endif
|
|
@${ECHO} ""
|
|
|
|
do-install:
|
|
${CP} -rp ${WRKSRC}/${SQUIRREL_PLUGIN_NAME} ${SQUIRRELDIR}/plugins
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${SQUIRRELDIR}/plugins/${SQUIRREL_PLUGIN_NAME}
|
|
|
|
post-install:
|
|
@${ECHO} "Patching SquirrelMail for compatibility plugin"
|
|
@${ECHO} ""
|
|
${PATCH} -sN -p0 -d ${SQUIRRELDIR}/plugins < ${SQUIRRELDIR}/plugins/compatibility/patches/compatibility_patch-1.4.4.diff
|
|
@${ECHO} ""
|
|
|
|
.ifndef WITHOUT_ACTIVATE
|
|
@${ECHO} "Activating plug-in in SquirrelMail"
|
|
${SQUIRRELDIR}/config/conf.pl --install-plugin ${SQUIRREL_PLUGIN_NAME}
|
|
.else
|
|
@${ECHO} "To activate the plug-in in SquirrelMail use"
|
|
@${ECHO} "${SQUIRRELDIR}/config/conf.pl --install-plugin ${SQUIRREL_PLUGIN_NAME}"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|