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/jx/Makefile

Number of commits found: 29

Saturday, 5 Nov 2005
09:07 kris search for other commits by this committer
Remove expired ports
Original commit
Saturday, 23 Jul 2005
02:53 kris search for other commits by this committer
This port is scheduled for deletion on 2005-09-22 if it is still broken
at that time and no PRs have been submitted to fix it.
Original commit
Friday, 18 Feb 2005
19:27 kris search for other commits by this committer
BROKEN: Incorrect pkg-plist
Original commit
Sunday, 14 Mar 2004
06:17 ade search for other commits by this committer
Whoa there, boy, that's a mighty big commit y'all have there...

Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

        USE_LIBTOOL=YES         ->      USE_LIBTOOL_VER=13
        USE_AUTOCONF=YES        ->      USE_AUTOCONF_VER=213
        USE_AUTOMAKE=YES        ->      USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
Original commit
Friday, 12 Mar 2004
17:05 trevor search for other commits by this committer
Only one of the Linuxberg sites (as it happens, the Brazilian one)
has the original distfile.  A slightly different distfile is available
from Sunsite:

diff -burN linuxberg/include/make/jx_config_common
sunsite/include/make/jx_config_common
--- linuxberg/include/make/jx_config_common     Sat Sep 25 19:25:40 1999
+++ sunsite/include/make/jx_config_common       Wed Sep  1 02:18:53 1999
@@ -7,14 +7,14 @@

 ifeq ($(findstring g++,$(CXX)),g++)
   ifeq ($(CXX),g++)
-    JX_HAS_GNUG_PRE_2_8 := $(shell \
-        if { $(CXX) --version | egrep '^(cygnus-)?2\.[0-7]' > /dev/null; } \
-        then { echo 1; } \
-        else { echo 0; } fi)
-    JX_HAS_GNUG_2_95 := $(shell \
-        if { $(CXX) --version | egrep '^(cygnus-)?2\.95' > /dev/null; } \
-        then { echo 1; } \
-        else { echo 0; } fi)
+    JX_HAS_GNUG_PRE_2_8 := \
+      $(shell \
+        if $(CXX) --version | egrep '^(cygnus-)?2\.[0-7]' > /dev/null; then \
+        echo 1; else echo 0; fi)
+    JX_HAS_GNUG_2_95 := \
+      $(shell \
+        if $(CXX) --version | egrep '^(cygnus-)?2\.95' > /dev/null; then \
+        echo 1; else echo 0; fi)
   else  # ! g++
   ifeq (eg++,$(findstring eg++,$(CXX)))
     # Assume that eg++ is egcs.
diff -burN linuxberg/include/make/jx_constants sunsite/include/make/jx_constants
--- linuxberg/include/make/jx_constants Sat Sep 25 19:25:30 1999
+++ sunsite/include/make/jx_constants   Tue Sep 21 20:31:57 1999
@@ -23,9 +23,9 @@

 ifdef JX_INSTALL_ROOT
   override JX_INSTALL_ROOT := \
-    ${shell if { test -d ${JX_INSTALL_ROOT} -a -w ${JX_INSTALL_ROOT}; } \
-            then { echo ${JX_INSTALL_ROOT}; } \
-            else { echo; } fi }
+    ${shell if { test -d ${JX_INSTALL_ROOT} -a -w ${JX_INSTALL_ROOT} } \
+            then { echo ${JX_INSTALL_ROOT} } \
+            else { echo } fi; }
 endif

 ifndef JX_INSTALL_ROOT
@@ -33,10 +33,10 @@
     override JX_INSTALL_ROOT := ${JX_ROOT_BIN_DIRECTORY}
   else
     override JX_INSTALL_ROOT := \
-      ${shell if { test -d ${HOME}/bin -a -w ${HOME}/bin; } \
-              then { echo ${HOME}/bin; } \
+      ${shell if { test -d ${HOME}/bin -a -w ${HOME}/bin } \
+              then { echo ${HOME}/bin } \
               else { test -d ${JX_ROOT}/bin || mkdir ${JX_ROOT}/bin; \
-                     echo ${JX_ROOT}/bin; } fi }
+                     echo ${JX_ROOT}/bin } fi; }
   endif
 endif

