Skip site navigation (1)Skip section navigation (2)
Date:      Thu,  1 Jun 2006 00:30:12 +0800 (CST)
From:      Gea-Suan Lin <gslin@gslin.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        jmelo@FreeBSD.org
Subject:   ports/98228: [PATCH] mail/mailman: Use "?=" to allow user to set gid
Message-ID:  <20060531163013.305C288@netnews.NCTU.edu.tw>
Resent-Message-ID: <200605311640.k4VGeD9d060042@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         98228
>Category:       ports
>Synopsis:       [PATCH] mail/mailman: Use "?=" to allow user to set gid
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 31 16:40:12 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Gea-Suan Lin
>Release:        FreeBSD 6.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD netnews.NCTU.edu.tw 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sat May 13 03:43:48 CST 2006
>Description:
- Use ?= to allow user to change MAIL_GID.

Port maintainer (jmelo@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- mailman-2.1.8_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/mail/mailman/Makefile /home/staff/gslin/work/mailman/Makefile
--- /usr/ports/mail/mailman/Makefile	Wed May 31 03:11:55 2006
+++ /home/staff/gslin/work/mailman/Makefile	Thu Jun  1 00:28:46 2006
@@ -67,28 +67,28 @@
 .if defined(WITH_EXIM3) || defined(WITH_EXIM4) || defined(WITH_POSTFIX)
 BROKEN=	choose only one MTA integration
 .endif
-MAIL_GID+=	mailnull
+MAIL_GID?=	mailnull
 .endif
 
 .if defined(WITH_EXIM3)
 .if defined(WITH_SENDMAIL) || defined(WITH_EXIM4) || defined(WITH_POSTFIX)
 BROKEN=	choose only one MTA integration
 .endif
-MAIL_GID+=	nobody
+MAIL_GID?=	nobody
 .endif
 
 .if defined(WITH_EXIM4)
 .if defined(WITH_SENDMAIL) || defined(WITH_EXIM3) || defined(WITH_POSTFIX)
 BROKEN=	choose only one MTA integration
 .endif
-MAIL_GID+=	mail
+MAIL_GID?=	mail
 .endif
 
 .if defined(WITH_POSTFIX)
 .if defined(WITH_SENDMAIL) || defined(WITH_EXIM3) || defined(WITH_EXIM4)
 BROKEN=	choose only one MTA integration
 .endif
-MAIL_GID+=	nobody
+MAIL_GID?=	nobody
 .endif
 
 .if defined(WITH_CHINESE)
--- mailman-2.1.8_1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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