2392ac3a83
"Cue" is a small mail user agent (mail reader/writer). Features: - capable of handling Japanese and English (or ASCII) emails (no Latin1) - S/MIME, and MIME Multipart handling - it looks just like mh-e or mew, but is much more lightweight. It is not an elisp program but an independent program that uses curses. from Jun-ichiro itojun Hagino <itojun@iijlab.net>
33 lines
796 B
Makefile
33 lines
796 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/05/17 20:03:20 sturm Exp $
|
|
|
|
COMMENT= "mh-e like mail user agent"
|
|
|
|
DISTNAME= cue-snap-20030421
|
|
PKGNAME= cue-20030421
|
|
CATEGORIES= mail
|
|
|
|
MASTER_SITES= ftp://sh.wide.ad.jp/WIDE/free-ware/cue/snap/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --enable-ipv6 \
|
|
--without-canna \
|
|
--with-openssl=/usr \
|
|
--disable-pgpmime
|
|
|
|
MAKE_FLAGS= CC='${CC}'
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cue ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cue
|
|
${INSTALL_DATA} ${WRKSRC}/sample.cuerc ${PREFIX}/share/examples/cue
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cue
|
|
${INSTALL_DATA} ${WRKSRC}/cue.hlp ${PREFIX}/share/doc/cue
|
|
|
|
.include <bsd.port.mk>
|