73 lines
1.9 KiB
Makefile
Raw Normal View History

2011-09-16 10:31:20 +00:00
# $OpenBSD: Makefile,v 1.30 2011/09/16 10:31:22 espie Exp $
COMMENT= highly configurable webmail client
2005-03-01 03:52:45 +00:00
DISTNAME= openwebmail-2.51
2011-09-16 10:31:20 +00:00
REVISION = 2
CATEGORIES= mail www
HOMEPAGE= http://www.openwebmail.org/
MAINTAINER= Kevin Lo <kevlo@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM=Yes
PERMIT_DISTFILES_FTP= Yes
2004-11-21 17:01:45 +00:00
MASTER_SITES= ${HOMEPAGE}/openwebmail/download/release/ \
http://turtle.ee.ncku.edu.tw/openwebmail/download/release/
2010-11-19 07:23:05 +00:00
RUN_DEPENDS= textproc/ispell \
mail/tnef \
converters/p5-Text-Iconv>=1.2 \
www/p5-CGI-SpeedyCGI>=2.21 \
sysutils/p5-Quota>=1.4.6 \
security/p5-Authen-SASL>=2.0.8 \
security/p5-IO-Socket-SSL>=0.96
NO_BUILD= Yes
NO_REGRESS= Yes
2004-02-02 17:45:22 +00:00
PKG_ARCH= *
WRKDIST= ${WRKDIR}
PREFIX= /var/www
CONFDIR= ${PREFIX}/conf
SUBST_VARS= CONFDIR
2003-04-14 08:26:11 +00:00
SCRIPTFILES= openwebmail-abook.pl openwebmail-advsearch.pl \
openwebmail-cal.pl openwebmail-folder.pl \
openwebmail-main.pl openwebmail-prefs.pl \
2005-01-27 06:01:16 +00:00
openwebmail-read.pl openwebmail-saprefs.pl \
openwebmail-send.pl openwebmail-spell.pl \
openwebmail-tool.pl openwebmail-vdomain.pl \
openwebmail-viewatt.pl openwebmail-webdisk.pl \
openwebmail.pl
do-configure:
.for file in ${SCRIPTFILES}
@perl -pi -e 's@%%SYSCONFDIR%%@${CONFDIR}@g' \
${WRKSRC}/cgi-bin/openwebmail/${file}
.endfor
2004-03-04 06:34:09 +00:00
@perl -pi -e 's@%%SYSCONFDIR%%@${CONFDIR}@g' \
${WRKSRC}/cgi-bin/openwebmail/shares/ow-shared.pl
@cd ${WRKSRC} && cp -Rp data htdocs
2003-04-14 08:26:11 +00:00
@find ${WRKSRC}/cgi-bin -name '*.orig' |xargs rm
@cd ${WRKSRC} && mkdir -p conf/openwebmail && \
cp -Rp cgi-bin/openwebmail/etc/* conf/openwebmail
@find ${WRKSRC}/cgi-bin -name 'etc' -type d |xargs rm -rf
do-install:
${INSTALL_DATA_DIR} ${CONFDIR}/openwebmail
2004-11-21 17:01:45 +00:00
${TAR} -C ${WRKSRC} -cf- cgi-bin conf htdocs | \
${TAR} -C ${PREFIX} -xpf-
2006-12-09 08:52:11 +00:00
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/*
2004-11-21 17:01:45 +00:00
post-install:
@echo "/var/www/cgi-bin/openwebmail/" \
> ${CONFDIR}/openwebmail/openwebmail_path.conf
.include <bsd.port.mk>