Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Mar 2004 09:05:45 -0800 (PST)
From:      Trevor Johnson <trevor@FreeBSD.org>
To:        ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: ports/x11-toolkits/jx Makefile distinfo
Message-ID:  <200403121705.i2CH5jdR030425@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
trevor      2004/03/12 09:05:45 PST

  FreeBSD ports repository

  Modified files:
    x11-toolkits/jx      Makefile distinfo 
  Log:
  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);
                          }
  
  Revision  Changes    Path
  1.25      +3 -5      ports/x11-toolkits/jx/Makefile
  1.3       +1 -1      ports/x11-toolkits/jx/distinfo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403121705.i2CH5jdR030425>