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) combinatio for a given watch list. This is what FreshPorts will look for.

non port: deskutils/logjam/Makefile

Number of commits found: 57

Sunday, 30 Aug 2020
09:47 zeising search for other commits by this committer
Extend expiration of ports broken with -fno-common

Extend the expiration of unmaintained leaf ports that are broken with
-fno-common and previously had a short expiration date.  The new date is set
to 2021-04-01, meaning the ports will be in the 2021Q2 branch, giving people
until 2021-06-30 (10 months from now) to fix issues.
Improve the wording of the deprecation message, mentioning both llvm 11 and
-fno-common.
Bump portrevision to force reinstall.  This way the warning message about
deprecation will be displayed to users installing or reinstalling the
software.

MFH:		2020Q3 (maybe)
Original commitRevision:547044 
Saturday, 29 Aug 2020
09:22 tcberner search for other commits by this committer
deskutils/logjam: fix build on current and deprecate
Original commitRevision:546891 
Friday, 8 Nov 2019
09:41 tobik search for other commits by this committer
deskutils: Add missing USES={gnome,mate,php}
Original commitRevision:517044 
Sunday, 24 Feb 2019
12:47 novel search for other commits by this committer
Drop maintainership

Return back to the pool ports I no longer use.
Original commitRevision:493757 
Friday, 21 Dec 2018
14:07 rene search for other commits by this committer
deskutils/logjam: remove optional dependency on expired multimedia/xmms
Original commitRevision:487999 
Thursday, 8 Dec 2016
17:01 tijl search for other commits by this committer
Remove libcurl.so.7 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps.  Bump dependent ports that have not
been bumped since.
Original commitRevision:428136 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Sunday, 13 Sep 2015
14:36 bapt search for other commits by this committer
Convert to option framework
Use options helpers
Remove usage of HAVE_GNOME
Original commitRevision:396829 
Saturday, 29 Nov 2014
18:22 tijl search for other commits by this committer
Split devel/gettext in devel/gettext-runtime and devel/gettext-tools.  The
first contains runtime libraries such as libintl and the latter contains
developer tools such as msgfmt.  Ports that use gettext will usually need
a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools.

USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on
devel/gettext-runtime and USES=gettext-tools can be used to set a
BUILD/RUN_DEPENDS on devel/gettext-tools.  USES=gettext is now the same
as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on
devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools.

Update gettext to 0.19.3.

Remove :oldver from converters/libiconv and devel/gettext-runtime.  Leave
symlinks with the old library versions to avoid the need to bump
PORTREVISION on a large number of dependent ports.  When most of the
dependent ports have had normal version updates, PORTREVISION can be
bumped on the remaining ones (low number) and the links can be removed.

Fix some ports that installed files in lib/locale instead of share/locale.

PR:		194038
Reviewed by:	bapt
Exp-run:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:373636 
Tuesday, 29 Jul 2014
18:41 adamw search for other commits by this committer
Convert a bunch of USE_BZIP2 to USES=tar:bzip2

Approved by:	portmgr (not really, but touches unstaged ports)
Original commitRevision:363371 
Friday, 27 Jun 2014
17:21 miwi search for other commits by this committer
- Chase database/sqlite3 slib bump

Approved by:	portmgr (myself)
Original commitRevision:359586 
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 
Tuesday, 10 Jun 2014
07:39 olgeni search for other commits by this committer
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.

CR:		D196
Approved by:	portmgr (bapt)
Original commitRevision:357277 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
Tuesday, 25 Mar 2014
16:37 novel search for other commits by this committer
- Stage support
- Convert to USES=pathfix from using gnomehack
- Conver to USES=gmake from USE_GMAKE
Original commitRevision:349160 
Wednesday, 11 Dec 2013
18:28 bapt search for other commits by this committer
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in deskutils
Original commitRevision:336190 
Friday, 20 Sep 2013
16:21 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
deskutils)
Original commitRevision:327718 
Monday, 2 Sep 2013
22:23 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326107 
Thursday, 11 Jul 2013
16:26 sunpoet search for other commits by this committer
- Update to 7.31.0
- Bump PORTREVISION for ftp/curl shlib change
- Add TEST_DEPENDS
- Convert to new options framework
- Adjust options:
  - Add COOKIES
  - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1]
  - Add GSSAPI and SPNEGO [2]
  - Remove KERBEROS4
  - Rename LIBIDN to IDN
  - Remove TRACKMEMORY [1]
