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: sysutils/policykit/Makefile

Number of commits found: 40

Saturday, 1 May 2021
21:32 Baptiste Daroussin (bapt) search for other commits by this committer
sysutils/policykit: remove

Gnome2 component, no consumers left in the ports tree
commit hash: 802e360e5daa676437cba2a92986e50b45f425a4 commit hash: 802e360e5daa676437cba2a92986e50b45f425a4 commit hash: 802e360e5daa676437cba2a92986e50b45f425a4 commit hash: 802e360e5daa676437cba2a92986e50b45f425a4 802e360
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Friday, 8 Nov 2019
13:11 tobik search for other commits by this committer
sysutils: Add missing USES={gnome,mate,php}
Original commitRevision:517057 
Friday, 1 Apr 2016
14:25 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412349 
Sunday, 2 Aug 2015
15:03 tijl search for other commits by this committer
By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do.  On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).

Bump PORTREVISION on all ports where the build log contains -export-symbols.

audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions.  Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to.  Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.

japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything.  Just don't hide anything at all
like the textproc/scim configure script does.

multimedia/schroedinger: Apply an upstream patch.

textproc/scim-input-pad: Same as japanese/scim-honoka.

PR:		201922
Approved by:	portmgr (antoine)
Exp-run by:	antoine
Original commitRevision:393429 
Sunday, 19 Jul 2015
17:39 bapt search for other commits by this committer
Fix policykit leftovers by using @sample
Original commitRevision:392524 
Friday, 23 Jan 2015
22:50 antoine search for other commits by this committer
Switch ports depending on docbook* through a directory name to a package name,
as a directory name can't be attributed to a package
Original commitRevision:377770 
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 
Wednesday, 23 Apr 2014
13:25 tijl search for other commits by this committer
When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
Original commitRevision:351936 
Thursday, 13 Mar 2014
13:36 kwm search for other commits by this committer
Stageify, use new LIB_DEPEND syntax. use USES=gmake libtool.
Original commitRevision:348063 
Wednesday, 19 Feb 2014
14:45 mat search for other commits by this committer
Consolidate the docbook ports into -sgml and -xml variants.

Submitted by:	hrs (based on)
Sponsored by:	Absolight
Original commitRevision:345097 
Tuesday, 18 Feb 2014
14:50 mat search for other commits by this committer
Chase docbook cleanup dependencies.

Sponsored by:	Absolight
Original commitRevision:344900 
Friday, 20 Sep 2013
23:06 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
sysutils)
Original commitRevision:327772 
Monday, 2 Sep 2013
15:39 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326013 
Friday, 10 May 2013
14:39 kwm search for other commits by this committer
Try to clean up /var/lib [1]
While here update header and Optionsfy.

Reported by:	poudriere -t via bapt & miwi [1]
Original commitRevision:317815 
Wednesday, 9 Nov 2011
15:26 miwi search for other commits by this committer
- Remove WITH_FBSD10_FIX, is no longer needed
Original commit
Friday, 28 Oct 2011
18:55 miwi search for other commits by this committer
- Fix build on FreeBSD 10

Approved by:    kwm (implicit)
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, 23 Jan 2010
16:01 gabor search for other commits by this committer
- Track textproc/docbook-410 dependency after recent changes

Approved by:    portmgr (pav, erwin)
Original commit
Friday, 22 Jan 2010
22:48 marcus search for other commits by this committer
Rename polkitd to polkitd-old so as not to conflict with polkitd from
sysutils/polkit.  This legacy version of polkitd shouldn't really be
used anyway.
Original commit
Sunday, 6 Sep 2009
21:18 flz search for other commits by this committer
Add support to create users and groups from information stored in UIDs/GIDs
files. Users and groups won't be deleted at deinstall time as we're lacking
a refcount to know if any port is using them.

Also convert a few ports while I'm here.

PR:             ports/108514
Submitted by:   mm, self
Original commit
Saturday, 25 Apr 2009
20:22 marcus search for other commits by this committer
Add support for NO_INSTALL_MANPAGES.

PR:             130597
Submitted by:   Dmitry <dmitry2006@yandex.ru>
Original commit
Monday, 30 Mar 2009
00:17 marcus search for other commits by this committer
* Fix a problem where waitpid() may return EINTR which causes the various
  polkit helpers to report a failure.  This fix allows dynamic polkit
  policies to actually work (e.g. mounting fixed drives with proper
  authorization).

* Workaround a bug in our version of getline(3), and check for EOF when
  getline does not return -1.
Original commit
Sunday, 15 Feb 2009
19:31 marcus search for other commits by this committer
Fix some directory and file permissions to restore some lost PolicyKit
functionality.
Original commit
Saturday, 10 Jan 2009
05:22 marcus search for other commits by this committer
Presenting GNOME 2.24 for FreeBSD.

