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: x11-toolkits/open-motif-devel/Makefile

Number of commits found: 21

Friday, 1 Mar 2024
21:11 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif-devel: move man pages
commit hash: 6d9e22d4626cdfae58e5a9d452f22c2eef759576 commit hash: 6d9e22d4626cdfae58e5a9d452f22c2eef759576 commit hash: 6d9e22d4626cdfae58e5a9d452f22c2eef759576 commit hash: 6d9e22d4626cdfae58e5a9d452f22c2eef759576 6d9e22d
Tuesday, 5 Dec 2023
22:49 Cy Schubert (cy) search for other commits by this committer
Revert "x11-toolkits/open-motif*: EditRes functionality is unreliable on 64 bit"

A patch to x11-toolkits/libXmu, still in review, is required to,

a) build this patch,
b) work.

This reverts commit feec232fadd3d30c62282b6dd218536b7322e761.
commit hash: 5cd4319f34f19678e6f8f115362d820b550d4c5b commit hash: 5cd4319f34f19678e6f8f115362d820b550d4c5b commit hash: 5cd4319f34f19678e6f8f115362d820b550d4c5b commit hash: 5cd4319f34f19678e6f8f115362d820b550d4c5b 5cd4319
22:39 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: EditRes functionality is unreliable on 64 bit

Like x11-toolkits/libXmu, the same problem exists in Motif and
editres(1) will not pop up the resource box,
displaying, "this widget no longer exists in the client."

Additional discussion and patch posted near the end of the
discussion at,
	https://gitlab.freedesktop.org/xorg/lib/libxmu/-/issues/1

MFH:		2023Q4
commit hash: feec232fadd3d30c62282b6dd218536b7322e761 commit hash: feec232fadd3d30c62282b6dd218536b7322e761 commit hash: feec232fadd3d30c62282b6dd218536b7322e761 commit hash: feec232fadd3d30c62282b6dd218536b7322e761 feec232
00:02 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: Disable XmPIXMAP mode for drag-and-drop

In XmPIXMAP mode, Motif will draw to the root window with
IncludeInferious without being under a GrabServer.

This results in a variety of graphical glitches. For example, when a
compositing window manager updates the screen it will erase the drag
icon. This continues until the icon leaves the origin window, when Motif
does a GrabServer. The GrabServer avoids the graphical glitches, but it
also freezes the rest of the desktop (which is impolite).

Given that all current X servers support SHAPE, and given that most
users are running a compositing window manager, XmDRAG_WINDOW is always
a better choice. Therefore, disable XmPIXMAP entirely.

Obtained from:	https://sourceforge.net/p/motif/code/merge-requests/1/
commit hash: 673bb072f65941cabebffbbdc73ebd5c7ade48cc commit hash: 673bb072f65941cabebffbbdc73ebd5c7ade48cc commit hash: 673bb072f65941cabebffbbdc73ebd5c7ade48cc commit hash: 673bb072f65941cabebffbbdc73ebd5c7ade48cc 673bb07
00:02 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: Don't share cached Xft renditions across display
connections

Xft rendition caching added with the fix #1414 won't check whether the
matching rendition was allocated trough a different display connection.
This causes a forked process that creates Motif widgets on a separate
display connection to fail with RenderBadGlyphSet X error as soon as
the parent process closes its display, thus invalidating the associated
Xft font resource.

Obtained from:	https://sourceforge.net/p/motif/code/merge-requests/4/
commit hash: ebd43103a86630e2f6a55b73b538e039aa066dbf commit hash: ebd43103a86630e2f6a55b73b538e039aa066dbf commit hash: ebd43103a86630e2f6a55b73b538e039aa066dbf commit hash: ebd43103a86630e2f6a55b73b538e039aa066dbf ebd4310
00:02 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: revise AM_FUNC_VOID_SPRINTF

The check for whether sprintf() returns void would fail to detect
sprintf() returning int under recent Clang.
Presumably the check meant to see if an error like
"passing 'void' to parameter of incompatible type 'int'"
is generated, but Clang would always generate other errors
having to do with calling sprintf() with too few arguments
and attempting to redeclare sprintf() when it is a builtin macro.
And even if the test program compiles, such as with GCC,
it crashes during the sprintf(".") call.

Revise the test program to not redeclare sprintf(), to call sprintf()
with valid arguments, and to not implicitly declare exit() due to
stdlib.h not being included (which Apple Xcode Clang 12 and later
consider an error rather than a warning).
If sprintf() returns void, then a compiler error similar to
"initializing 'int' with an expression of incompatible type 'void'"
or "void value not ignored as it ought to be" should be generated.
Otherwise if sprintf() returns int, then the test program should
compile and exit with code 0, and the check should properly report
that sprintf() does not return void.

