78330d73f0
- add support for Internationalized Domain Names from MAINTAINER Simon Kuhnle <simonkuhnle@web.de> please note that TLS now requires either tls_trust_file or a disabled tls_certcheck in order to work. ok martynas@
40 lines
977 B
Makefile
40 lines
977 B
Makefile
# $OpenBSD: Makefile,v 1.9 2007/04/13 15:06:51 jasper Exp $
|
|
|
|
COMMENT= "SMTP plugin for MUAs"
|
|
|
|
DISTNAME= msmtp-1.4.11
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://msmtp.sourceforge.net/
|
|
|
|
MAINTAINER= Simon Kuhnle <simonkuhnle@web.de>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c crypto ssl
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
LIB_DEPENDS= idn::devel/libidn
|
|
|
|
MODULES= devel/gettext
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-libgsasl=no \
|
|
--with-libidn=yes \
|
|
--with-ssl=openssl
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/msmtp
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.example ${PREFIX}/share/examples/msmtp
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/msmtp
|
|
${INSTALL_DATA} ${WRKSRC}/doc/Mutt+msmtp.txt ${PREFIX}/share/doc/msmtp
|
|
${INSTALL_DATA} ${WRKSRC}/doc/msmtp.html ${PREFIX}/share/doc/msmtp
|
|
|
|
.include <bsd.port.mk>
|