d6b7ea47c8
- regenerate patches and name them consistently. Note that the configuration file format and names have changed with this release - add an INSTALL shell fragment to detect old versions of the config files and warn the user to regenerate them - config files now live in /etc/courier-imap, as they are very generic names, and this avoid conflict with other imap daemons Summary of changes: This release fixes some bugs in the POP3 server, adds optional support for gb2312 and big5 text search, and introduces a new configuration file format. The new configuration file format will allow future upgrades to automatically preserve the existing system configuration data, instead of installing a default set of configuration files
37 lines
979 B
Makefile
37 lines
979 B
Makefile
# $OpenBSD: Makefile,v 1.6 2000/12/29 18:51:56 avsm Exp $
|
|
|
|
DISTNAME= courier-imap-1.3.0
|
|
CATEGORIES= mail
|
|
NEED_VERSION= 1.346
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= courier
|
|
|
|
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
|
|
HOMEPAGE= http://www.inter7.com/courierimap/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FLAVORS= pop3
|
|
FLAVOR?=
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --disable-root-check --datadir=${PREFIX}/sbin --with-userdb=/etc/userdb --with-authuserdb
|
|
SYSCONFDIR= /etc/courier-imap
|
|
EXAMPLE_DIR= ${PREFIX}/share/examples/courier-imap
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/courier-imap
|
|
.for i in pop3d-ssl imapd-ssl pop3d imapd
|
|
${INSTALL_DATA} ${WRKINST}/${SYSCONFDIR}/${i}.dist ${EXAMPLE_DIR}/${i}
|
|
.endfor
|
|
.for i in imapd pop3d
|
|
${INSTALL_DATA} ${WRKINST}/${SYSCONFDIR}/${i}.cnf ${EXAMPLE_DIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|