10fafcca3f
- update license marker to GPLv3 - install some sample scripts from Simon Kuhnle (maintainer), with tweaks by me
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.12 2007/08/28 18:45:34 jasper Exp $
|
|
|
|
COMMENT= SMTP plugin for MUAs
|
|
|
|
DISTNAME= msmtp-1.4.13
|
|
PKGNAME= ${DISTNAME}
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://msmtp.sourceforge.net/
|
|
|
|
MAINTAINER= Simon Kuhnle <simon@blarzwurst.de>
|
|
|
|
# GPLv3
|
|
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_DIR} ${PREFIX}/share/msmtp/msmtpqueue
|
|
${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
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/msmtpqueue/{README,ChangeLog} \
|
|
${PREFIX}/share/msmtp/msmtpqueue
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/set_sendmail.sh \
|
|
${PREFIX}/share/examples/msmtp
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/msmtpqueue/*.sh \
|
|
${PREFIX}/share/examples/msmtp
|
|
|
|
.include <bsd.port.mk>
|