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: chinese/qterm/Makefile

Number of commits found: 67

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 
Tuesday, 1 Jan 2019
12:20 tcberner search for other commits by this committer
chinese/qterm: remove KDE option after r488807

MFH:		2019Q1
Original commitRevision:488868 
Tuesday, 25 Dec 2018
20:25 tcberner search for other commits by this committer
Change cmake default behaviour to outsource.

Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
Original commitRevision:488341 
Sunday, 2 Dec 2018
15:41 rene search for other commits by this committer
Mark QT4 ports/functionality for removal on 2019-03-15

While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.

Submitted by:	tcberner
Reviewed by:	adridg, jhale, rene, tcberner
Approved by:	portmgr (implicit, flavor hook)
Differential Revision:	https://reviews.freebsd.org/D17741
Original commitRevision:486467 
Sunday, 4 Nov 2018
11:50 antoine search for other commits by this committer
Mark BROKEN: fails to build

src/uaocodec.cpp:2515:61: error: constant expression evaluates to -128 which
cannot be narrowed to type 'uchar' (aka 'unsigned char') [-Wc++11-narrowing]
   
{'\x00','\x7d'},{'\x00','\x7e'},{'\x00','\x7f'},{'\x00','\x80'},{'\x00','\x00'},
                                                            ^~~~~~

Reported by:	pkg-fallout
Original commitRevision:483993 
Thursday, 28 Jun 2018
17:39 tcberner search for other commits by this committer
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk

