openbsd-ports/mail/perdition/Makefile

111 lines
3.2 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.17 2013/03/15 15:17:36 sthen Exp $
COMMENT-main= fully featured POP3 and IMAP4 proxy server
COMMENT-ldap= LDAP backend for perdition mail proxy
COMMENT-mysql= MySQL backend for perdition mail proxy
COMMENT-pgsql= PostgreSQL backend for perdition mail proxy
DISTVER= 1.19-rc5
DISTNAME= perdition-${DISTVER}
PKGNAME-main= perdition-${DISTVER:S/-//}
PKGNAME-ldap= perdition-ldap-${DISTVER:S/-//}
PKGNAME-mysql= perdition-mysql-${DISTVER:S/-//}
PKGNAME-pgsql= perdition-pgsql-${DISTVER:S/-//}
CATEGORIES= mail
SHARED_LIBS += jain 0.0 # .0.0
SHARED_LIBS += perditiondb_bdb 0.0 # .0.0
SHARED_LIBS += perditiondb_nis 0.0 # .0.0
SHARED_LIBS += perditiondb_posix_regex 0.0 # .0.0
SHARED_LIBS += perditiondb_daemon 0.0 # .0.0
SHARED_LIBS += perditiondb_daemon_base 0.0 # .0.0
SHARED_LIBS += perditiondb_ldap 0.0 # .0.0
SHARED_LIBS += perditiondb_mysql 0.0 # .0.0
SHARED_LIBS += perditiondb_postgresql 0.0 # .0.0
HOMEPAGE= http://www.vergenet.net/linux/perdition/
# GPLv2+ (included COPYING is v3, but all files with a
# copyright claim specify version 2 or above).
PERMIT_PACKAGE_CDROM= Yes
MASTER_SITES= ${HOMEPAGE}download/${DISTVER}/
USE_GMAKE= Yes
USE_LIBTOOL= Yes
CONFIGURE_STYLE=gnu
CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/db4
CONFIGURE_ENV+="LDFLAGS=-L${LOCALBASE}/lib"
CONFIGURE_ARGS+= --disable-silent-rules \
--enable-ssl \
--with-ssl-includes=/usr/include \
--with-ssl-libraries=/usr/lib \
--disable-gdbm \
--disable-odbc \
--with-user=_perdition \
--with-group=_perdition
2011-09-12 14:08:26 -04:00
PSEUDO_FLAVORS= no_ldap no_mysql no_pgsql
FLAVOR?=
MULTI_PACKAGES= -main -mysql -pgsql -ldap
.include <bsd.port.arch.mk>
WANTLIB-main= c crypto ssl util db>=4.2 vanessa_adt>=1.0 \
vanessa_logger>=1.0 vanessa_socket>=1.0 popt
2010-11-19 02:23:05 -05:00
LIB_DEPENDS-main= databases/db/v4 \
vanessa_adt->=0.0.9:devel/vanessa/adt \
vanessa_logger->=0.0.10:devel/vanessa/logger \
vanessa_socket->=0.0.12:devel/vanessa/socket \
2010-11-19 02:23:05 -05:00
devel/popt
LIB_DEPENDS-ldap= security/cyrus-sasl2 \
openldap-client->=2,<3:databases/openldap
WANTLIB-ldap= asn1 com_err crypto gssapi krb5 ssl util sasl2 \
ldap>=2 lber>=2
.if !${BUILD_PACKAGES:M-ldap}
CONFIGURE_ARGS+= --disable-ldap
.else
CONFIGURE_ARGS+= --with-ldap-libraries=${LOCALBASE}/lib \
--with-ldap-includes=${LOCALBASE}/include \
--disable-ldap-doc
.endif
2010-11-19 02:23:05 -05:00
LIB_DEPENDS-mysql= databases/mysql \
devel/vanessa/adt \
devel/vanessa/logger
WANTLIB-mysql= crypto ssl util m z lib/mysql/mysqlclient>=10 \
vanessa_adt>=0.3 vanessa_logger>=0.3
.if !${BUILD_PACKAGES:M-mysql}
CONFIGURE_ARGS+= --disable-mysql
.else
CONFIGURE_ARGS+= --with-mysql-libraries=${LOCALBASE}/lib/mysql \
--with-mysql-includes=${LOCALBASE}/include/mysql
.endif
2010-11-19 02:23:05 -05:00
LIB_DEPENDS-pgsql= databases/postgresql \
devel/vanessa/adt \
devel/vanessa/logger
WANTLIB-pgsql= crypto ssl util pq>=2 vanessa_adt>=0.3 \
vanessa_logger>=0.3
.if !${BUILD_PACKAGES:M-pgsql}
CONFIGURE_ARGS+= --disable-pg
.else
CONFIGURE_ARGS+= --enable-pg
.endif
EXAMPLE_DIR= ${PREFIX}/share/examples/perdition/
post-install:
${INSTALL_DATA_DIR} ${EXAMPLE_DIR}
@mv ${WRKINST}${SYSCONFDIR}/perdition/* ${EXAMPLE_DIR}
.include <bsd.port.mk>