mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Second patch form the PR was missed
- Found serious OPTIONS interaction errors. Fixed. PR: ports/78723 Submitted by: Boris Kovalenko <boris@tagnet.ru> (maintainer)
This commit is contained in:
parent
a2bc1c2c4c
commit
0786e76dd7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=131028
2 changed files with 8 additions and 2 deletions
|
@ -14,6 +14,7 @@ MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/
|
|||
MAINTAINER= boris@tagnet.ru
|
||||
COMMENT= Virtual-domain capable POP3 server supporting MySQL,PgSQL etc auth
|
||||
|
||||
IS_INTERACTIVE= yes
|
||||
USE_OPENSSL= yes
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
@ -30,8 +31,13 @@ OPTIONS= MYSQL "Use MySQL authentication" off \
|
|||
FLATAUTH "Enable /etc/passwd-style authentication" off \
|
||||
MAILDIR "Compile Maildir support" on
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# MySQL authentication
|
||||
.if defined(WITH_MYSQL) && !defined(WITHOUT_MYSQL)
|
||||
.if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL)
|
||||
IGNORE= MySQL and PgSQL authentication can not be build together
|
||||
.endif
|
||||
USE_MYSQL= yes
|
||||
DEFAULT_MYSQL_VER= 41
|
||||
CONFIGURE_ARGS+= --enable-auth-mysql \
|
||||
|
@ -93,4 +99,4 @@ post-install:
|
|||
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -33,7 +33,7 @@ tpop3d_flags=${tpop3d_flags:-""}
|
|||
load_rc_config $name
|
||||
|
||||
command=%%PREFIX%%/sbin/tpop3d
|
||||
required_files=%%PREFIX%%/tpop3d.conf
|
||||
required_files=%%PREFIX%%/etc/tpop3d.conf
|
||||
pidfile=/var/run/tpop3d.pid
|
||||
|
||||
tpop3d_flags="${tpop3d_flags} -f ${required_files} -p ${pidfile}"
|
||||
|
|
Loading…
Add table
Reference in a new issue