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

Number of commits found: 24

Tuesday, 25 Apr 2023
15:17 Christian Weisgerber (naddy) search for other commits by this committer
audio/opus: bump consumers after update to 1.4
commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 feb1fa3
Tuesday, 29 Nov 2022
09:18 Yuri Victorovich (yuri) search for other commits by this committer
devel/kdesdk, sysutils/kdeadmin: Remove stray dollar sign ('$')

... in the end of DISTVERSION.

Approved by:	portmgr (compliance)
commit hash: d84a64030090b09adc33a8588b5775b241c88f88 commit hash: d84a64030090b09adc33a8588b5775b241c88f88 commit hash: d84a64030090b09adc33a8588b5775b241c88f88 commit hash: d84a64030090b09adc33a8588b5775b241c88f88 d84a640
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
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 Feb 2019
05:11 tcberner search for other commits by this committer
Update KDE Applications to 18.12.2

[1] https://www.kde.org/announcements/announce-applications-18.12.2.php
[2]
https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.2
Original commitRevision:492409 
Wednesday, 16 Jan 2019
11:13 tijl search for other commits by this committer
Fix Qt5 symbol version scripts to put the catch-all clause first.  When
a symbol matches multiple clauses the last one takes precedence.  If the
catch-all is last it captures everything.  In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API.  This only affects lld because GNU ld always gives the
catch-all lowest priority.

Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium.  Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3]  The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one.  If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash.  Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.

Remove the weak wrappers (make them Linux specific).  This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.

[1]
https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4
[2]
https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5
[3]
https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5

Bump all ports that depend on Qt5.

PR:		234070
Exp-run by:	antoine
Approved by:	kde (adridg)
Original commitRevision:490472 
Friday, 27 Apr 2018
21:47 tcberner search for other commits by this committer
Add the KDE metaports

* add multimedia/dragon (was missing)
* add the meta ports for the categories
* add x11/kde5 [yeah, we know, there technically is no "KDE 5"]
Original commitRevision:468499 
Monday, 9 Sep 2002
07:24 alane search for other commits by this committer
KDE2 is dead. The source is no longer available.
Original commit
Friday, 21 Jun 2002
02:48 alane search for other commits by this committer
Distfiles have been moved on kde site to Attic.

PR:             ports/39558
Submitted by:   glewis
Reviewed by:    alane
Original commit
Saturday, 30 Mar 2002
09:07 will search for other commits by this committer
Fix the KDE ports to not use objprelink, if OSVERSION >= 500029.  This is
not tested other than for syntax, but should DTRT from what I understand
of the problem.

Submitted by:   bento
Original commit
Friday, 11 Jan 2002
06:17 will search for other commits by this committer
Bring in a few changes to the KDE ports infrastructure, and some fixes.    -
Move all stuff specific to kde core ports to x11/kde2/Makefile.kde.      +
Default to compile optimized for speed, not debugging, in ports        builds,
not just packages.  We don't really get that many backtraces        or debugging
information, and there's a better way to provide these        things to people
willing to spend some time working on KDE.  It's        at (as announced
before): http://freebsd.kde.org/.    - Remove teTeX dependency for kdegraphics2
upon request, and being unable      to find any reason not to.  Apparently,
kdegraphics still compiles      libkdvi and kdvi -- I guess dvips is merely a
runtime dependency.      Therefore to enable its use one just needs to add the
teTeX package.      Bump PORTREVISION to reflect dependency change.    - Fix
koffice port by removing PYTHON_VERSION, which is unnecessary.    
Original commit
Tuesday, 8 Jan 2002
01:24 will search for other commits by this committer
If !WANT_KDE_NDEBUG and !PARALLEL_PACKAGE_BUILDING, also add   --enable-debug
and turn off stripping of binaries so we actually get all   the debugging we're
supposed to get.  :)    
Original commit
Saturday, 5 Jan 2002
02:29 will search for other commits by this committer
Conditionalize use of objprelink based on whether we're running on  
MACHINE_ARCH=i386 *and* whether NO_KDE_OBJPRELINK is defined.    
Original commit
Friday, 7 Dec 2001
15:43 petef search for other commits by this committer
Fix a problem with auto{conf,make}:  some build magic was introduced to   make
sure that the "autoconf" and "automake" binaries KDE looked for were   found and
were autoconf213 and automake14 (as there are issues with the   latest
versions), but the logic in setting $PATH was wrong.  This puts  
${WRKSRC}/auto-bin before the rest of the users $PATH.  This fixes KDE   auto*
problems if automake14 and automake-1.5 are both installed.    
Original commit
Tuesday, 4 Dec 2001
03:47 will search for other commits by this committer
Upgrade KDE to 2.2.2:    * General:           - Support for objprelink.         
 - Hack for autoconf 2.13/automake 1.4.  Note that we can't use             the
