pkgsrc changes: set INSTALLATION_DIRS. 2007-01-30 Dave McMurtrie <davemcmurtrie@gmail.com> * Version 1.2.5 released. 2007-01-30 Dave McMurtrie <davemcmurtrie@gmail.com> * common.h: Updated version string to 1.2.5. 2006-10-03 Dave McMurtrie <davemcmurtrie@gmail.com> * common.h: Updated version string to 1.2.5rc2. * main.c: Patch by Matt Selsky to log ssl peer verify at Debug level instead of err level. * Makefile.in: Patch by Matt Selsky to set the permissions on the configuration files to 755 instead of 644. 2006-08-15 Dave McMurtrie <davemcmurtrie@gmail.com> * imapcommon.c: No longer exit() from IMAP_Line_Read() on failed sanity check. 2006-02-16 Dave McMurtrie <davemcmurtrie@gmail.com> * pimpstat.c: Patch by Matt Selsky to fix spelling error. * main.c: Fixed string format bug (Debian DSA 852-1) found by Steve Kemp. Added version string to startup log message. * common.h: Patch by Matt Selsky to add a version string. * request.c: Patch by Matt Selsky to add cmd_version function. * README: Patch by Matt Selsky to add info about p_version command. Updated the imapproxy-info mailing list URL.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2007/06/07 15:12:01 taca Exp $
|
|
|
|
DISTNAME= up-imapproxy-1.2.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.imapproxy.org/downloads/
|
|
|
|
MAINTAINER= adrianp@NetBSD.org
|
|
HOMEPAGE= http://www.imapproxy.org/
|
|
COMMENT= Connection caching IMAP proxy server
|
|
|
|
GNU_CONFIGURE= YES
|
|
RCD_SCRIPTS= upimapproxy
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= post-patch
|
|
SUBST_FILES.paths= include/imapproxy.h
|
|
SUBST_SED.paths= -e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g"
|
|
SUBST_MESSAGE.paths= Fixing hard coded paths.
|
|
|
|
CONF_FILES= ${PREFIX}/share/examples/up-imapproxy/imapproxy.conf \
|
|
${PKG_SYSCONFDIR}/imapproxy.conf
|
|
|
|
INSTALLATION_DIRS+= sbin share/doc/up-imapproxy share/examples/up-imapproxy
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/up-imapproxy
|
|
${INSTALL_DATA} ${WRKSRC}/README.ssl ${PREFIX}/share/doc/up-imapproxy
|
|
${INSTALL_DATA} ${WRKSRC}/README.known_issues \
|
|
${PREFIX}/share/doc/up-imapproxy
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/imapproxy.conf \
|
|
${PREFIX}/share/examples/up-imapproxy
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|