notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: net/isc-dhcp41-server/Makefile

Number of commits found: 46

Monday, 23 May 2016
20:35 amdmi3 search for other commits by this committer
Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by
default anyway and don't need to be listed

Approved by:	portmgr blanket
Original commitRevision:415742 
Monday, 18 Jan 2016
14:23 feld search for other commits by this committer
net/isc-dhcp41-server & isc-dhcp42-server: Fix expiration

Should be EXPIRATION_DATE not EXPIRES

Pointyhat:	me
Keen eye:	danfe
Original commitRevision:406575 
Sunday, 17 Jan 2016
19:02 feld search for other commits by this committer
net/isc-dhcp41-server: Update to 4.1-ESV-R12-P1

This fixes CVE-2015-8605.

Mark DEPRECATED and provide EXPIRES to coincide with 2016Q2 branch
creation.

The PORTVERSION scheme of this port is strange, but I am continuing the
current version scheme as this is probably the last release of the 4.1
branch. The ISC Software Support Policy states that 4.1 ESV is support
ends December 2015. [1]

[1] http://www.isc.org/downloads/software-support-policy/

MFH:		2016Q1
Security:	CVE-2015-8605
Original commitRevision:406527 
Monday, 17 Aug 2015
14:20 mat search for other commits by this committer
Remove UNIQUENAME and LATEST_LINK.

UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.

Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.

Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)

Reviewed by:	antoine, bapt
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3336
Original commitRevision:394508 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Saturday, 18 Apr 2015
15:14 tijl search for other commits by this committer
Convert to USES=autoreconf
Original commitRevision:384229 
Thursday, 4 Sep 2014
19:26 antoine search for other commits by this committer
Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user

Differential Revision:	https://reviews.freebsd.org/D703
Reviewed by and discussed with:	bapt
With hat:	portmgr
Original commitRevision:367307 
Tuesday, 12 Aug 2014
15:06 marino search for other commits by this committer
net/isc-dhcp41-server: Fix build with LDAP support

PR:		192584
Submitted by:	denis (inferno.incoherency.net)
Approved by:	maintainer (Douglas Thrift)
Original commitRevision:364711 
Thursday, 24 Jul 2014
18:34 tijl search for other commits by this committer
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

databases/libgdamm:
- Drop :keepla
- USES=tar:bzip2
- Use INSTALL_TARGET=install-strip

databases/libgdamm5:
- Add INSTALL_TARGET=install-strip
- Drop --enable-static (inherited from old repocopy)

devel/anjuta x11-toolkits/py-gnome-extras:
- Drop :keepla

dns/powerdns dns/powerdns-devel:
- Convert to USES=libtool
- Add INSTALL_TARGET=install-strip
- Disable static modules
- Stop creating library symlinks with .0 suffix, not needed for dynamically
  opened modules

mail/dovecot2:
- Add USES=libtool

mail/dovecot2-pigeonhole:
- Drop CONFIGURE_TARGET (incorrect for Dragonfly)
- Add USES=libtool and INSTALL_TARGET=install-strip

math/gnumeric:
- USES=libtool tar:xz

Approved by:	portmgr (implicit, bump unstaged ports)
Original commitRevision:362835 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
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
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:357486 
Sunday, 30 Mar 2014
13:31 zi search for other commits by this committer
- Unbreak botched STAGE conversion
- Bump PORTREVISION

PR:		ports/188020
Submitted by:	Nick <decrofn@gmail.com>, Jason Unovitch <oneshotuno@yahoo.com>
Original commitRevision:349617 
Wednesday, 26 Mar 2014
17:27 garga search for other commits by this committer
Support STAGE
Original commitRevision:349269 
Friday, 20 Sep 2013
22:10 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
net)
Original commitRevision:327755 
Monday, 16 Sep 2013
06:30 az search for other commits by this committer
- convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
Original commitRevision:327365 
Wednesday, 12 Dec 2012
18:48 wxs search for other commits by this committer
Remove the header for ports I created.

For dns/openresolv give proper attribution. This was a copy/paste
mistake the submitter made, which incorrectly gave me attribution
for that file. I did not create it.
Original commitRevision:308777 
Thursday, 13 Sep 2012
20:10 zi search for other commits by this committer
- Update to 4.1-ESV-R7