standard USE_AUTO* because they change things in work/*;             KDE has its
own way of doing that.           - Light cleanup of extra dirs in the PLISTs
provided by              my mkplistpkg[1] script.           - Speedups of both
compile and runtime through the usage of             --disable-debug and
--enable-final.  The latter did not work             with the kdemultimedia
package, unfortunately.           - Patch updates.    * audio/kdemultimedia2:   
       - Patch to fix KSCD on FreeBSD[2].  It works very well now.    *
deskutils/kdepim:           - Enable kpilot[3].  Pull in the latest pilot-link
stuff.    * devel/kdesdk,    * devel/kdevelop:           - No specific changes. 
  * devel/qt-designer:           - Make this port depend almost entirely on qt23
to make it more             maintainable, so I don't have to keep hacking the
patches to             get them to apply.    * editors/koffice,    *
games/kdegames,    * graphics/kdegraphics:           - No specific changes.    *
misc/kdeaddons:           - SDL is required now.  Cull SDL PLIST_SUB and such.  
        - Fix breakage from hardcoding "sdl-config".    * misc/kdeutils2:       
   - Fix problem with klaptopdaemon[4] where it didn't properly            
display the battery time.  This patch is untested, but applied.    *
net/kdenetwork2:           - Fix DCC for KSIRC[5].           - Remove ktalkd
from the build.  It requires some weird thing             in the configure
script that I don't have time to look at.    * sysutils/kdeadmin:           - No
specific changes.    * textproc/kdoc:           - Remove bogus requirement that
kdoc requires Perl 5.6.0; it sure             seems to operate fine with >=
5.005.  But I'll let time tell.    * www/quanta:           - No specific changes
(--disable-debug support only).    * x11/kde2:           - No specific changes. 
  * x11/kdebase2:           - Fix ksysguard compile by merging the files from
the HEAD branch             of KDE CVS that were missing at release time for
FreeBSD[6].  :\    * x11/kdelibs2:           - Recognize CUPS' spinoff[7].      
    - Add libxslt dependency since it was removed from kdelibs.           - Fix
libxml compile problems[8] (accomplished by upgrading).           - Remove
libkformula from port Makefile; this library has been             spun off into
koffice.           - Fix mode problems with DCOP[9].  This allows you to save
files             properly.  It also seems to be a FreeBSD specific problem.    
      - Fix bashisms in kdeprint/imagetops script[10].    * x11-clocks/kdetoys2:
          - No specific changes.    * x11-toolkits/qt23:           - Do NOT
upgrade to QT 2.3.2[11].           - Allow devel/qt-designer to depend on this
port entirely for the             patches by adding a perlre to accomplish this.
   * x11-wm/kdeartwork:           - No specific changes.    
Original commit
Saturday, 27 Oct 2001
09:50 demon search for other commits by this committer
Upgrade to 2.2.1.    
Original commit
Monday, 10 Sep 2001
21:22 demon search for other commits by this committer
Set DIST_SUBDIR=KDE    
Original commit
Saturday, 1 Sep 2001
09:46 demon search for other commits by this committer
MAINTAINER -> kde@FreeBSD.org    
Original commit
Monday, 20 Aug 2001
11:33 demon search for other commits by this committer
Finish upgrading to version 2.2.    
Original commit
Wednesday, 15 Aug 2001
17:25 will search for other commits by this committer
*sigh*  They changed the path to the tarballs again.  This was verified   on my
local mirror at ftp://csociety-ftp.ecn.purdue.edu/pub/kde/.  :\    
Original commit
13:43 will search for other commits by this committer
Update to KDE 2.2:    
Original commit
Tuesday, 3 Apr 2001
09:14 will search for other commits by this committer
Overhaul QT/KDE support:   - bsd.port.mk update to use bsd.kde.mk for
USE_{QT,KDE}*   - Cleanup corresponding ports for bsd.kde.mk update.   - Fix
bsd.kde.mk: use correct kdelibs dependency, put qt at the bottom,     introduce
QT_NONSTANDARD variable for nonstandard configure setup.   - Update KDE2 to
2.1.1.  Two patches included in x11/kdelibs2 to fix the     proxy authentication
that was broken for 2.1.1.  Remove old patches.   - Potentially fix kdelibs
build for alpha.   - Fix qt-designer 2.3.0 build.   - Ruby stuff left alone
since it looks like black magic to me.  Should     still work w/ compat shims
for older USE_QT[,2] style.  Some others     were also left alone for the same
reason.    
Original commit
Monday, 5 Mar 2001
12:10 demon search for other commits by this committer
New port: kdeadmin.    
Original commit

Number of commits found: 24