Port details |
- ldap2dns Maintain DNS zones using an LDAP directory
- 0.4.2_2 net
=0 0.4.2_2Version of this port present on the latest quarterly branch.
- BROKEN: unfetchable
DEPRECATED: Unfetchable, unmaintained This port expired on: 2019-10-16 IGNORE: is marked as broken: unfetchable
- There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
- Port Added: 2003-09-29 00:48:13
- Last Update: 2019-10-16 15:29:32
- SVN Revision: 514601
- License: GPLv2
- WWW:
- https://github.com/bklang/ldap2dns
- Description:
- From the website:
ldap2dns is a program to create DNS (Domain Name Service) records directly
from a LDAP directory. ldap2dns is designed to write ASCII data files used
by tinydns from the djbdns package, but also may be used to write .db-files
used by named as found in the BIND package.
WWW: https://github.com/bklang/ldap2dns
-
cgit ¦ GitHub ¦ GitHub ¦ GitLab ¦
- Manual pages:
-
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- No installation instructions:
- This port has been deleted.
- PKGNAME: ldap2dns
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (ldap2dns-0.4.2.tar.gz) = 23a24bd2233dafeb40cc2d755fa24cc4bd1207e92fdee614e642ea1064711b98
SIZE (ldap2dns-0.4.2.tar.gz) = 61325
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- gmake : devel/gmake
- Runtime dependencies:
-
- p5-Net-DNS>=0 : dns/p5-Net-DNS
- p5-perl-ldap>=0 : net/p5-perl-ldap
- perl5>=5.30.r1<5.31 : lang/perl5.30
- Library dependencies:
-
- libldap-2.4.so.2 : net/openldap24-client
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for ldap2dns-0.4.2_2:
DOCS=on: Build and/or install documentation
===> Use 'make config' to modify these settings
- Options name:
- N/A
- USES:
- gmake localbase:ldflags perl5 shebangfix
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.4.2_2 16 Oct 2019 15:29:32 |
rene |
Remove expired ports:
2019-10-16 archivers/freetar: Unfetchable, unmaintained
2019-10-16 archivers/hffzip: Unfetchable, unmaintained
2019-10-16 archivers/hpack.non-usa.only: Unfetchable, unmaintained
2019-10-16 archivers/untar: Unfetchable, unmaintained
2019-10-16 astro/gpsdrive: Unfetchable, unmaintained
2019-10-16 astro/planets: Unfetchable, unmaintained
2019-10-16 audio/ascd: Unfetchable, unmaintained
2019-10-16 audio/audiotag: Unfetchable, unmaintained
2019-10-16 audio/gmidimonitor: Unfetchable, unmaintained
2019-10-16 audio/gmpc-lyricwiki: Unfetchable, unmaintained
2019-10-16 audio/jack_mixer: Unfetchable, unmaintained
2019-10-16 audio/jmusic: Unfetchable, unmaintained
2019-10-16 audio/maplay: Unfetchable, unmaintained (Only the first 15 lines of the commit message are shown above ) |
0.4.2_2 15 Sep 2019 17:28:09 |
antoine |
Deprecate a few ports |
0.4.2_2 05 Aug 2019 06:37:31 |
antoine |
Mark BROKEN: unfetchable |
0.4.2_2 30 Sep 2016 19:24:30 |
tijl |
Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.
USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.
Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set. Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.
Fix some issues with LIBS in some ports.
Switch ports that don't support LIBS to localbase:ldflags.
PR: 212987
Exp-run by: antoine
Approved by: portmgr (antoine) |
0.4.2_2 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
0.4.2_2 08 Jan 2016 14:19:56 |
amdmi3 |
- Remove unneeded WRKSRC
- Switch to USES=localbase
- Switch to options helpers
- Simplify installation |
0.4.2_2 20 Dec 2014 19:23:20 |
bapt |
cleanup plist |
0.4.2_2 24 Jul 2014 18:34:16 |
tijl |
net/openldap24-*:
- Convert to USES=libtool and bump dependent ports
- Avoid USE_AUTOTOOLS
- Don't use PTHREAD_LIBS
- Use MAKE_CMD
databases/glom:
- Drop :keepla
- Add INSTALL_TARGET=install-strip
databases/libgda4* databases/libgda5*:
- Convert to USES=libtool and bump dependent ports
- USES=tar:xz
- Use INSTALL_TARGET=install-strip
- Use @sample (Only the first 15 lines of the commit message are shown above ) |
0.4.2_1 11 Jun 2014 14:50:00 |
tijl |
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above ) |
0.4.2_1 17 May 2014 08:40:47 |
miwi |
- Stage support
- Support USE_GITHUB
- Support shebangfix USES macro
PR: 187758
Submitted by: Ports Fury |
0.4.2 20 Sep 2013 22:10:25 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net) |
0.4.2 03 Aug 2013 13:44:01 |
mat |
- Convert to new perl framework
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
0.4.2 25 Oct 2012 22:19:48 |
bapt |
Update 0.4.2
Add license
Respect DOCS
Trim heade
Undeprecate
point to new home
PR: ports/172040
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Feature safe: yes |
0.4.1_2 21 Sep 2012 10:07:34 |
bapt |
Deprecate a bunch a ports with no more public distfiles (thanks ehaupt's
distilator) |
0.4.1_2 11 Jul 2012 18:12:29 |
crees |
Reset maintainership for ports maintained by Gerrit Beine.
He had requested this some time ago, so any past timeouts should not be held
against him.
Your work in the past has been much appreciated, thank you.
Submitted by: maintainer, via private email |
0.4.1_2 30 Jun 2012 14:39:14 |
az |
- Remove SITE_PERL from *_DEPENDS
Approved by: portmgr@ (bapt@) |
0.4.1_2 20 Mar 2011 12:54:45 |
miwi |
- Get Rid MD5 support |
0.4.1_2 25 Feb 2011 01:32:18 |
delphij |
Chase after net/openldap24-server update.
Reminded by: miwi |
0.4.1_1 05 Jan 2009 19:04:45 |
delphij |
Bump PORTREVISION's after OpenLDAP update.
Suggested by: rafan |
0.4.1 25 Jul 2008 12:24:09 |
pav |
- Remove duplicates from MAKE_ENV after inclusion of CC and CXX in default
MAKE_ENV |
0.4.1 05 Nov 2006 00:19:13 |
miwi |
- Update to 0.4.1
PR: ports/105038
Submitted by: Gerrit Beine<gerrit.beine@gmx.de> (maintainer)
Sponsored by: FreeBSD Bug-a-thon #2 |
0.3.6 11 May 2006 22:49:56 |
edwin |
Remove USE_REINPLACE from all categories starting with N |
0.3.6 14 Jan 2006 17:17:58 |
pav |
- Update to 0.3.6
- Take maintainership
PR: ports/91790
Submitted by: Gerrit Beine <gerrit.beine@gmx.de> |
0.3.1_1 12 Dec 2005 21:53:40 |
bms |
Drop maintainership for ports which I sadly no longer have
the time, hardware, or resources to maintain. |
0.3.1_1 25 Mar 2004 03:13:15 |
bms |
SIZE update jumbo-commit.
Submitted by: trevor |
0.3.1_1 16 Feb 2004 14:37:39 |
bms |
Update this port to use the USE_OPENLDAP switch from bsd.port.mk.
Noticed by: Oliver Eikemeier |
0.3.1_1 16 Feb 2004 14:35:30 |
bms |
Whitespace. |
0.3.1_1 04 Feb 2004 05:10:27 |
marcus |
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 1) |
0.3.1 03 Jan 2004 20:30:39 |
dougb |
Adjust the dependency check on p5-Net-DNS to take into account its
new PERL_ARCH'ified location.
In a few cases, standardize on searching for
${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm instead of other files. |
0.3.1 29 Sep 2003 00:46:56 |
bms |
New port: net/ldap2dns
PR: ports/50767 |