Approved by:	Douglas Thrift <douglas@douglasthrift.net> (maintainer)
Original commitRevision:304231 
Monday, 30 Jul 2012
12:42 zi search for other commits by this committer
- Update net/isc-dhcp41-server to 4.1-ESV-R6 [1]
- Document vulnerabilities in net/isc-dhcp41-server
- Cleanup formatting in vuxml

PR:		ports/170245 [1]
Submitted by:	Douglas Thrift <douglas@douglasthrift.net> (maintainer) [1]
Security:	c7fa3618-d5ff-11e1-90a2-000c299b62e1
Original commit
Monday, 18 Jun 2012
06:03 scheidell search for other commits by this committer
- Update to 4.1-ESV-R5
- Convert to Options NG

PR:             ports/169185
Submitted by:   douglas@douglasthrift.net (maintainer)
Original commit
Wednesday, 18 Apr 2012
17:55 zi search for other commits by this committer
- Resolve dhcrelay6 issue with rc script that prevented it from working
properly.
- Bump PORTREVISION of isc-dhcp4?-relay ports

Reported by:    Glen Neff <glen.neff@emc.com>
Approved by:    Douglas Thrift <douglas@douglasthrift.net>, zi@
Original commit
Wednesday, 7 Dec 2011
23:45 zi search for other commits by this committer
- Update to 4.1-ESV-R4

Approved by:    Douglas Thrift <douglas@douglasthrift.net> (maintainer)
Security:       93be487e-211f-11e1-89b4-001ec9578670
Feature safe:   yes
Original commit
Wednesday, 17 Aug 2011
13:02 wxs search for other commits by this committer
- Apply an extra patch to fix the LDAP breakage that happened with the last
  update. It should be noted that LDAP support is built in to 4.2, so people
  are encouraged to move to that if you want LDAP support.

PR:             ports/159830
Submitted by:   Douglas William Thrift <douglas@douglasthrift.net> (maintainer)
Original commit
Sunday, 14 Aug 2011
01:45 wxs search for other commits by this committer
- Update to 4.1-ESV-R3 to address DoS issue.

PR:             ports/159698
Submitted by:   wxs@
Approved by:    Douglas Thrift <douglas@douglasthrift.net> (maintainer)
Security:       510b630e-c43b-11e0-916c-00e0815b8da8
Original commit
Sunday, 10 Jul 2011
03:24 dougb search for other commits by this committer
Expand CONFLICTS to handle isc-dhcp42 and beyond

Prompted by:    sunpoet
Original commit
Thursday, 7 Jul 2011
18:58 dougb search for other commits by this committer
Fix -user argument for dhcpdv6

PR:             ports/158375
Submitted by:   Douglas William Thrift <douglas@douglasthrift.net> (maintainer)
Original commit
Tuesday, 21 Jun 2011
17:08 lev search for other commits by this committer
  Fix rc(5) complains about dhcrelay6_enable variable.
Original commit
Friday, 3 Jun 2011
12:31 wxs search for other commits by this committer
net/isc-dchp41-server port installs two RC_SUBR scripts: isc-dhcpd and
isc-dhcpd6 when it is built with IPv6 support.  net/isc-dchp41-relay could be
built with IPv6 support, but it doesn't provide way to start two realys (for
IPv4 and IPv6) simultaneously.  This patch changes RC_SUBR script isc-dhcrelay
to support such operations, and install link from isc-dhcrelay to isc-dhcrelay6
when port is built with IPv6 support.

PR:             ports/157501
Submitted by:   lev@
Approved by:    Douglas Thrift <douglas@douglasthrift.net> (maintainer)
Original commit
Monday, 9 May 2011
00:58 sunpoet search for other commits by this committer
- Add OPTIONS: DHCP_IPV6 to make IPv6 support optional
- Use bsd.port.mk and bsd.port.options.mk
- Make portlint happier

PR:             ports/156846
Submitted by:   Alex Deiter <alex.deiter@gmail.com>
Approved by:    Douglas Thrift <douglas@douglasthrift.net> (maintainer)
Original commit
Sunday, 10 Apr 2011
21:40 wxs search for other commits by this committer
Update to the latest ESV release to address security vulnerability.

PR:             ports/156246
Submitted by:   Douglas Thrift <douglas@douglasthrift.net>
Security:       7e69f00d-632a-11e0-9f3a-001d092480a4
Original commit
Thursday, 17 Feb 2011
14:16 wxs search for other commits by this committer
Pass maintainer to Douglas Thrift. He's able to give these
ports the tender loving care they deserve.