See http://library.gnome.org/misc/release-notes/2.24/ for the general
release notes.  On the FreeBSD front, this release introduces Fuse support
in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some
long-standing seahorse and gnome-keyring bugs.  The documentation updates
to the website are forthcoming.

This release features commits by adamw, ahze, kwm, mezz, and myself.  It would
not have been possible without are contributors and testers:

Alexander Loginov
Craig Butler [1]
Dmitry Marakasov [6]
Eric L. Chen
Joseph S. Atkinson
Kris Moore
Lapo Luchini [7]
Nikos Ntarmos
Pawel Worach
Romain Tartiere
TAOKA Fumiyoshi [3]
Yasuda Keisuke
Zyl
aZ [4]
bf [2] [5]
Florent Thoumie
Peter Wemm
pluknet

PR:             125857 [1]
                126993 [2]
                130031 [3]
                127399 [4]
                127661 [5]
                124302 [6]
                129570 [7]
                129936
                123790
Original commit
Thursday, 24 Jul 2008
13:52 marcus search for other commits by this committer
This patch should not have been removed.  It is very much required.
Original commit
01:52 marcus search for other commits by this committer
Update to 0.9.
Original commit
Friday, 4 Jul 2008
02:21 marcus search for other commits by this committer
Fix a problem with PK's strndup() implementation assuming all strings
passed to it would be NUL-terminated.  This is known to fix crashes with
polkit-gnome-authorization and clock-applet.

Tested by:      pav
Original commit
Friday, 6 Jun 2008
14:03 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
Thursday, 1 May 2008
01:01 marcus search for other commits by this committer
Remove bash RUN_DEPENDS.  Bash really isn't needed.

Reported by:    Tijl Coosemans <tijl@ulyssis.org>
Original commit
00:57 marcus search for other commits by this committer
Update to 0.8, and fix a problem where policy updates were not processed
dynamically.
Original commit
Saturday, 29 Mar 2008
16:08 marcus search for other commits by this committer
Add a default policy which allows root full control, and those in the wheel
group to authenticate for services using their password.

Discussed with: FreeBSD GNOME team
Original commit
Friday, 28 Mar 2008
18:48 marcus search for other commits by this committer
Plug a small memory leak.
Original commit
Monday, 24 Mar 2008
18:17 ahze search for other commits by this committer
- Remove depends on docbook-utils [1]
- Fix plist by adding missing ; fi
Original commit
03:50 marcus search for other commits by this committer
The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 for
FreeBSD.  The official GNOME 2.22 release notes can be found at
http://library.gnome.org/misc/release-notes/2.22/ .  On the FreeBSD front,
this release features an updated hal port with support for video4linux
devices, DRM (Direct Rendering), and better support of removable media.  Work
is also underway to tie webkit more closely into GNOME.  As part of the
GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well.
Be sure to consult UPDATING on the proper steps to upgrade all of your
GNOME ports.

This release would not have been possible without the contributions and
testing efforts of the following people:

Pawel Worach
kan
edwin
Peter Ulrich Kruppa
J. W. Ballantine
Yasuda Keisuke
Andriy Gapon
Original commit
Thursday, 4 Oct 2007
06:10 edwin search for other commits by this committer
Remove always-false/true conditions based on OSVERSION 500000
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
Saturday, 4 Nov 2006
19:13 marcus search for other commits by this committer
Mark this port IGNORE on 4.X as it does not build, and will not be
supported.

Reported by:    pointyhat via kris
Original commit
Tuesday, 31 Oct 2006
09:40 jylefort search for other commits by this committer
Start polkitd if gnome_enable is set to yes in /etc/rc.conf
Original commit
Saturday, 14 Oct 2006
08:35 marcus search for other commits by this committer
Presenting GNOME 2.16.1 for FreeBSD.  This release represents a massive
amount of work by the FreeBSD GNOME Team and our testers.

On top of the usual GNOME update, we have taken this opportunity to move
GNOME from X11BASE to LOCALBASE.  This means roughly 600 ports NOT part of
the GNOME Desktop also need to be changed.  The bulk of the move was carried
out by ahze, mezz, and pav, but it would not have been possible without
cooperation from the FreeBSD KDE team who worked with us to make sure
GNOME and KDE can still coexist happily.  We would also like to send a
shout out to kris and pointyhat for putting up with multiple test runs
until we got something that was solid.

Back to GNOME 2.16.  This release brings a huge amount of new functionality
to FreeBSD.  The standard release notes can be read at
http://www.gnome.org/start/2.16/ .  But on top of what you will read there,
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Original commit

Number of commits found: 40