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

Number of commits found: 100

Saturday, 27 Jan 2024
23:07 Muhammad Moinur Rahman (bofh) search for other commits by this committer
x11-toolkits/open-motif: Moved man to share/man

Approved by:    portmgr (blanket)
commit hash: d5722a1669132bb44777564b82b7c3dca21bc7a3 commit hash: d5722a1669132bb44777564b82b7c3dca21bc7a3 commit hash: d5722a1669132bb44777564b82b7c3dca21bc7a3 commit hash: d5722a1669132bb44777564b82b7c3dca21bc7a3 d5722a1
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
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
Friday, 29 Oct 2021
09:50 Stefan Eßer (se) search for other commits by this committer
*/*: Remove redundant '-[0-9]*' from CONFLICTS

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a 819f25b
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
Wednesday, 16 Dec 2020
17:52 cy search for other commits by this committer
Update WWW.
Original commitRevision:558233 
Monday, 30 Sep 2019
04:35 cy search for other commits by this committer
Prepare for the deprecation of libXp, which has been deorbited by
our upstream: remove the libXp dependency.

Reported by:	zeising
Original commitRevision:513314 
Sunday, 29 Sep 2019
04:46 cy search for other commits by this committer
Using USE_XORG alone is deprecated, please use USES=xorg
Original commitRevision:513192 
Wednesday, 6 Dec 2017
15:26 cy search for other commits by this committer
Update 2.3.7 --> 2.3.8
Original commitRevision:455654 
15:19 cy search for other commits by this committer
Adjust MASTER_SITES to replace a hardcoded version number with
PORTVERSION.
Original commitRevision:455652 
Friday, 1 Dec 2017
07:19 antoine search for other commits by this committer
Cleanup LIB_DEPENDS on libpng
Original commitRevision:455251 
Tuesday, 28 Mar 2017
05:30 cy search for other commits by this committer
Update 2.3.6 --> 2.3.7
Original commitRevision:437094 
Wednesday, 18 Jan 2017
13:20 tijl search for other commits by this committer
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:431796 
Saturday, 9 Jul 2016
04:58 cy search for other commits by this committer
Correct the graphics/png dependency.
Original commitRevision:418262 
Saturday, 11 Jun 2016
05:33 cy search for other commits by this committer
Update 2.3.5 --> 2.3.6
Original commitRevision:416702 
Wednesday, 25 May 2016
15:43 mat search for other commits by this committer
Remove useless WRKSRC definitions.

While there, correct DEV_WARNINGS when they occur.

Sponsored by:	Absolight
Original commitRevision:415839 
Friday, 1 Apr 2016
14:33 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412351 
Thursday, 17 Mar 2016
19:42 cy search for other commits by this committer
Update 2.3.4 --> 2.3.5.

Take maintainership of this port.

PR:		2208077
Submitted by:	cy
Approved by:	Maintainer (Mikhail Tsatsenko <m.tsatsenko@gmail.com>)
Original commitRevision:411302 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
19:04 antoine search for other commits by this committer
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
Original commitRevision:375594 
Thursday, 18 Dec 2014
12:06 bapt search for other commits by this committer
Convert to USES=autoreconf
Strip binaries
Remove useless inclusion of bsd.port.options.mk
Original commitRevision:374899 
Tuesday, 29 Jul 2014
19:11 adamw search for other commits by this committer
Convert a bunch of EXTRACT_SUFX=... into USES=tar:...

Approved by:	portmgr (not really, but touches unstaged ports)
Original commitRevision:363374 
Wednesday, 23 Jul 2014
10:28 tijl search for other commits by this committer
Remove two libtool fixes from Mk/Uses/libtool.mk.  They don't always work
when an older version of a package is installed.  This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries.  For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries.  Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.

With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.

This partially reverts r358784.

PR:		191611
Approved by:	portmgr (bapt)
Original commitRevision:362656 
Sunday, 22 Jun 2014
10:44 tijl search for other commits by this committer
Add 4 new sed commands to USES=libtool.  The first two apply some of the
changes that Debian made to their libtool.  The first command applies to
libtool versions 1.4 and up.  The second command is somewhat more elaborate
but essentially it uses the sed hold space to move an "elif...fi" block
down.  It applies to 2.x.  Together these reduce overlinking to unpatched
.la files (from ports that don't have USES=libtool yet but also .la files
in the work directory).

The third and fourth command fix relinking.  During staging libtool may
relink libA when it links to another library in the work directory libB.
The reason is that libA created during build phase has its runpath set to
the location of libB in the work directory.  This allows running an
executable that links to libA from within the work directory.  The relink
removes this extra runpath.

When libtool relinks libA it replaces "libB.la" on the linker command line
with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in
the stage directory but this -L flag isn't necessarily the first so another
libB may be linked instead.  The two sed commands make relink the same as a
normal link.  This means libtool will relink with libraries from the work
directory using a path similar to "../srcB/.libs/libB.so" without -L flags.
This applies to libtool 1.4 and up.  Earlier versions don't seem to relink
libraries.
(This fixes ports like devel/apr1 so they link with freshly built libraries
instead of installed libraries.)

Fix all ports with missing libraries.

Additionally:
archivers/rpm4: USES=patchfix.
databases/gdbm: INSTALL_TARGET=install-strip.
devel/gnome-vfs: remove patch that doesn't change anything.
devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS.
devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD.
multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386
   instead of disabling optimisations.
net/libnetdude: disable static plugins.

PR:		190941
Exp-run:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:358784 
Monday, 28 Apr 2014
18:20 tijl search for other commits by this committer
- Convert to USES=libtool.
- Replace autogen.sh in pre-configure with normal USE_AUTOTOOLS.  The
  script also ran ./configure so configure ran twice.
- Remove --with-pic from CONFIGURE_ARGS.  Not needed.
Original commitRevision:352538 
Wednesday, 19 Feb 2014
22:13 antoine search for other commits by this committer
Remove more cruft (patching Makefile.in when automake is used)
Original commitRevision:345159 
21:40 antoine search for other commits by this committer
- Stage support
- Remove non working cruft
Original commitRevision:345153 
Friday, 20 Sep 2013
23:57 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
x11-toolkits)
Original commitRevision:327785 
Wednesday, 4 Sep 2013
18:06 madpilot search for other commits by this committer
- Make ports use the libc provided iconv implementation on 10-CURRENT
  after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
Original commitRevision:326307 
Monday, 2 Sep 2013
15:26 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326011 
Friday, 30 Aug 2013
09:52 bsam search for other commits by this committer
Fix build at 10.x after recent changes at /usr/bin/ld. Error log:
----
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv'
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_close'
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_open'
-----

PR:		ports/181579
Submitted by:	bsam (me)
Approved by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
Original commitRevision:325668 
Wednesday, 10 Jul 2013
07:00 bapt search for other commits by this committer
Convert from USE_MOTIF to USES=motif
While here:
- Trim headers
- Convert USE_GMAKE to USES=gmake
- Remove indefinite article from comment
Original commitRevision:322622 
Saturday, 27 Apr 2013
22:09 bapt search for other commits by this committer
Convert the last USE_ICONV to USES=iconv
Original commitRevision:316695 
Monday, 3 Dec 2012
18:25 amdmi3 search for other commits by this committer
- Fix build with nondefault LOCALBASE

PR:		174019
Submitted by:	myself
Approved by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
Feature safe:	yes
Original commitRevision:308164 
Tuesday, 6 Nov 2012
23:35 cy search for other commits by this committer
Remove redundant conflict.

Feature safe:	yes
Original commitRevision:307111 
23:30 cy search for other commits by this committer
Temporarily make this port fetchable until the rename happens.

Feature safe:	yes
Original commitRevision:307109 
22:50 cy search for other commits by this committer
r307088 broke too much. Rename motif back to open-motif, keeping the 2.3.3 to
2.3.4 update and the LGPL 2.1 bit.

Feature safe:	yes
Original commitRevision:307104 
Thursday, 13 Sep 2012
08:05 rm search for other commits by this committer
- fix detection of X11/extensions/XPrint.h
- bump PORTREVISION

PR:		170626
Submitted by:	Mikhail Tsatsenko <m.tsatsenko at gmail dot com> (maintainer)
Reported by:	Marcin Cieslak <saper at saper dot info>
Original commitRevision:304183 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Wednesday, 26 Oct 2011
18:53 pawel search for other commits by this committer
Fix -fno-tree-ter configure check

PR:             ports/161970
Submitted by:   Nali Toja <nalitoja@gmail.com>
Approved by:    maintainer
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, 10 Sep 2011
05:05 amdmi3 search for other commits by this committer
- Respect LOCALBASE

PR:             160550
Submitted by:   myself
Approved by:    Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
Original commit
Tuesday, 21 Jun 2011
14:50 makc search for other commits by this committer
Add 'USE_CSTD=  gnu89' to fix build with clang

Submitted by:   rdivacky via mail
Approved by:    Mikhail Tsatsenko (maintainer)
Original commit
Monday, 2 May 2011
12:40 makc search for other commits by this committer
Update open-motif to 2.3.3
Remove needles patches (integrated upstream)
Pass maintainership to submitter

PR:             ports/154044
Submitted by:   Mikhail Tsatsenko <m.tsatsenko at gmail.com>
Exp-runs by:    pav
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Friday, 12 Nov 2010
22:50 linimon search for other commits by this committer
steve's commit bit has been taken for safekeeping, so return these ports
to the pool.

Hat:            portmgr
Original commit
Sunday, 2 Aug 2009
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Friday, 12 Jun 2009
03:47 steve search for other commits by this committer
Set MAKE_JOBS_UNSAFE for this port.

PR:             135490
Submitted by:   pgollucci
Original commit
Friday, 30 Jan 2009
20:05 pav search for other commits by this committer
- Update download location

Reported by:    -fetch-original pointyhat run
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
Wednesday, 27 Aug 2008
22:14 steve search for other commits by this committer
Keep ports depending on the Motif libraries from crashing on 7.x.

PR:             112999, 117626
Submitted by:   sgk@troutmask.apl.washington.edu
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
Tuesday, 14 Aug 2007
20:13 steve search for other commits by this committer
Remove USE_X_PREFIX and USE_XORG to the Xaw dependency as well.

PR:             115512
Submitted by:   mm
Original commit
20:07 steve search for other commits by this committer
This port no longer RUN_DEPENDS on imake.

PR:             111103
Submitted by:   christopher<chrismcc+freebsd@pricegrabber.com>
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, 1 Feb 2007
02:42 kris search for other commits by this committer
Use libtool port instead of included version to avoid objformat a.out botch
Original commit
Monday, 8 May 2006
14:49 steve search for other commits by this committer
Fix MASTER_SITES and remove USE_REINPLACE.

PR:             96914
Submitted by:   Joerg Pulz <Joerg.Pulz@frm2.tum.de>
Original commit
Wednesday, 1 Jun 2005
16:02 pav search for other commits by this committer
- Don't install demos by default, they are not generally interesting and
  it cuts 400 kB off the package. They can be build on demand
- Fix plist for without manuals option
- Portlint

PR:             ports/70503, ports/80012
Submitted by:   Jake Hamby <jhamby@anobject.com>,
                Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Approved by:    maintainer timeout (9 months, 6 weeks respectively)
Original commit
Thursday, 10 Mar 2005
16:52 phantom search for other commits by this committer
Add -fPIC while building at sparc64 as well
Original commit
16:28 phantom search for other commits by this committer
Merge open-motif-jdk's functionality to open-motif port itself
Original commit
Monday, 31 Jan 2005
16:27 phantom search for other commits by this committer
Add configuration variable WITHOUT_OPENMOTIF_MANUALS, which controls
building/installing of open-motif's manpages and docs
Original commit
Sunday, 2 Jan 2005
00:33 steve search for other commits by this committer
Fix libXpm vulnerabilities that are described here:

http://www.vuxml.org/freebsd/ef253f8b-0727-11d9-b45d-000c41e2cdad.html

Approved by:    portmgr
Original commit
Friday, 24 Dec 2004
06:34 phantom search for other commits by this committer
While building on amd64 add -fPIC to CFLAGS
Original commit
Sunday, 15 Aug 2004
15:22 steve search for other commits by this committer
Update to version 2.2.3.

PR:             65721
Submitted by:   KATO Tsuguru <tkato@prontomail.com>, deischen
Original commit
Friday, 23 Jul 2004
19:10 anholt search for other commits by this committer
- Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,
  and make XFREE86_VERSION map to it.  XFREE86_VERSION is now deprecated.
- Make xorg the default X_WINDOW_SYSTEM on -current.
- Add several new X_*_PORT variables which point to various pieces of X11 based
  on the setting of X_WINDOW_SYSTEM, and make ports use them.
- Add information to CHANGES about how to handle the transition.

PR:             ports/68763
Approved by:    portmgr (marcus)
Approved by:    re (scottl)
Original commit
Wednesday, 4 Feb 2004
05:10 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 1)
Original commit
Tuesday, 14 Oct 2003
15:47 dinoex search for other commits by this committer
- add CONFLICTS
Submitted by:   eikemeier@fillmore-labs.com
Approved by:    kris
Original commit
Friday, 7 Mar 2003
06:14 ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
Original commit
Friday, 18 Oct 2002
22:03 obraun search for other commits by this committer
* add 2 missing man pages
* Bump PORTREVISION

PR:             44234
Submitted by:   KATO Tsuguru <tkato@prontomail.com>
Original commit
Saturday, 21 Sep 2002
06:58 knu search for other commits by this committer
Unbreak by using find+xargs instead of globbing that results in
command line overflow if the length of WRKDIRPREFIX is very long.
Original commit
Tuesday, 17 Sep 2002
19:21 sobomax search for other commits by this committer
Since the build can break up with some LANG environment settings, add
LANG=C in MAKE_ENV. Actually, I think that bsd.port.mk should do this instead.

Submitted by:   gnome tinderbox failure
Original commit
Saturday, 14 Sep 2002
13:32 sobomax search for other commits by this committer
Due to popular demant into each port which might be inserted into dependency
list by bsd.port.mk insert anti foot-shooting device, which prevents
infinite fork loop when the user defines corresponding USE_XXX in global
make.conf, command line or environment.

Similar devices should probably be inserted into ports that might be inserted
into dependency list by others bsd.foo.mk files (bsd.ruby.mk, bsd.python.mk
and so on.)
Original commit
Friday, 13 Sep 2002
18:42 ijliao search for other commits by this committer
upgrade to 2.2.2

PR:             42491
Submitted by:   Ports Fury
Original commit
Friday, 26 Jul 2002
04:10 glewis search for other commits by this committer
. Add a patch to prevent crashes which occur when using XIM and
  certain (e.g. Asian) character sets.
. Bump PORTREVISION to reflect this fix.

PR:             30421
Submitted by:   Fuyuhiko Maruyama <fuyuhik8@is.titech.ac.jp>
Reviewed by:    steve (the patch)
Approved by:    steve
Original commit
Friday, 23 Nov 2001
08:48 sf search for other commits by this committer
stop installing host.def, Motif.tmpl/rules and use stock one.   This unbreaks
XFree86-4-Server building.    
Original commit
Thursday, 13 Sep 2001
16:56 steve search for other commits by this committer
Makefile:   - fix a bug involving NOPORTDOCS   - add NO_OPENMOTIF_DEMOS "make"
variable to control whether Motif demos     are built and installed    
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
Monday, 9 Oct 2000
02:40 asami search for other commits by this committer
Move USE_IMAKE up above the include of bsd.port.pre.mk, so it gets the  
dependency right.  (Also, remove the "#xxx Hack alert!" that becomes  
unnecessary as a result. :)    
Original commit
Wednesday, 4 Oct 2000
02:23 steve search for other commits by this committer
Only use the XFree86 version 4 mtree file when it is actually desired (ie.   not
when XFREE86_VERSION=3).    
Original commit
Tuesday, 19 Sep 2000
22:37 asami search for other commits by this committer
Install the *I.h files also, some ports (at least xblackjack and   libhelp) need
these.    
Original commit
Monday, 18 Sep 2000
07:22 steve search for other commits by this committer
Don't build/install the debug versions of lib{Mrm,Uil,Xm}.    
Original commit
Saturday, 16 Sep 2000
00:18 asami search for other commits by this committer
Add MTREE_FILE definition, this port is happier with BSD.x11-4.dist.    
Original commit
Thursday, 14 Sep 2000
11:43 asami search for other commits by this committer
Add XFREE86_HTML_MAN=no, since this port does not install those stuff.    
Original commit
Tuesday, 29 Aug 2000
03:02 obrien search for other commits by this committer
Pass the maintainer hat to Steve who agreed to take it over.    
Original commit
Friday, 18 Aug 2000
18:42 asami search for other commits by this committer
Don't install imake config files other than Motif.* and host.def.   Don't
install imake and makedepend (although we need to build them for   internal use
-- it is too hard to make it use the installed versions).   Make PLIST complete
and add more manpages to MAN*.    
Original commit
Wednesday, 19 Jul 2000
13:58 obrien search for other commits by this committer
Update to build properly from sources rather than re-package the Metrolink  
offering.    
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: 100