Submitted by:   Douglas Thrift <douglas@douglasthrift.net> (private mail)
Original commit
Monday, 14 Feb 2011
02:21 wxs search for other commits by this committer
Add support for DHCPv6 server.

PR:             ports/153781
Submitted by:   Douglas William Thrift <douglas@douglasthrift.net>
Original commit
Saturday, 29 Jan 2011
01:05 wxs search for other commits by this committer
Update to 4.1.2-P1 (4.1.2_1,1) to address DHCPv6 server crash bug.

Feature safe:   yes
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Wednesday, 24 Nov 2010
19:10 wxs search for other commits by this committer
Update to 4.1.2
Original commit
Sunday, 24 Oct 2010
13:56 wxs search for other commits by this committer
Add a patch to support running on VLAN interfaces.
Bump server PORTREVISION to accomodate.

Submitted by:   matpockuh@gmail.com (via current@)
Original commit
Saturday, 16 Oct 2010
11:52 ade search for other commits by this committer
Punt autoconf267->autoconf268
Original commit
Thursday, 7 Oct 2010
15:18 ade search for other commits by this committer
Migration of final set of working ports from automake{19,110} -> 111
Original commit
Thursday, 30 Sep 2010
12:17 wxs search for other commits by this committer
Remove trailing backslash.

Noticed by:     Craig Leres <leres@ee.lbl.gov>
Original commit
Tuesday, 28 Sep 2010
20:57 wxs search for other commits by this committer
Quickly revert PORTREVISION_SERVER and increment PORTREVISION_CLIENT instead.
Original commit
20:55 wxs search for other commits by this committer
Use the provided script instead of the one provided by the port. The one
provided by the port infrastructure is outdated and doesn't support dhcpv6.

Noticed by:     lstewart@
Original commit
Wednesday, 15 Sep 2010
18:35 ade search for other commits by this committer
Autotools update.   Read ports/UPDATING 20100915 for details.

Approved by:    portmgr (for Mk/bsd.port.mk part)
Tested by:      Multiple -exp runs
Original commit
Monday, 6 Sep 2010
12:22 wxs search for other commits by this committer
Make sure _PATH_DHCPD_CONF is defined properly.

PR:             ports/150209
Submitted by:   Craig Leres <leres@ee.lbl.gov>
Original commit
Monday, 12 Jul 2010
01:54 wxs search for other commits by this committer
[1]: Don't remove /var/db/dhcpd on deinstall. This was breaking chroot setups
     on upgrade.
[2]: Install more man pages.
[3]: Add LDAP configuration support. This was present in the other port.

PR:             [1]: ports/147857
                [2]: ports/147917
                [3]: ports/147869
Submitted by:   [1]: Henno Schooljan <henno@schooljan.nl>
                [2]: Craig Leres <leres@ee.lbl.gov>
                [3]: Alexander V. Ribchansky <triosoft@triosoft.com.ua>
Original commit
Wednesday, 9 Jun 2010
01:06 wxs search for other commits by this committer
Update to 4.1.1-P1.
Have to bump PORTEPOCH here unfortunately.
Original commit
Saturday, 29 May 2010
22:20 wxs search for other commits by this committer
net/isc-dhcp41-client:
 - Set the default dhclient-script and dhclient.conf properly.

PR:             ports/146608
Submitted by:   Craig Leres <leres@ee.lbl.gov>
Original commit
Saturday, 15 May 2010
02:58 wxs search for other commits by this committer
Add the headers and libraries to net/isc-dhcp41-server. There will be no
net/isc-dhcp4-devel port as it would conflict with the server (installs some
of the same files). For this reason I decided to just make
net/isc-dhcp41-server install the development libraries and headers.

Based upon a patch from:        Attila Nagy (private mail)
Original commit
Thursday, 6 May 2010
20:24 wxs search for other commits by this committer
Welcome net/isc-dhcp41-server, net/isc-dhcp41-client and net/isc-dhcp41-relay
to the tree.

There's still a small bit of work to do including adding conflicts for the
existing DHCP ports (which should have been conflicting with each other
already) and add a 41-devel port so people can use the headers and libraries.
Original commit

Number of commits found: 46