2.1.17.
o Provides Flag OPENLDAP_STABLE to build against stable branch of
openldap instead of release branch. This gets us an
openldap21-stable-2.1.17 package.
o Maintenance of MLINKS for dropped manual pages and plist for addition
of schema/README
PR: ports/50814
Submitted by: Christian Kratzer <ck@cksoft.de> (maintainer)
OpenLDAP is a suite of Lightweight Directory Access Protocol
(LDAP) servers, clients, utilities and development tools.
(yes, this port was the reason why the renaming was earlier this morning)
PR: ports/46009
Submitted by: Christian Kratzer <ck@cksoft.de>
* Rewrite lines like:
@exec [ CONDITION ] && ACTION
as:
@exec [ ! CONDITION ] || ACTION
In the first version, the @executed command returns false if CONDITION
is false and ACTION is not performed: pkg_add would then complain about the
whole command's exit code.
The second version returns either true or the actual ACTION exit code.
* Do not echo some Makefile commands.