Bug 179979 - [PATCH] mail/qmailadmin: MODIFY_QUOTA configuration error
Summary: [PATCH] mail/qmailadmin: MODIFY_QUOTA 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:30 UTC by claudiu
Modified: 2013-06-25 22:00 UTC (History)
0 users

See Also:


Attachments
file.diff (498 bytes, patch)
2013-06-25 21:30 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:30:01 UTC
It appears that the option to modify quota is not active even if it's set in
make config.
It appears that there is an error in Makefile, it should be MODIFY_QUOTA_CONFIGURE_ON
instead of
MODIFY_QUOTA_CONFIGURE_OFF
because the option --enable-modify-quota is for enabling not for disabling that option.

Fix: here is a quick fix:

[root@master /usr/ports/mail/qmailadmin]# diff -ur Makefile.orig Makefile    
How-To-Repeat: recompile the port
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-25 21:30:15 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:59:07 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-06-25 21:59:11 UTC
Author: bdrewery
Date: Tue Jun 25 20:59:02 2013
New Revision: 321767
URL: http://svnweb.freebsd.org/changeset/ports/321767

Log:
  - Fix MODIFY_QUOTA after option helper conversion
  
  PR:		ports/179979
  Submitted by:	Claudiu Bosioc <claudiu@casi.ro>

Modified:
  head/mail/qmailadmin/Makefile

Modified: head/mail/qmailadmin/Makefile
==============================================================================
--- head/mail/qmailadmin/Makefile	Tue Jun 25 20:53:53 2013	(r321766)
+++ head/mail/qmailadmin/Makefile	Tue Jun 25 20:59:02 2013	(r321767)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qmailadmin
 PORTVERSION=	1.2.15
-PORTREVISION=	4
+PORTREVISION=	5
 PORTEPOCH=	2
 CATEGORIES=	mail www
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} \
@@ -66,7 +66,7 @@ CONFIGURE_ARGS+=	\
 
 IPAUTH_CONFIGURE_OFF=		--disable-ipauth
 USER_INDEX_CONFIGURE_OFF=	--disable-user-index
-MODIFY_QUOTA_CONFIGURE_OFF=	--enable-modify-quota
+MODIFY_QUOTA_CONFIGURE_ON=	--enable-modify-quota
 DOMAIN_AUTOFILL_CONFIGURE_ON=	--enable-domain-autofill
 IDX_SQL_CONFIGURE_OFF=		--disable-ezmlm-mysql
 HELP_CONFIGURE_ON=		--enable-help
_______________________________________________
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"