- Sort option handler
- Add SLAVEDIRS: ftp/curl-hiphop
- Cosmetic change
- Cleanup Makefile header
- While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile

Changes:	http://curl.haxx.se/changes.html
PR:		ports/172325 (-exp run), ports/177369 (based on) [1]
Submitted by:	Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2]
Exp run by:	miwi
Original commitRevision:322783 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Sunday, 25 Sep 2011
20:23 novel search for other commits by this committer
Update to 4.6.2.
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Saturday, 3 Apr 2010
10:44 roam search for other commits by this committer
Chase the ftp/curl shlib version bump.
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Friday, 31 Jul 2009
13:57 dinoex search for other commits by this committer
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by:   edwin
Original commit
Friday, 23 Jan 2009
15:43 roam search for other commits by this committer
Bump the version of the curl shared library after the ftp/curl update
to 7.19.2.
Bump PORTREVISION, even on the ports that do not have a versioned
dependency, since the binaries will most probably still stop working.
Original commit
Friday, 6 Jun 2008
13:18 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Monday, 24 Mar 2008
17:02 miwi search for other commits by this committer
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:    portmgr (xorg cleanup)
Original commit
Wednesday, 24 Oct 2007
23:37 marcus search for other commits by this committer
Presenting GNOME 2.20.1 and all related works for FreeBSD.  The official
GNOME 2.20 release notes can be found at
http://www.gnome.org/start/2.20/notes/en/ .  Beyond that, this update
includes the new GIMP 2.4 (courtesy of ahze).

The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME
hierarchy.  We are now using the more standard DATADIR of ${PREFIX}/share
rather than ${PREFIX}/share/gnome. The result is that fewer patches and
hacks are needed to port GNOME components to FreeBSD.  This will mean some
user changes may be required, so be sure to read /usr/ports/UPDATING for
more details.

This release and the things we accomplished in it would not have been
possible without mezz's crazy idea to collapse DATADIR, and his persistence
to make it happen successfully.  Ahze and pav also deserve thanks for
their work on porting modules and testing the whole ball of wax on
pointyhat (respectively).

The FreeBSD GNOME team would also like to thank our various testers and
contributors:

Yasuda Keisuke
Frank Jahnke
Pawel Worach
Brian Gruber
Franz Klammer
Yuri Pankov
Nick Barkas
Cristian KLEIN
Tony Maher
Scot Hetzel
Martin Matuska (mm)
Benoit Dejean
Martin Wilke (miwi)
(And anyone else I may have missed)

PRs fixed in this release:

111272, 113470, 115995, 116338
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Monday, 19 Mar 2007
05:14 marcus search for other commits by this committer
Presenting GNOME 2.18 for FreeBSD.  GNOME 2.18 is a departure from recent GNOME
releases in that it focuses more on stability and functionality than on
new features.  Not that it doesn't have its share of new and exciting
items.  See http://www.gnome.org/start/2.18/ for all the goodies in
this release.

GNOME 2.18 for FreeBSD would not have been possible without the hard work
of the FreeBSD GNOME Team and our intrepid band of testers including
J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi,
Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen,
Phillip Neumann, Franz Klammer, and Neal Delmonico.
Original commit
Wednesday, 13 Dec 2006
12:41 roam search for other commits by this committer
Update the ftp/curl port to 7.16.0.
Bump PORTREVISION of all dependent ports.
Fix the build errors in the few ports that still use the long deprecated,
and now obsoleted, cURL options.

Thanks to everyone who took the time to look over the patch!

Discussed on:   -ports
Original commit
Sunday, 20 Aug 2006
09:35 novel search for other commits by this committer
Add two additional patches, one of them with backdated entries fix and
another provides a keyboard shortcut for insertion of images; and bump
PORTREVISION.

PR:             102237
Submitted by:   danfe
Original commit
Sunday, 28 May 2006
15:54 pav search for other commits by this committer
- Rename ports

  textproc/gtkspell2 -> textproc/gtkspell
  textproc/gtkspell2-reference -> textproc/gtkspell-reference
Original commit
Thursday, 4 May 2006
21:41 edwin search for other commits by this committer
Remove USE_REINPLACE from all categories starting with D
Original commit
Friday, 10 Feb 2006
17:01 novel search for other commits by this committer
Update to 4.5.3.
Original commit
Friday, 6 Jan 2006
23:30 novel search for other commits by this committer
- Update to 4.5.2
- Remove an obsolete patch
- Take maintainership

