mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
aeac7e9839
the Makefiles, and using @sample. Notable changes include: * Add advanced control over the SSL context used when connecting to the SMTP and IMAP servers over SSL/TLS (Thanks to Emmanuel Dreyfus) * Add ability to show login error from the IMAP server instead of traditional "Unknown user or password incorrect" (thanks to Alain Williams) * Allow SSL socket context to be specified as well * Make configuration tool show the SquirrelMail version * Better hook results testing * Add ability to use console.log for debugging * Turn off debugging by default * Add new attachments_top hook
35 lines
973 B
Makefile
35 lines
973 B
Makefile
# Created by: Adam Weinberger <adamw@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= squirrelmail-decode
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= mail www
|
|
MASTER_SITES= SF/squirrelmail/decode/${PORTVERSION}
|
|
DIST_SUBDIR= squirrelmail
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= Decoders to display extra character sets in SquirrelMail
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${SQUIRRELDIR}/index.php:${PORTSDIR}/mail/squirrelmail
|
|
|
|
USES= tar:bzip2
|
|
NO_BUILD= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/squirrelmail/decode
|
|
|
|
# if you were using WITHOUT_WWWDIR, use SQUIRRELDIR=${PREFIX}/squirrelmail
|
|
SQUIRRELDIR?= ${PREFIX}/www/squirrelmail
|
|
PLIST_SUB= SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}"
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${SQUIRRELDIR}/functions/decode
|
|
.for DIR in eastasia x-mac
|
|
cd ${WRKSRC}/${DIR} && ${FIND} . | ${CPIO} -pdmu --quiet ${STAGEDIR}${SQUIRRELDIR}/functions/decode
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.decode ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|