From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	-https://reviews.freebsd.org/D15540
Original commitRevision:473503 
Thursday, 21 Jun 2018
16:52 tcberner search for other commits by this committer
multimedia/*phonon*: update and flavorize with @qt4/@qt5

Approved by:	portmgr (mat)
Differential Revision:	https://reviews.freebsd.org/D14632
Original commitRevision:472983 
Wednesday, 15 Mar 2017
14:45 mat search for other commits by this committer
Remove all _USE=openssl occurrences.

Sponsored by:	Absolight
Original commitRevision:436248 
Wednesday, 24 Aug 2016
08:20 tcberner search for other commits by this committer
Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks and
Plasma5 ports

At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When
working on the ports for KDE Frameworks and Plasma5 it seemed to be more
reasonable to create a new kde.mk instead of adding an bsd.kde5.mk.

The kde.mk in this review is a stripped down version of the one we are using in
the KDE Test repositories plasma5 branch [1] to only contain the parts relevant
to the current KDE4 ports in the portstree [2].

Changes to the KDE Ports needed by this:

Replace USE_KDE4 by USE_KDE [3]
Add USES=kde:4 [4]
[1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk
[2] The version in the plasma5 branch also handles frameworks/plasma5 and
    handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt
    Ports -- I chose to leave this out for now, as the diff is already large
    enough.
[3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we
    want is already specified as argument to kde:<arg>
[4] For KDE Frameworks and Plasma5 ports this would be kde:5

PR:             210667
Approved by:    portmgr, mat (mentor), rakuco (mentor)
Reviewed by:    mat, rakuco
Differential Revision:   https://reviews.freebsd.org/D6961
Original commitRevision:420774 
Friday, 1 Apr 2016
13:29 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412344 
Wednesday, 19 Aug 2015
13:30 mat search for other commits by this committer
Convert ports to use the options helpers in categories [abc]*, and minor fixes.

Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3412?
Original commitRevision:394778 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Sunday, 1 Jun 2014
16:43 ohauer search for other commits by this committer
- USE_(BZIP2|XZ) -> USES=tar:(bzip2|xz)
Original commitRevision:356156 
Tuesday, 18 Feb 2014
14:31 makc search for other commits by this committer
- Bump PORTREVISION after KDE4_PREFIX change
Original commitRevision:344898 
Wednesday, 8 Jan 2014
15:47 vanilla search for other commits by this committer
Support STAGEDIR.

Approved by:	portmgr (blanket infrastructure)
Original commitRevision:339152 
Friday, 20 Sep 2013
16:01 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
chinese)
Original commitRevision:327713 
Sunday, 15 Sep 2013
08:15 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:327334 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Tuesday, 16 Apr 2013
18:23 madpilot search for other commits by this committer
- "Update" to 2.5.12. This is the supported stable branch upstream
- Bump PORTEPOCH
- Trim Makefile header
- Add CONFLICTS_INSTALL [1]
- Make rc scripts more rclint compliant
- Update WWW line in pkg-descr

PR:		ports/175063
Submitted by:	Jason Bacon <jwbacon@tds.net> (maintainer)
Approved by:	danfe (maintainer of games/qstat, via email) [1]
Approved by:	Kai Wang <kaiwang27@gmail.com> (maintainer of chinese/qterm) [1]
Feature safe:	yes
Original commitRevision:315876 
Friday, 22 Mar 2013
20:06 makc search for other commits by this committer
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
Original commitRevision:314960 
Tuesday, 19 Mar 2013
14:01 makc search for other commits by this committer
- Update to 0.5.12
- Convert to new option framework
- Pass maintainership to submitter

PR:		ports/176598
Submitted by:	Kai Wang <kaiwang27@gmail.com>
Original commitRevision:314647 
Sunday, 30 Dec 2012
12:03 beat search for other commits by this committer
- Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8
  was released in 2007 and KDE 3.5.10 in 2008 and both are no longer
  maintained upstream nor in our tree.
- Set EXPIRATION_DATE to 2013-07-01

Discussed with:	bapt, tabthorpe
Original commitRevision:309662 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
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
Thursday, 24 Feb 2011
23:25 miwi search for other commits by this committer
- Move over to python2.5 or higher
- While here kick md5
Original commit
Sunday, 9 Jan 2011
11:13 sunpoet search for other commits by this committer
- Remove unnecessary PKGNAMEPREFIX declaration
- Remove obsolete MD5 checksum while I'm here

PR:             ports/153634
Submitted by:   sunpoet (myself)
Approved by:    pav (with portmgr hat)
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
Saturday, 13 Feb 2010
08:55 miwi search for other commits by this committer
- Update MASTER_SITES

PR:             143391
Submitted by:   Sevan Janiyan <venture37@geeklan.co.uk>
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Sunday, 13 Dec 2009
17:00 miwi search for other commits by this committer
- Get rip python 2.3+

Note:
Python 2.3 is't longer supported and have a lot of security issues.
Convert 2.3+ to yes/or 2.4/5+

With hat:       portmgr
Original commit
Saturday, 22 Aug 2009
00:15 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with B,C
Original commit
Wednesday, 19 Aug 2009
18:50 erwin search for other commits by this committer
Reset maintainer
<yuanjue@yuanjue.net>: connect to yuanjue.net[208.73.210.27]:25: Connection
    refused
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
16:28 flz search for other commits by this committer
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
Original commit
Thursday, 21 Aug 2008
06:18 rafan search for other commits by this committer
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:             126524 (obsoletes 52917)
Submitted by:   rafan
Tested on:      two pointyhat 7-amd64 exp runs (by pav)
Approved by:    portmgr (pav)
Original commit
Friday, 6 Jun 2008
13:14 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
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
        Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
        ehaupt, nox, itetcu, flz, pav

PR:             116263
Tested on:      pointyhat
Approved by:    portmgr (pav)
Original commit
Thursday, 6 Mar 2008
08:38 lwhsu search for other commits by this committer
- Update to 0.4.1

PR:             ports/121397
Submitted by:   Denise H. G. <darcsis AT gmail.com>
Approved by:    "YUAN Jue" <yuanjue AT yuanjue.net> (maintainer)
Original commit
Friday, 14 Dec 2007
22:56 pav search for other commits by this committer
- Add missed dependency on perl
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
Thursday, 10 Aug 2006
01:50 clsung search for other commits by this committer
- Does not build on 4.x

Approved by:    maintainer (Yuan, Jue) (implicit)
Original commit
Friday, 4 Aug 2006
09:08 clsung search for other commits by this committer
1. make qterm.cfg & address.cfg writable by default since native linux version
has this feature.
2. add one more address to MASTER_SITES
3. add PKGNAMEPREFIX

PR:             ports/101345
Submitted by:   maintainer (Yuan Jue)
Original commit
Tuesday, 1 Aug 2006
12:19 clsung search for other commits by this committer
- upgrade from 0.4.0-pre2 to 0.4.0-release
- pass maintainership

PR:             ports/100918
Submitted by:   maintainer (Yuan Jue)
Approved by:    maintainer (gavin_AT_FreeBSDChina dot org)
Original commit
Tuesday, 25 Jul 2006
14:52 clsung search for other commits by this committer
- fix compiling problem
  - libtool problem
  - executable file problem

PR:             ports/97177
Submitted by:   Yuan, Jue <yuanjue_AT_yuanjue dot net>
Approved by:    maintainer timeout
Original commit
Wednesday, 3 May 2006
23:38 edwin search for other commits by this committer
remove USE_REINPLACE for all ports with categories starting with C
Original commit
Wednesday, 15 Dec 2004
05:46 clive search for other commits by this committer
Update to 0.4.0.p2, which also includes changes below:
o Use a more flexible form of USE_PYTHON
o Build on non i386 platform is believed to be fixed.

PR:             ports/75052
Submitted by:   MAINTAINER
Original commit
Wednesday, 8 Dec 2004
20:54 lesi search for other commits by this committer
Fix build without imake.

Pointed out by: dosirak via kris, while testing X.Org upgrade
Approved by:    maintainer
Original commit
Thursday, 18 Nov 2004
22:08 kris search for other commits by this committer
BROKEN on 6.x and !i386: Does not compile
Original commit
Monday, 1 Nov 2004
08:12 clive search for other commits by this committer
Update to 0.4.0pre1.

PR:             ports/73305
Submitted by:   MAINTAINER
Original commit
Friday, 20 Aug 2004
22:18 pav search for other commits by this committer
- Update to 0.3.7

PR:             ports/70445
Submitted by:   Gavin Mu <gavin@FreeBSDChina.org> (maintainer)
Original commit
Monday, 26 Jul 2004
11:16 vs search for other commits by this committer
Unbreak on 4.X, use QString::null instead of ""

PR:             ports/69519
Submitted by:   Cheng-Lung Sung
Approved by:    maintainer
Original commit
Friday, 2 Jul 2004
08:24 kris search for other commits by this committer
BROKEN on 4.x: Does not compile
Original commit
Tuesday, 25 May 2004
07:32 krion search for other commits by this committer
- Update to version 0.3.6

PR:             ports/67160
Submitted by:   maintainer
Original commit
Tuesday, 16 Mar 2004
14:56 krion search for other commits by this committer
- Update to version 0.3.5
- Fix WWW:
- Assign maintainership to submitter

PR:             ports/64278
Submitted by:   Gavin Mu <gavin@tju.edu.cn>
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, 21 Nov 2003
03:09 linimon search for other commits by this committer
statue@freebsd.sinica.edu.tw has asked for all the maintained
ports to be reset to ports@FreeBSD.org.  We're sorry to see you
go and want to thank you for your help in the past.

PR:             ports/59515
Submitted by:   statue@freebsd.sinica.edu.tw
Original commit
Sunday, 9 Nov 2003
08:46 leeym search for other commits by this committer
update to 0.3.2

PR:             56685
Submitted by:   Statue <statue@freebsd.sinica.edu.tw>
Original commit
Tuesday, 29 Jul 2003
05:48 daichi search for other commits by this committer
update chinese/qterm: update MASTER_SITES

PR:             55001
Submitted by:   Statue <statue@freebsd.sinica.edu.tw> (maintainer)
Original commit
Monday, 14 Apr 2003
16:55 arved search for other commits by this committer
add CONFIGURE_ARGS+="--enable-mt"
remove file: files/patch-qterm::qtermtelnet.h

PR:             50902
Submitted by:   maintainer
Original commit
Saturday, 12 Apr 2003
20:37 arved search for other commits by this committer
Update to 0.2.0

PR:             50860
Submitted by:   maintainer
Original commit
Friday, 21 Feb 2003
11:06 knu search for other commits by this committer
De-pkg-comment.
Original commit
Thursday, 16 Jan 2003
09:21 arved search for other commits by this committer
Update to 0.1.7
USE_QT_VER=3

PR:             47123
Submitted by:   Statue <statue@freebsd.sinica.edu.tw>
Original commit
Friday, 19 Apr 2002
12:45 ijliao search for other commits by this committer
upgrade to 0.1.5

PR:             37217
Submitted by:   maintainer
Original commit
Monday, 15 Apr 2002
10:47 ijliao search for other commits by this committer
upgrade to 0.1.4

PR:             37093
Submitted by:   maintainer
Original commit
Sunday, 24 Feb 2002
06:18 clive search for other commits by this committer
o mv patch-aa to patch-Makefile   o add a new patch file: patch-qterm.cpp   o
change master site    
Original commit
Friday, 2 Nov 2001
04:59 clive search for other commits by this committer
Upgrade to 0.1.3    
Original commit
Saturday, 27 Oct 2001
07:02 clive search for other commits by this committer
New port: QTerm is a BBS client in Unix. Its original goal is to make it   a
practical tool like CTerm and STerm in Windows.    
Original commit

Number of commits found: 67