Approved by:    Mike (former maintainer)
Original commit
Saturday, 5 Nov 2005
05:22 marcus search for other commits by this committer
Bump PORTREVISION to chase the glib20 shared library update.
Original commit
Sunday, 4 Sep 2005
14:45 novel search for other commits by this committer
Update to 4.5.1.

Approved by:    Mike Patterson (maintainer)
Original commit
Saturday, 25 Jun 2005
08:50 novel search for other commits by this committer
Add an extra patch which adds support of recently added tags system for
livejournal.com. It can be enabled via WITH_TAGS_PATCH knob.

Approved by:    Mike (maintainer)
Obtained from:  http://www.livejournal.com/community/logjam_dev/28745.html
Original commit
Monday, 6 Jun 2005
06:24 novel search for other commits by this committer
Update to 4.4.1.

PR:             81925
Submitted by:   novel
Approved by:    Mike <mike.patterson@unb.ca> (maintainer)
Original commit
Monday, 9 May 2005
16:46 novel search for other commits by this committer
Fix build with xmms support enabled.

PR:             73758
Submitted by:   alfred
Original commit
Saturday, 12 Mar 2005
10:54 marcus search for other commits by this committer
Bump PORTREVISION to chase the glib20 shared lib version change.
Original commit
Wednesday, 22 Dec 2004
00:40 edwin search for other commits by this committer
[ patch ] fix logjam + gtkhtml3 problem

        LogJam's configure script tries to find libgtkhtml-3.0,
        while we have libgtkhtml-3.1 in ports tree. Of cource, it
        fails to do so and as a result we have logjam compiled
        without gtkhtml support even if gtkhtml3 is installed.

PR:             ports/74260
Submitted by:   Roman Bogorodskiy <bogorodskiy@inbox.ru>
Original commit
Sunday, 7 Nov 2004
22:37 marcus search for other commits by this committer
Bump PORTREVISIONS for all ports that depend on atk or pango to ease in the
big upgrade.
Original commit
Saturday, 6 Nov 2004
21:27 pav search for other commits by this committer
Add knob for a patch, which customizes a "journal link" dialog. It allows to use
aliases for users when posting links on their journals

PR:             ports/73563
Submitted by:   Roman Bogorodskiy <bogorodskiy@inbox.ru>
Approved by:    Mike <mike.patterson@unb.ca> (maintainer)
Original commit
Sunday, 20 Jun 2004
16:04 krion search for other commits by this committer
Fix a bug with syncing offline copy with LiveJournal.

PR:             ports/68123
Submitted by:   maintainer
Original commit
Thursday, 3 Jun 2004
22:41 roam search for other commits by this committer
Update ftp/curl to 7.12.0 and bump the shared library version in all
dependent ports.
Original commit
Thursday, 27 May 2004
08:27 mezz search for other commits by this committer
deskutils/logjam2 -> deskutils/logjam

GTK2 logjam (was logjam2) is now default and remove the GTK1 logjam. Also,
included some tweaks and cleans up like add checks if libraries exist and
depend on them by automatic.

PR:             ports/66620
Approved by:    adamw (mentor)
Original commit
Thursday, 18 Mar 2004
03:01 trevor search for other commits by this committer
E-mail to the maintainer bounced:

<alanp@unixpower.org>: host unixpower.org[209.51.213.81] said: 550-Verification
    failed for <trevor@FreeBSD.org> 550-unrouteable mail domain "freebsd.org"
    550 Sender verify failed
Original commit
Wednesday, 4 Feb 2004
05:21 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
Original commit
Friday, 18 Apr 2003
21:20 marcus search for other commits by this committer
Remove USE_GNOMENG.
Original commit
Friday, 21 Feb 2003
11:15 knu search for other commits by this committer
De-pkg-comment.
Original commit
Friday, 30 Aug 2002
13:21 lioux search for other commits by this committer
Deploy USE_GNOMENG infrastructure

PR:             42194
Submitted by:   Edwin Groothuis <edwin@mavetju.org>
Original commit
Tuesday, 23 Jul 2002
02:53 kevlo search for other commits by this committer
Update to version 3.0.4

PR: 40836
Submitted by: Dmitry Morozovsky <marck@rinet.ru>
Original commit
Friday, 17 Aug 2001
15:35 ijliao search for other commits by this committer
add logjam   A GTK interface to user journals on www.livejournal.com    
Original commit

Number of commits found: 57