Changelog: Version 1.4.24: - Remove the unmaintained pt_BR translation. - Simplify manual license: use a simple permissive license instead of GNU FDL. - Replace a call to gnutls_protocol_set_priority(), which is deprecated in GnuTLS >= 2.12.0. Fixes Debian bug #624048 (reported for mpop). - Remove gnulib, for simplicity and maintainability. - Update GNU autotools files, in particular configure.ac.
39 lines
904 B
Makefile
39 lines
904 B
Makefile
# $NetBSD: Makefile,v 1.31 2011/04/29 22:45:36 ryoon Exp $
|
|
|
|
DISTNAME= msmtp-1.4.24
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= bcv@hub3.net
|
|
HOMEPAGE= http://msmtp.sourceforge.net/
|
|
COMMENT= SMTP plugin for MUAs
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= pkg-config msgfmt xgettext
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/msmtp
|
|
CONF_FILES= ${EGDIR}/msmtprc-user.example \
|
|
${PKG_SYSCONFDIR}/msmtprc
|
|
|
|
INFO_FILES= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "Interix"
|
|
CPPFLAGS+= -D__WINSOCK
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/msmtprc-user.example ${DESTDIR}${EGDIR}
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|