[Bug 205924] [patch] mail/maildrop: Fix anomaly in OPTIONS (DOCS appears twice)

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Jan 5 16:42:07 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205924

            Bug ID: 205924
           Summary: [patch] mail/maildrop: Fix anomaly in OPTIONS (DOCS
                    appears twice)
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Keywords: patch
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: madpilot at FreeBSD.org
          Reporter: marino at FreeBSD.org
          Keywords: patch
          Assignee: madpilot at FreeBSD.org
             Flags: maintainer-feedback?(madpilot at FreeBSD.org)

Created attachment 165111
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=165111&action=edit
one-line patch to fix options anomaly of maildrop

The way maildrop gets its options has resulted in an unwanted side effect.  

Currently, "make showconfig" produces: 

===> The following configuration options are available for maildrop-2.8.3_2:
     AUTHLIB=off: Courier Auth Library support
     DOCS=off: Build and/or install documentation
     DOVECOTAUTH=off: Dovecot Authentication support
     FAM=off: File Alteration Monitor support
     GDBM=off: GNU dbm library support
     IDN=off: International Domain Names support
     MAILWRAPPER=off: Let configure guess which sendmail binary to use
====> Courier Auth Library support: you have to choose at least one of them
     AUTH_LDAP=off: LDAP support
     AUTH_MYSQL=off: MySQL support
     AUTH_PGSQL=off: PostgreSQL support
     AUTH_USERDB=off: Userdb support
     AUTH_VCHKPW=off: popmail/vchkpw support
     DOCS=off: Build and/or install documentation
===> Use 'make config' to modify these settings

Noe that "DOCS" appears both in the single options list and the group list

With the attached patch, "make showconfig" produces:
===> The following configuration options are available for maildrop-2.8.3_2:
     AUTHLIB=off: Courier Auth Library support
     DOCS=on: Build and/or install documentation
     DOVECOTAUTH=off: Dovecot Authentication support
     FAM=off: File Alteration Monitor support
     GDBM=off: GNU dbm library support
     IDN=off: International Domain Names support
     MAILWRAPPER=off: Let configure guess which sendmail binary to use
====> Courier Auth Library support: you have to choose at least one of them
     AUTH_LDAP=off: LDAP support
     AUTH_MYSQL=off: MySQL support
     AUTH_PGSQL=off: PostgreSQL support
     AUTH_USERDB=off: Userdb support
     AUTH_VCHKPW=off: popmail/vchkpw support
===> Use 'make config' to modify these settings

(DOCS no longer appears in the Couriere Auth Library group)
I assume that's the desired situation.  There should only be one DOCS option
for the port IMHO.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list