1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/mail/dracmail/Makefile
Sunpoet Po-Chuan Hsieh 6999147e43 - Pass maintainership to submitter (author of dracMail)
PR:		ports/154257
Submitted by:	Grosan Flaviu Gheorghe <fgheorghe@dracmail.net> (new maintainer)
Approved by:	Marian Jamrich <jamrich.majo@gmail.com> (old maintainer)
Feature safe:	yes
2011-01-24 13:15:31 +00:00

54 lines
1.1 KiB
Makefile

# New ports collection makefile for: dracmail
# Date created: 14 January 2011
# Whom: jamrich.majo@gmail.com
#
# $FreeBSD$
#
PORTNAME= dracmail
PORTVERSION= 0.1.2
CATEGORIES= mail
MASTER_SITES= SF/dracmail/release/
DISTNAME= dracMail-${PORTVERSION}_release
MAINTAINER= fgheorghe@dracmail.net
COMMENT= DracMail is a webmail interface built using PHP
RUN_DEPENDS+= php:${PORTSDIR}/lang/php5
USE_PHP+= mysql imap dom tidy iconv mbstring
USE_MYSQL= yes
NO_BUILD= yes
WWWOWN= www
WWWGRP= ${WWWOWN}
PKGMESSAGE= ${WRKDIR}/${PORTNAME}/pkg-message
SUB_FILES= pkg-message
PLIST_DIRSTRY= %%WWWDIR%%
OPTIONS= POSTGRE "Use PostgreSQL Database" off \
APACHE "Use Apache webserver" on \
LIGHTTPD "Use Lighttpd webserver" off
.include <bsd.port.options.mk>
.if defined(WITH_POSTGRE)
USE_PHP+= pgsql
.endif
.if defined(WITH_APACHE)
USE_APACHE= 22
.endif
.if defined(WITH_LIGHTTPD)
RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd
.endif
do-install:
@${MKDIR} ${WWWDIR}
@${CP} -r ${WRKDIR}/* ${WWWDIR}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>