diff -burN linuxberg/libjx/code/jXUtil.cc sunsite/libjx/code/jXUtil.cc
--- linuxberg/libjx/code/jXUtil.cc      Mon Sep 27 20:59:37 1999
+++ sunsite/libjx/code/jXUtil.cc        Thu Aug 26 20:22:57 1999
@@ -392,7 +392,7 @@
        for (JIndex i=newCount; i>origCount; i--)
                {
                const JString* url = fileNameList->NthElement(i);
-               if (url->IsEmpty() || url->GetFirstCharacter() ==
kURICommentMarker)
+               if (url->GetFirstCharacter() == kURICommentMarker)
                        {
                        fileNameList->DeleteElement(i);
                        }
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
Sunday, 7 Sep 2003
23:39 lioux search for other commits by this committer
Drop maintainership
Original commit
Sunday, 23 Mar 2003
04:58 lioux search for other commits by this committer
Fix typo: add missing \ to continue line
Original commit
Saturday, 8 Mar 2003
18:33 lioux search for other commits by this committer
Fix build: improve previous solution where the distfile was tricked
into believing makemake was installed during build time even though
it really is not

PR:             46217 [1]
Reported by:    bento,
                Nick Jennings <nkj@grenzik.us.mvd> [1]
Original commit
Sunday, 23 Feb 2003
19:58 lioux search for other commits by this committer
De-pkg-comment
Original commit
Monday, 11 Nov 2002
20:45 lioux search for other commits by this committer
Replace hard dependences on auto{conf,make} with newly added
USE_AUTO{CONF,MAKE}_VER
Original commit
Friday, 20 Sep 2002
14:38 lioux search for other commits by this committer
Sanitize MASTER_SITES

Submitted by:   fenner's distfile survey
Original commit
Friday, 23 Aug 2002
22:08 lioux search for other commits by this committer
Mark BROKEN for -CURRENT post gcc 3.1
Original commit
Monday, 22 Oct 2001
18:12 lioux search for other commits by this committer
Add working MASTER_SITES    
Original commit
Tuesday, 11 Sep 2001
04:32 ache search for other commits by this committer
Bump png major    
Original commit
Sunday, 11 Mar 2001
01:18 lioux search for other commits by this committer
The distfile located in one of the MASTER_SITES does not correspond   to the one
"checksummed" for port use. Therefore, it will removed   untill this is
rectified.    
Original commit
Thursday, 22 Feb 2001
02:49 lioux search for other commits by this committer
Sanitize MASTER_SITES.    
Original commit
Wednesday, 14 Feb 2001
04:12 lioux search for other commits by this committer
typo clean up police: \s -> \t    
Original commit
Tuesday, 16 Jan 2001
19:08 will search for other commits by this committer
Update to sync with bsd.port.mk rev 1.361 - use PORTDOCS that is now in  
bsd.port.mk, for easy removal of documentation.  I left alone one port -  
japanese/elisa8x8 (or something like that), because it appeared to have   some
rather weird way of doing PORTDOCS substitution.    
Original commit
Saturday, 7 Oct 2000
23:53 asami search for other commits by this committer
Rename ${FILESDIR}/patch-aa to ${PATCHDIR}/post-patch-aa.  (This patch   does
post-patch processing.)    
Original commit
Tuesday, 3 Oct 2000
06:12 lioux search for other commits by this committer
Maintainer is now a committer, update email accordingly    
Original commit
Sunday, 17 Sep 2000
22:26 steve search for other commits by this committer
Major overhaul of this port so that we cleanly build the other ports   that
depend on it.    
Original commit
Thursday, 3 Aug 2000
10:28 asami search for other commits by this committer
(1) Add new variable, XFREE86_VERSION, to specify which version of       XFree86
(3 or 4) to depend to when USE_XLIB is set.       XFREE86_VERSION defaults to 3
for now, but adventurous users can       override it in /etc/make.conf.  When
XFREE86_VERSION=3, USE_XLIB       will add a dependency to x11/XFree86; when it
is set to 4, the       dependency will be to x11/XFree86-4-libraries.  When     
 XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS       hacks
to avoid messing with XFree86 are turned off.    
Original commit
Monday, 10 Jul 2000
02:44 steve search for other commits by this committer
- Set USE_X_PREFIX.   - Consistently put things in the jx directory.    
Original commit
Tuesday, 4 Jul 2000
08:13 sobomax search for other commits by this committer
Bump png shared library version.    
Original commit
Friday, 16 Jun 2000
22:52 asami search for other commits by this committer
Rename INSTALLS_SHLIBS to INSTALLS_SHLIB.  (There was a typo in the   previous
commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)    
Original commit
09:48 sobomax search for other commits by this committer
Fourth round of INSTALLS_SHLIBS conversion.    
Original commit
Friday, 9 Jun 2000
20:38 will search for other commits by this committer
Don't try to make this port respect CC/CFLAGS.  It won't work.  :-(    
Original commit
Wednesday, 7 Jun 2000
17:52 will search for other commits by this committer
JX is a C++ application framework and widget library for X11.    
Original commit

Number of commits found: 29