diff options
author | martti <martti@pkgsrc.org> | 2005-11-13 18:36:16 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2005-11-13 18:36:16 +0000 |
commit | 58a5bff57e9b268ff5316ae119de6dd40df2cd50 (patch) | |
tree | 65a45bec1ba6d1d5311c7dcbfbb163a54d912a09 /mail/squirrelmail-decode/Makefile | |
parent | 53649cf3d694a10e77888c246c5c866cdc6fb9ad (diff) | |
download | pkgsrc-58a5bff57e9b268ff5316ae119de6dd40df2cd50.tar.gz |
SquirrelMail decoding functions are used to display and convert messages
encoded in different character sets. Extra decoding library provides support
of some complex Eastern character sets and some rarely used Apple character
sets. Current release supports Big5, Windows-874 (cp874, Thai), Windows-949
(UHC, Korean), EUC-CN, EUC-JP, EUC-KR, EUC-TW, GB18030, GB2312, ISO-2022-CN,
ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, Shift_JIS and various x-mac-*
character sets.
Diffstat (limited to 'mail/squirrelmail-decode/Makefile')
-rw-r--r-- | mail/squirrelmail-decode/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mail/squirrelmail-decode/Makefile b/mail/squirrelmail-decode/Makefile new file mode 100644 index 00000000000..716d0c7dad4 --- /dev/null +++ b/mail/squirrelmail-decode/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/11/13 18:36:16 martti Exp $ + +DISTNAME= squirrelmail-decode-1.0 +CATEGORIES= mail +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=squirrelmail/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= martti@NetBSD.org +HOMEPAGE= http://www.squirrelmail.org/ +COMMENT= Extra decoding library for SquirrelMail + +NO_BUILD= yes + +DEPENDS+= php-iconv>=4.3.3:../../converters/php-iconv + +do-install: + ${INSTALL_DATA} ${WRKSRC}/eastasia/*.php ${WRKSRC}/x-mac/*.php \ + ${PREFIX}/share/squirrelmail/functions/decode + +.include "../../mail/squirrelmail/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |