Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Aug 2003 03:00:48 -0700 (PDT)
From:      Clement Laforet <sheepkiller@cultdeadsheep.org>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/55333: [new port] mail/teapop-devel
Message-ID:  <200308271000.h7RA0mRt020121@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/55333; it has been noted by GNATS.

From: Clement Laforet <sheepkiller@cultdeadsheep.org>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc: FreeBSD-gnats-submit@FreeBSD.org
Subject: Re: ports/55333: [new port] mail/teapop-devel
Date: Wed, 27 Aug 2003 11:45:12 +0200

 Use new USE_OPENLDAP and USE_MYSQL.
 
 --- Makefile.orig	Wed Aug 27 11:37:11 2003
 +++ Makefile	Wed Aug 27 11:39:39 2003
 @@ -55,48 +55,24 @@
  
  MAN8=		teapop.8
  
 -.include <bsd.port.pre.mk>
 -
  ## Authentication backend
 -##   WITH_LDAP: add support for authentication through OpenLDAP server
 -##   WITH_LDAP_VER: OpenLDAP version to use (can be: 20 for 2.0, 21 for 2.1, 22 for 2.2 ; default 21)
 +##   WITH_OPENLDAP: add support for authentication through OpenLDAP server
  ##   WITH_MYSQL: enable support for authentication from MySQL database
 -##   WITH_MYSQL_VER: MySQL version to use (can be: 323 for 3.23, 40 for 4.0, 4.1 for 4.1 ; default 323)
  ##   WITH_PGSQL: enable support for authentication from PostgreSQL database
  
 -MYSQL323_LIBVER=10
 -MYSQL40_LIBVER=	12
 -MYSQL41_LIBVER=	14
 -WITH_LDAP_VER?=	21
 -
 -# MySQL deps hack (revision 2)
 -.if defined(WITH_MYSQL_VER)
 -MYSQL_VER=	${WITH_MYSQL_VER}
 -.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL_323_LIBVER})
 -MYSQL_VER=	323
 -.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL40_LIBVER})
 -MYSQL_VER=	40
 -.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL41_LIBVER})
 -MYSQL_VER=	41
 -.else
 -MYSQL_VER=	323
 -.endif
 -
 -LDAP_VER=	${WITH_LDAP_VER}
 -
  .if defined(WITH_PGSQL)
  CONFIGURE_ARGS+=	--with-pgsql
  LIB_DEPENDS+=		pq:${PORTSDIR}/databases/postgresql7
  .endif
  
  .if defined(WITH_MYSQL)
 +USE_MYSQL=		YES
  CONFIGURE_ARGS+=	--with-mysql
 -LIB_DEPENDS+=		mysqlclient.${MYSQL${MYSQL_VER}_LIBVER}:${PORTSDIR}/databases/mysql${MYSQL_VER}-client
  .endif
  
 -.if defined(WITH_LDAP)
 +.if defined(WITH_OPENLDAP)
 +USE_OPENLDAP=		YES
  CONFIGURE_ARGS+=	--with-ldap=openldap
 -LIB_DEPENDS+=		ldap.2:${PORTSDIR}/net/openldap${LDAP_VER}
  .endif
  
  show-options:
 @@ -110,4 +86,4 @@
  	@${ECHO} "------------------------------------------------------------------------"
  	@${ECHO} ""
  
 -.include <bsd.port.post.mk>
 +.include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308271000.h7RA0mRt020121>