Bug 179978 - [PATCH] mail/vpopmail: ROAMING configuration error
Summary: [PATCH] mail/vpopmail: ROAMING configuration error
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Bryan Drewery
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-25 21:20 UTC by claudiu
Modified: 2013-06-25 22:00 UTC (History)
0 users

See Also:


Attachments
file.diff (604 bytes, patch)
2013-06-25 21:20 UTC, claudiu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description claudiu 2013-06-25 21:20:01 UTC
It appears that the option ROAMING to enable roaming users support is not active even if it's set in make config.
It appears that there is an error in Makefile, the second time ROAMING_CONFIGURE_ON appears in the Makefile, it should have += instead of =

Fix: here is a quick fix:

[root@master /usr/ports/mail/vpopmail]# diff -ur Makefile.orig Makefile
How-To-Repeat: recompile the port
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-25 21:20:13 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bdrewery

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Bryan Drewery freebsd_committer freebsd_triage 2013-06-25 21:53:58 UTC
State Changed
From-To: open->closed

Fixed, thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-06-25 21:54:01 UTC
Author: bdrewery
Date: Tue Jun 25 20:53:53 2013
New Revision: 321766
URL: http://svnweb.freebsd.org/changeset/ports/321766

Log:
  - Fix ROAMING after option helpers conversion
  
  PR:		ports/179978
  Reported by:	Claudiu Bosioc <claudiu@casi.ro>

Modified:
  head/mail/vpopmail/Makefile

Modified: head/mail/vpopmail/Makefile
==============================================================================
--- head/mail/vpopmail/Makefile	Tue Jun 25 20:32:57 2013	(r321765)
+++ head/mail/vpopmail/Makefile	Tue Jun 25 20:53:53 2013	(r321766)
@@ -3,7 +3,7 @@
 
 PORTNAME=	vpopmail
 PORTVERSION=	5.4.32
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} \
 		SF/${PORTNAME}/${PORTNAME}-devel/${PORTVERSION}
@@ -138,7 +138,6 @@ DOMAIN_QUOTAS_CONFIGURE_OFF=	--enable-do
 PASSWD_CONFIGURE_ON=		--enable-passwd
 MD5_PASSWORDS_CONFIGURE_OFF=	--disable-md5-passwords
 VALIAS_CONFIGURE_ON=		--enable-valias
-ROAMING_CONFIGURE_ON=		--enable-roaming-users
 CLEAR_PASSWD_CONFIGURE_OFF=	--disable-clear-passwd
 LEARN_PASSWORDS_CONFIGURE_ON=	--enable-learn-passwords
 LDAP_CONFIGURE_ON=		--enable-auth-module=ldap
@@ -152,7 +151,8 @@ FILE_SYNC_CONFIGURE_ON=		--enable-file-s
 AUTH_LOG_CONFIGURE_OFF=		--disable-auth-logging
 USERS_BIG_DIR_CONFIGURE_OFF=	--disable-users-big-dir
 SEEKABLE_CONFIGURE_OFF=		--disable-make-seekable
-ROAMING_CONFIGURE_ON=		--enable-relay-clear-minutes=${RELAYCLEAR}
+ROAMING_CONFIGURE_ON=		--enable-roaming-users \
+				--enable-relay-clear-minutes=${RELAYCLEAR}
 
 MYSQL_CONFIGURE_ON=		--enable-auth-module=mysql \
 				--enable-incdir=${LOCALBASE}/include/mysql \
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"