Obtained from:	https://sourceforge.net/p/motif/code/merge-requests/3/
commit hash: c1d2da5c0be7b60cf8d4b39bb615bfab7399abce commit hash: c1d2da5c0be7b60cf8d4b39bb615bfab7399abce commit hash: c1d2da5c0be7b60cf8d4b39bb615bfab7399abce commit hash: c1d2da5c0be7b60cf8d4b39bb615bfab7399abce c1d2da5
00:02 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: MenuShell: computing position uses RC_Type() expecting
RowColumn

To compute the position of a menu to display, in some cases the
position is computed invoking RC_Type() that expects a RowColumn
widget. One case was not verifying this hence leading to coredump.

Obtained from:	https://sourceforge.net/p/motif/code/merge-requests/5/
commit hash: 853f1cb7c8c329402edb90430d709d9dda121efd commit hash: 853f1cb7c8c329402edb90430d709d9dda121efd commit hash: 853f1cb7c8c329402edb90430d709d9dda121efd commit hash: 853f1cb7c8c329402edb90430d709d9dda121efd 853f1cb
Tuesday, 17 Oct 2023
03:51 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: Depend on x11-toolkits/libXmu

Motif already indirectly depends on x11-toolkits/libXmu. Document this
fact as it is needed for Editres support.

MFH:	2023Q4
commit hash: 7378567f693e917580623d46db3c00c6844c5c99 commit hash: 7378567f693e917580623d46db3c00c6844c5c99 commit hash: 7378567f693e917580623d46db3c00c6844c5c99 commit hash: 7378567f693e917580623d46db3c00c6844c5c99 7378567
Friday, 28 Jul 2023
17:13 Daniel Engberg (diizzy) search for other commits by this committer
*/*: Bump jpeg-turbo users treewide

New major version 3.0.0
commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f 664a2fa
Monday, 17 Apr 2023
21:28 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif-devel: Update to the latest motif-code commit

Update to the latest motif-code commit proxied through my GH account.
commit hash: 7668afd804ce6593409f55f1084349e6de63a7e3 commit hash: 7668afd804ce6593409f55f1084349e6de63a7e3 commit hash: 7668afd804ce6593409f55f1084349e6de63a7e3 commit hash: 7668afd804ce6593409f55f1084349e6de63a7e3 7668afd
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
Tuesday, 16 Aug 2022
03:33 Cy Schubert (cy) search for other commits by this committer
x11-toolkits/open-motif*: Introduce open-motif-devel

Copy x11-toolkits/open-motif to x11-toolkits/open-motif-devel in order to
track development. Then update open-motif-devel to the latest motif-code
commit proxied through my GH account.

Register the conflict with x11-toolkits/open-motif.

Motif (formerly Open Motif) is developed by ics.com. The repository is
on Sourceforge. I proxy it through my github account to employ the GH
plumbing in ports.
commit hash: 0395dfd3904676e2e652bfd7850c4a48ec5cebba commit hash: 0395dfd3904676e2e652bfd7850c4a48ec5cebba commit hash: 0395dfd3904676e2e652bfd7850c4a48ec5cebba commit hash: 0395dfd3904676e2e652bfd7850c4a48ec5cebba 0395dfd
Tuesday, 28 May 2002
01:46 obrien search for other commits by this committer
Remove this port -- people totally misunderstand what it is.
Original commit
Saturday, 11 May 2002
08:44 kris search for other commits by this committer
The previous Makefile revision contained a partial upgrade to a newer
version of open-motif, but the distfile has apparently moved and is
no longer fetchable.  Revert to the old version.

Pointy hat to:  motminh
Original commit
Wednesday, 8 May 2002
21:03 obrien search for other commits by this committer
To ports@freebsd.org.
Original commit
Monday, 27 Aug 2001
10:46 olgeni search for other commits by this committer
Fix typo in NO_BUILD message.    
Original commit
Monday, 5 Feb 2001
16:49 olgeni search for other commits by this committer
Batch of style fixes for x11-toolkits.    
Original commit
Tuesday, 18 Jul 2000
10:34 obrien search for other commits by this committer
Update to the 4th build of the Metrolink Open Motif 2.1.30 build.    
Original commit
Wednesday, 7 Jun 2000
08:08 asami search for other commits by this committer
Define NO_MTREE since these ports install with PREFIX=/ (the   binary packages
already have the "/usr/X11R6" part).    
Original commit
Saturday, 3 Jun 2000
19:38 obrien search for other commits by this committer
Forgot to fix the maintainer entry.    
Original commit
19:36 obrien search for other commits by this committer
Open Motif 2.1.30 for the i386.    
Original commit

Number of commits found: 21