ports/78043: [PATCH] devel/root: update to 4.02.00

Alexander S. Usov usov at KVI.nl
Thu Feb 24 22:30:20 UTC 2005


>Number:         78043
>Category:       ports
>Synopsis:       [PATCH] devel/root: update to 4.02.00
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 24 22:30:19 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Alexander S. Usov
>Release:        FreeBSD 5.3-STABLE i386
>Organization:
>Environment:
System: FreeBSD kvip55.lan 5.3-STABLE FreeBSD 5.3-STABLE #0: Sat Feb 19 22:43:59 CET 2005
>Description:
- Update to 4.02.00

This update unbreaks it on 5.x.
Not tested on 4.x as I don't have it around.

Is something more than mere USE_OPENSSL needed to use ssl?
The patch for Module.mk is really quite brute-force.

Strange that patch for Makefile.freebsd5 while looks completely correct to
me breaks the build process.

I have added MAKE_FLAGS as root expects the ARCH variable to contain os type,
and our build systems sets it to machine type.

Added file(s):
- files/patch-xml::Module.mk

Removed file(s):
- files/patch-config::Makefile.freebsd4
- files/patch-config::Makefile.freebsd5
- files/patch-configure
- files/patch-gcc34

Port maintainer (simon at lang-clan.de) is cc'd.

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- root-4.02.00.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/devel/root/Makefile /home/usov/local/PORTS/root/Makefile
--- /usr/ports/devel/root/Makefile	Mon Jan 31 01:35:45 2005
+++ /home/usov/local/PORTS/root/Makefile	Thu Feb 24 23:03:52 2005
@@ -6,10 +6,10 @@
 #
 
 PORTNAME=		root
-PORTVERSION=		4.00.06
+PORTVERSION=		4.02.00
 CATEGORIES=		devel science math
 MASTER_SITES=		ftp://root.cern.ch/root/
-DISTNAME=		${PORTNAME}_v${PORTVERSION}.sourcea
+DISTNAME=		${PORTNAME}_v${PORTVERSION}.source
 
 MAINTAINER=		simon at lang-clan.de
 COMMENT=		An Object-Oriented Data Analysis Framework
@@ -17,6 +17,9 @@
 HAS_CONFIGURE=		yes
 CONFIGURE_TARGET=	freebsd5
 ALL_TARGET=		showbuild skip all
+MAKE_FLAGS=		ARCH=freebsd5
+### something more needed for OpenSSL ???
+USE_OPENSSL=		yes
 USE_GMAKE=		yes
 USE_XLIB=		yes
 USE_XPM=		yes
@@ -31,7 +34,7 @@
 
 # If you have installed MySQL (ports/databases/mysql50-client), then
 # you may enable ROOT's support for it, too.
-# A know but yet unsolved problem: The support of Kerberos 5 needs some
+# A known but yet unsolved problem: The support of Kerberos 5 needs some
 # patches to ROOT.
 # A lot of the features are related to software used in high
 # energy physics projects. Have a look to the ROOT web page for more
@@ -48,20 +51,24 @@
 			--disable-globus		\
 			--disable-krb5			\
 			--disable-mysql			\
-			--disable-openiv		\
+			--disable-python		\
 			--disable-pythia		\
 			--disable-pythia6		\
 			--disable-rfio			\
 			--disable-rpath			\
+			--disable-ruby			\
 			--disable-sapdb			\
 			--disable-shadowpw		\
 			--disable-venus			\
-			--enable-opengl			\
+			--disable-xrootd		\
 			--enable-exceptions		\
 			--enable-explicitlink		\
+			--enable-opengl			\
 			--enable-shared			\
 			--enable-soversion		\
-			--enable-table
+			--enable-ssl			\
+			--enable-table			\
+			--enable-xml
 
 INSTALLS_SHLIB=		yes
 NO_FILTER_SHLIBS=	yes
@@ -69,6 +76,7 @@
 MAN1=			cint.1 g2root.1 h2root.1 hadd.1 makecint.1 memprobe.1
 MAN1+=			proofd.1 proofserv.1 rmkdepend.1 root-config.1 root.1
 MAN1+=			root.exe.1 rootcint.1 rootd.1 rootn.exe.1
+MAN1+=			system.rootdaemonrc.1
 
 MODTESTS=		Event hsimple minexam tcollex tstring
 MAKE_TENV=		${MAKE_ENV} CXX="${CXX}" LDFLAGS="${LDFLAGS}"
@@ -139,10 +147,6 @@
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} >= 502126
-BROKEN=			"Does not compile on FreeBSD >= 5.x"
-.endif
-
 # The thread sub-system was not working for ROOT versions 3.x on FreeBSD 4.x
 # systems. Meanwhile maybe it's working with some patches - but I have no
 # FreeBSD 4.x system still running for testing  ;-)
@@ -180,11 +184,12 @@
 	@sleep 3
 
 post-patch:
-	@${RM} ${WRKSRC}/configure.orig
-	@${RM} ${WRKSRC}/config/Makefile.freebsd4.orig
-	@${RM} ${WRKSRC}/config/Makefile.freebsd5.orig
+#	@${RM} ${WRKSRC}/configure.orig
+#	@${RM} ${WRKSRC}/config/Makefile.freebsd4.orig
+#	@${RM} ${WRKSRC}/config/Makefile.freebsd5.orig
	@${RM} ${WRKSRC}/config/root-config.in.orig
	@${RM} ${WRKSRC}/test/Makefile.arch.orig
+	@${RM} ${WRKSRC}/xml/Module.mk.orig
 .if ${OSVERSION} < 500016 || defined(WITHOUT_THREADS)
 	@${REINPLACE_CMD} -e                                  \
 		's|auxcflags=\"PTHREAD-CFLAGS|auxcflags=\"| ; \
diff -ruN --exclude=CVS /usr/ports/devel/root/distinfo /home/usov/local/PORTS/root/distinfo
--- /usr/ports/devel/root/distinfo	Thu Aug 12 14:54:53 2004
+++ /home/usov/local/PORTS/root/distinfo	Tue Feb 22 14:42:54 2005
@@ -1,2 +1,2 @@
-MD5 (root_v4.00.06.sourcea.tar.gz) = 8fec2ea3252dd6bd76f9933665c7142c
-SIZE (root_v4.00.06.sourcea.tar.gz) = 10953070
+MD5 (root_v4.02.00.source.tar.gz) = 621c663e11ca4de453e64ee15f3c5ebc
+SIZE (root_v4.02.00.source.tar.gz) = 13074632
diff -ruN --exclude=CVS /usr/ports/devel/root/files/patch-config::Makefile.freebsd4 /home/usov/local/PORTS/root/files/patch-config::Makefile.freebsd4
--- /usr/ports/devel/root/files/patch-config::Makefile.freebsd4	Thu Aug 12 14:54:54 2004
+++ /home/usov/local/PORTS/root/files/patch-config::Makefile.freebsd4	Thu Jan  1 01:00:00 1970
@@ -1,82 +0,0 @@
-*** config/Makefile.freebsd4.orig	Mon Feb 16 11:12:43 2004
---- config/Makefile.freebsd4	Wed Jun 16 15:23:15 2004
-***************
-*** 5,11 ****
-  PLATFORM      = fbsd
-  
-  DEBUGFLAGS    = -g
-- OPTFLAGS      = -O
-  ifeq (debug,$(findstring debug,$(ROOTBUILD)))
-  OPT           = $(DEBUGFLAGS)
-  NOOPT         =
---- 5,10 ----
-***************
-*** 15,24 ****
-  endif
-  
-  # Compiler:
-! CXX           = g++
-! CC            = gcc
-! CXXFLAGS      = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CXXFLAGS)
-! CFLAGS        = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CFLAGS)
-  CINTCXXFLAGS  = -pipe -W -Wall -fPIC -DG__REGEXP $(EXTRA_CXXFLAGS) \
-                  -DG__UNIX -DG__SHAREDLIB -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL
-  CINTCFLAGS    = -pipe -W -Wall -fPIC -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
---- 14,23 ----
-  endif
-  
-  # Compiler:
-! CXXFLAGS     += -W -Wall -fPIC -I$(X11BASE)/include -I$(LOCALBASE)/include
-! CXXFLAGS     += $(EXTRA_CXXFLAGS)
-! CFLAGS       += -W -Wall -fPIC -I$(X11BASE)/include -I$(LOCALBASE)/include
-! CFLAGS       += $(EXTRA_CFLAGS)
-  CINTCXXFLAGS  = -pipe -W -Wall -fPIC -DG__REGEXP $(EXTRA_CXXFLAGS) \
-                  -DG__UNIX -DG__SHAREDLIB -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL
-  CINTCFLAGS    = -pipe -W -Wall -fPIC -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
-***************
-*** 26,38 ****
-  COMPILER      = gnu
-  
-  ifeq ($(ENABLETHREAD),yes)
-! CXXFLAGS     += -pthread
-! CINTCXXFLAGS += -pthread
-  endif
-  
-  # Linker:
-! LD            = g++
-! LDFLAGS       = $(OPT) $(EXTRA_LDFLAGS)
-  SOFLAGS       = -shared -Wl,-x -Wl,-soname,
-  SOEXT         = so
-  
---- 25,37 ----
-  COMPILER      = gnu
-  
-  ifeq ($(ENABLETHREAD),yes)
-! CXXFLAGS     += $(PTHREAD_CFLAGS)
-! CINTCXXFLAGS += $(PTHREAD_CFLAGS)
-  endif
-  
-  # Linker:
-! LD            = $(CXX)
-! LDFLAGS      += $(OPT) $(EXTRA_LDFLAGS)
-  SOFLAGS       = -shared -Wl,-x -Wl,-soname,
-  SOEXT         = so
-  
-***************
-*** 43,50 ****
-  CRYPTLIBS     = -lcrypt
-  
-  # Fortran:
-! F77           = f77
-! F77FLAGS      = $(OPT)
-  F77LIBS       = -lg2c
-  
-  # Extras
---- 42,48 ----
-  CRYPTLIBS     = -lcrypt
-  
-  # Fortran:
-! F77FLAGS     += $(OPT)
-  F77LIBS       = -lg2c
-  
-  # Extras
diff -ruN --exclude=CVS /usr/ports/devel/root/files/patch-config::Makefile.freebsd5 /home/usov/local/PORTS/root/files/patch-config::Makefile.freebsd5
--- /usr/ports/devel/root/files/patch-config::Makefile.freebsd5	Thu Aug 12 14:54:54 2004
+++ /home/usov/local/PORTS/root/files/patch-config::Makefile.freebsd5	Thu Jan  1 01:00:00 1970
@@ -1,90 +0,0 @@
-*** config/Makefile.freebsd5.orig	Tue Jun 15 19:28:13 2004
---- config/Makefile.freebsd5	Wed Jun 16 15:22:55 2004
-***************
-*** 1,11 ****
-  # -*- mode: makefile -*-
-  #
-! # Makefile of ROOT for FreeBSD 4.5
-  
-  PLATFORM      = fbsd
-  
-  DEBUGFLAGS    = -g
-- OPTFLAGS      = -O
-  ifeq (debug,$(findstring debug,$(ROOTBUILD)))
-  OPT           = $(DEBUGFLAGS)
-  NOOPT         =
---- 1,10 ----
-  # -*- mode: makefile -*-
-  #
-! # Makefile of ROOT for FreeBSD 5.x
-  
-  PLATFORM      = fbsd
-  
-  DEBUGFLAGS    = -g
-  ifeq (debug,$(findstring debug,$(ROOTBUILD)))
-  OPT           = $(DEBUGFLAGS)
-  NOOPT         =
-***************
-*** 15,33 ****
-  endif
-  
-  # Compiler:
-! CXX           = g++
-! CC            = gcc
-! CXXFLAGS      = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CXXFLAGS)
-! CFLAGS        = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CFLAGS)
-  CINTCXXFLAGS  = -pipe -W -Wall -fPIC -DG__REGEXP $(EXTRA_CXXFLAGS) \
-                  -DG__UNIX -DG__SHAREDLIB -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL
-  CINTCFLAGS    = -pipe -W -Wall -fPIC -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
-                  -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL $(EXTRA_CFLAGS)
-  COMPILER      = gnu
-  
-  # Linker:
-! LD            = g++
-! LDFLAGS       = $(OPT) $(EXTRA_LDFLAGS)
-  SOFLAGS       = -shared -Wl,-x -Wl,-soname,
-  SOEXT         = so
-  
---- 14,37 ----
-  endif
-  
-  # Compiler:
-! CXXFLAGS     += -W -Wall -fPIC -I$(X11BASE)/include -I$(LOCALBASE)/include
-! CXXFLAGS     += $(EXTRA_CXXFLAGS)
-! CFLAGS       += -W -Wall -fPIC -I$(X11BASE)/include -I$(LOCALBASE)/include
-! CFLAGS       += $(EXTRA_CFLAGS)
-  CINTCXXFLAGS  = -pipe -W -Wall -fPIC -DG__REGEXP $(EXTRA_CXXFLAGS) \
-                  -DG__UNIX -DG__SHAREDLIB -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL
-  CINTCFLAGS    = -pipe -W -Wall -fPIC -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
-                  -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL $(EXTRA_CFLAGS)
-  COMPILER      = gnu
-  
-+ ifeq ($(ENABLETHREAD),yes)
-+ CXXFLAGS     += $(PTHREAD_CFLAGS)
-+ CINTCXXFLAGS += $(PTHREAD_CFLAGS)
-+ endif
-+ 
-  # Linker:
-! LD            = $(CXX)
-! LDFLAGS      += $(OPT) $(EXTRA_LDFLAGS)
-  SOFLAGS       = -shared -Wl,-x -Wl,-soname,
-  SOEXT         = so
-  
-***************
-*** 38,45 ****
-  CRYPTLIBS     = -lcrypt
-  
-  # Fortran:
-! F77           = f77
-! F77FLAGS      = $(OPT)
-  F77LIBS       = -lg2c
-  
-  # Extras
---- 42,48 ----
-  CRYPTLIBS     = -lcrypt
-  
-  # Fortran:
-! F77FLAGS     += $(OPT)
-  F77LIBS       = -lg2c
-  
-  # Extras
diff -ruN --exclude=CVS /usr/ports/devel/root/files/patch-configure /home/usov/local/PORTS/root/files/patch-configure
--- /usr/ports/devel/root/files/patch-configure	Thu Aug 12 14:54:54 2004
+++ /home/usov/local/PORTS/root/files/patch-configure	Thu Jan  1 01:00:00 1970
@@ -1,35 +0,0 @@
-*** configure.orig	Tue Jun 15 19:44:02 2004
---- configure	Wed Jun 16 09:42:21 2004
-***************
-*** 905,918 ****
-      ;;
-  freebsd*)
-      if test "x$enable_thread" = "xyes"; then
-!        threadlib="-pthread"
-         threadlibdir=
-      fi
-      ;;
-  esac
-  if test "x$enable_thread" = "xyes" && \
-     test ! "$platform" = "win32"    && \
-!    test ! "$platform" = "freebsd4" ; then
-      check_library "libpthread" "$enable_shared" "$threadlibdir" \
-  	$THREAD $THREAD/lib /usr/lib /usr/local/lib /usr/lib/X11 \
-  	/usr/local/lib/X11 /usr/X11R6/lib /usr/local/X11R6/lib \
---- 905,920 ----
-      ;;
-  freebsd*)
-      if test "x$enable_thread" = "xyes"; then
-!        threadlib="$PTHREAD_LIBS"
-         threadlibdir=
-      fi
-      ;;
-  esac
-  if test "x$enable_thread" = "xyes" && \
-     test ! "$platform" = "win32"    && \
-!    test ! "$platform" = "freebsd5" && \
-!    test ! "$platform" = "freebsd4" && \
-!    test ! "$platform" = "freebsd" ; then
-      check_library "libpthread" "$enable_shared" "$threadlibdir" \
-  	$THREAD $THREAD/lib /usr/lib /usr/local/lib /usr/lib/X11 \
-  	/usr/local/lib/X11 /usr/X11R6/lib /usr/local/X11R6/lib \
diff -ruN --exclude=CVS /usr/ports/devel/root/files/patch-gcc34 /home/usov/local/PORTS/root/files/patch-gcc34
--- /usr/ports/devel/root/files/patch-gcc34	Thu Aug 12 14:54:54 2004
+++ /home/usov/local/PORTS/root/files/patch-gcc34	Thu Jan  1 01:00:00 1970
@@ -1,51 +0,0 @@
-===================================================================
-RCS file: /home/cvs/root/cint/src/gcc3strm.cxx,v
-retrieving revision 1.17
-retrieving revision 1.18
-diff -u -r1.17 -r1.18
---- cint/src/gcc3strm.cxx	2004/04/26 21:50:31	1.17
-+++ cint/src/gcc3strm.cxx	2004/07/01 20:02:52	1.18
-@@ -139,7 +139,8 @@
- }
- 
- static int G__G__stream_5_4_0(G__value *result7,G__CONST char *funcname,struct G__param *libp,int hash) {
--      G__letint(result7,108,(long)((const fpos<mbstate_t>*)(G__getstructoffset()))->operator long());
-+   const fpos<mbstate_t>*pos = (const fpos<mbstate_t>*)(G__getstructoffset());
-+   G__letint(result7,108,(long)(*pos));
-    return(1 || funcname || hash || result7 || libp) ;
- }
- 
-@@ -2023,13 +2024,13 @@
-    return(1 || funcname || hash || result7 || libp) ;
- }
- 
--static int G__G__stream__1_16(G__value *result7,G__CONST char *funcname,struct G__param *libp,int hash) {
--      {
--        const ostream& obj=operator<<(*(ostream*)libp->para[0].ref,*(streampos*)libp->para[1].ref);
--         result7->ref=(long)(&obj); result7->obj.i=(long)(&obj);
--      }
--   return(1 || funcname || hash || result7 || libp) ;
--}
-+// static int G__G__stream__1_16(G__value *result7,G__CONST char *funcname,struct G__param *libp,int hash) {
-+//       {
-+//         const ostream& obj=operator<<(*(ostream*)libp->para[0].ref,*(streampos*)libp->para[1].ref);
-+//          result7->ref=(long)(&obj); result7->obj.i=(long)(&obj);
-+//       }
-+//    return(1 || funcname || hash || result7 || libp) ;
-+// }
- 
- static int G__G__stream__2_16(G__value *result7,G__CONST char *funcname,struct G__param *libp,int hash) {
-       {
-@@ -3621,9 +3622,9 @@
-    G__memfunc_setup("operator<<",996,G__G__stream__0_16,117,G__get_linked_tagnum(&G__G__streamLN_basic_ostreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("ostream"),1,2,1,1,0,
- "u 'basic_ostream<char,char_traits<char> >' 'ostream' 1 - - g - - 0 - -",(char*)NULL
- ,(void*)NULL,0);
--   G__memfunc_setup("operator<<",996,G__G__stream__1_16,117,G__get_linked_tagnum(&G__G__streamLN_basic_ostreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("ostream"),1,2,1,1,0,
--"u 'basic_ostream<char,char_traits<char> >' 'ostream' 1 - - u 'fpos<mbstate_t>' 'streampos' 11 - -",(char*)NULL
--,(void*)NULL,0);
-+//    G__memfunc_setup("operator<<",996,G__G__stream__1_16,117,G__get_linked_tagnum(&G__G__streamLN_basic_ostreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("ostream"),1,2,1,1,0,
-+// "u 'basic_ostream<char,char_traits<char> >' 'ostream' 1 - - u 'fpos<mbstate_t>' 'streampos' 11 - -",(char*)NULL
-+// ,(void*)NULL,0);
-    G__memfunc_setup("operator>>",1000,G__G__stream__2_16,117,G__get_linked_tagnum(&G__G__streamLN_basic_istreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("istream"),1,2,1,1,0,
- "u 'basic_istream<char,char_traits<char> >' 'istream' 1 - - c - - 1 - -",(char*)NULL
- ,(void*)NULL,0);
diff -ruN --exclude=CVS /usr/ports/devel/root/files/patch-xml::Module.mk /home/usov/local/PORTS/root/files/patch-xml::Module.mk
--- /usr/ports/devel/root/files/patch-xml::Module.mk	Thu Jan  1 01:00:00 1970
+++ /home/usov/local/PORTS/root/files/patch-xml::Module.mk	Tue Feb 22 17:33:26 2005
@@ -0,0 +1,8 @@
+--- xml/Module.mk.orig	Tue Feb 22 17:32:18 2005
++++ xml/Module.mk	Tue Feb 22 17:32:42 2005
+@@ -67,4 +67,4 @@
+ 
+ ##### extra rules ######
+ $(XMLO): %.o: %.cxx
+-	$(CXX) $(OPT) $(CXXFLAGS) -I$(XMLINCDIR) -o $@ -c $<
++	$(CXX) $(OPT) $(CXXFLAGS) -I$(XMLINCDIR) -I/usr/local/include -o $@ -c $<
diff -ruN --exclude=CVS /usr/ports/devel/root/pkg-plist /home/usov/local/PORTS/root/pkg-plist
--- /usr/ports/devel/root/pkg-plist	Thu Aug 12 14:54:53 2004
+++ /home/usov/local/PORTS/root/pkg-plist	Tue Feb 22 23:24:07 2005
@@ -15,6 +15,7 @@
 etc/hostcert.conf
 etc/pdg_table.txt
 etc/root.mimes
+etc/rootd
 etc/system.rootauthrc
 etc/system.rootdaemonrc
 etc/system.rootmap
@@ -32,6 +33,7 @@
 include/root/CallFunc.h
 %%LDAP%%include/root/CintLDAP.h
 include/root/Class.h
+include/root/DaemonUtils.h
 include/root/DataMbr.h
 include/root/Demangle.h
 include/root/DllImport.h
@@ -48,6 +50,7 @@
 include/root/Hparam.h
 include/root/Htypes.h
 include/root/KeySymbols.h
+include/root/LinkDef.h
 include/root/Match.h
 include/root/MemCheck.h
 include/root/MessageTypes.h
@@ -73,6 +76,8 @@
 include/root/TApplication.h
 include/root/TApplicationImp.h
 include/root/TArc.h
+include/root/TArcBall.h
+include/root/TArchiveFile.h
 include/root/TArray.h
 include/root/TArrayC.h
 include/root/TArrayD.h
@@ -81,23 +86,29 @@
 include/root/TArrayL.h
 include/root/TArrayS.h
 include/root/TArrow.h
+include/root/TArrowEditor.h
 include/root/TAtt3D.h
 include/root/TAttAxis.h
 include/root/TAttCanvas.h
 include/root/TAttFill.h
 include/root/TAttFillCanvas.h
+include/root/TAttFillEditor.h
 include/root/TAttImage.h
 include/root/TAttLine.h
 include/root/TAttLineCanvas.h
+include/root/TAttLineEditor.h
 include/root/TAttMarker.h
 include/root/TAttMarkerCanvas.h
+include/root/TAttMarkerEditor.h
 include/root/TAttPad.h
 include/root/TAttParticle.h
 include/root/TAttText.h
 include/root/TAttTextCanvas.h
+include/root/TAttTextEditor.h
 include/root/TAuthenticate.h
 include/root/TAxis.h
 include/root/TAxis3D.h
+include/root/TAxisEditor.h
 include/root/TBRIK.h
 include/root/TBaseClass.h
 include/root/TBasket.h
@@ -108,10 +119,17 @@
 include/root/TBranchClones.h
 include/root/TBranchElement.h
 include/root/TBranchObject.h
+include/root/TBranchProxy.h
+include/root/TBranchProxyClassDescriptor.h
+include/root/TBranchProxyDescriptor.h
+include/root/TBranchProxyDirector.h
+include/root/TBranchProxyTemplate.h
+include/root/TBranchRef.h
 include/root/TBrowser.h
 include/root/TBrowserImp.h
 include/root/TBtree.h
 include/root/TBuffer.h
+include/root/TBuffer3D.h
 include/root/TButton.h
 include/root/TCL.h
 include/root/TCONE.h
@@ -133,6 +151,7 @@
 include/root/TClassTree.h
 include/root/TClonesArray.h
 include/root/TCollection.h
+include/root/TCollectionProxy.h
 include/root/TColor.h
 include/root/TColumnView.h
 include/root/TComplex.h
@@ -140,6 +159,7 @@
 %%THREADS%%include/root/TConditionImp.h
 include/root/TCondor.h
 include/root/TConfidenceLevel.h
+include/root/TContainerConverters.h
 include/root/TContextMenu.h
 include/root/TContextMenuImp.h
 include/root/TControlBar.h
@@ -147,7 +167,9 @@
 include/root/TControlBarImp.h
 include/root/TCrown.h
 include/root/TCurlyArc.h
+include/root/TCurlyArcEditor.h
 include/root/TCurlyLine.h
+include/root/TCurlyLineEditor.h
 include/root/TCut.h
 include/root/TCutG.h
 include/root/TDSet.h
@@ -159,6 +181,7 @@
 include/root/TDatabasePDG.h
 include/root/TDatime.h
 include/root/TDecayChannel.h
+include/root/TDecompBK.h
 include/root/TDecompBase.h
 include/root/TDecompChol.h
 include/root/TDecompLU.h
@@ -169,11 +192,13 @@
 include/root/TDiamond.h
 include/root/TDictionary.h
 include/root/TDirectory.h
+include/root/TDrawFeedback.h
 include/root/TDrawPanelHist.h
 include/root/TDsKey.h
 include/root/TELTU.h
 include/root/TEllipse.h
-include/root/TEmulatedVectorProxy.h
+include/root/TEmulatedCollectionProxy.h
+include/root/TEmulatedMapProxy.h
 include/root/TEnv.h
 include/root/TError.h
 include/root/TEventIter.h
@@ -195,11 +220,14 @@
 include/root/TFitPanelGraph.h
 include/root/TFitter.h
 include/root/TFolder.h
+include/root/TFormLeafInfo.h
 include/root/TFormula.h
 include/root/TFractionFitter.h
 include/root/TFrame.h
 include/root/TFree.h
 include/root/TFriendElement.h
+include/root/TFriendProxy.h
+include/root/TFriendProxyDescriptor.h
 include/root/TFumili.h
 include/root/TFunction.h
 include/root/TG3DLine.h
@@ -213,6 +241,7 @@
 include/root/TGComboBox.h
 include/root/TGDimension.h
 include/root/TGDoubleSlider.h
+include/root/TGDockableFrame.h
 include/root/TGFSComboBox.h
 include/root/TGFSContainer.h
 include/root/TGFileDialog.h
@@ -221,14 +250,25 @@
 include/root/TGFrame.h
 include/root/TGGC.h
 include/root/TGIcon.h
+include/root/TGIdleHandler.h
 include/root/TGImageMap.h
+include/root/TGLCamera.h
+include/root/TGLEditor.h
+include/root/TGLFrustum.h
 include/root/TGLKernel.h
-include/root/TGLViewerImp.h
 include/root/TGLabel.h
 include/root/TGLayout.h
 include/root/TGListBox.h
 include/root/TGListTree.h
 include/root/TGListView.h
+include/root/TGLRender.h
+include/root/TGLRenderArea.h
+include/root/TGLSceneObject.h
+include/root/TGMdi.h
+include/root/TGMdiDecorFrame.h
+include/root/TGMdiFrame.h
+include/root/TGMdiMainFrame.h
+include/root/TGMdiMenu.h
 include/root/TGMenu.h
 include/root/TGMimeTypes.h
 include/root/TGMsgBox.h
@@ -236,6 +276,7 @@
 include/root/TGObject.h
 include/root/TGPicture.h
 include/root/TGProgressBar.h
+include/root/TGQt.h
 include/root/TGResourcePool.h
 include/root/TGScrollBar.h
 include/root/TGShutter.h
@@ -261,13 +302,13 @@
 include/root/TGX11TTF.h
 include/root/TGXYLayout.h
 include/root/TGaxis.h
-include/root/TGedAttFrame.h
-include/root/TGedDrawPanel.h
 include/root/TGedEditor.h
+include/root/TGedFrame.h
 include/root/TGedMarkerSelect.h
 include/root/TGedPatternSelect.h
-include/root/TGedPropertyFrame.h
 include/root/TGedToolBox.h
+include/root/TGenCollectionProxy.h
+include/root/TGenCollectionStreamer.h
 include/root/TGenPhaseSpace.h
 include/root/TGenerator.h
 include/root/TGenericClassInfo.h
@@ -280,8 +321,11 @@
 include/root/TGeoChecker.h
 include/root/TGeoCompositeShape.h
 include/root/TGeoCone.h
+include/root/TGeoElement.h
 include/root/TGeoEltu.h
+include/root/TGeoHalfSpace.h
 include/root/TGeoHelix.h
+include/root/TGeoHype.h
 include/root/TGeoMCGeometry.h
 include/root/TGeoManager.h
 include/root/TGeoMaterial.h
@@ -291,6 +335,7 @@
 include/root/TGeoOverlap.h
 include/root/TGeoPainter.h
 include/root/TGeoPara.h
+include/root/TGeoParaboloid.h
 include/root/TGeoPatternFinder.h
 include/root/TGeoPcon.h
 include/root/TGeoPgon.h
@@ -315,6 +360,7 @@
 include/root/TGraphAsymmErrors.h
 include/root/TGraphBentErrors.h
 include/root/TGraphDelaunay.h
+include/root/TGraphEditor.h
 include/root/TGraphErrors.h
 include/root/TGraphPainter.h
 include/root/TGraphSmooth.h
@@ -322,10 +368,17 @@
 include/root/TGridProof.h
 include/root/TGridResult.h
 include/root/TGroupButton.h
+include/root/TGuiBldDragManager.h
+include/root/TGuiBldEditor.h
+include/root/TGuiBldHintsButton.h
+include/root/TGuiBldHintsEditor.h
+include/root/TGuiBldQuickHandler.h
+include/root/TGuiBuilder.h
 include/root/TGuiFactory.h
 include/root/TH1.h
 include/root/TH1C.h
 include/root/TH1D.h
+include/root/TH1Editor.h
 include/root/TH1F.h
 include/root/TH1I.h
 include/root/TH1K.h
@@ -333,6 +386,7 @@
 include/root/TH2.h
 include/root/TH2C.h
 include/root/TH2D.h
+include/root/TH2Editor.h
 include/root/TH2F.h
 include/root/TH2I.h
 include/root/TH2S.h
@@ -404,6 +458,8 @@
 include/root/TMatrixDLazy.h
 include/root/TMatrixDSparse.h
 include/root/TMatrixDSym.h
+include/root/TMatrixDSymCramerInv.h
+include/root/TMatrixFSymCramerInv.h
 include/root/TMatrixDSymEigen.h
 include/root/TMatrixDUtils.h
 include/root/TMatrixF.h
@@ -419,6 +475,7 @@
 include/root/TMessageHandler.h
 include/root/TMethod.h
 include/root/TMethodArg.h
+include/root/TMethodBrowsable.h
 include/root/TMethodCall.h
 include/root/TMinuit.h
 include/root/TMixture.h
@@ -438,6 +495,7 @@
 include/root/TObjArray.h
 include/root/TObjString.h
 include/root/TObject.h
+include/root/TObjectExecute.h
 include/root/TObjectSet.h
 include/root/TObjectTable.h
 include/root/TOrdCollection.h
@@ -451,11 +509,12 @@
 include/root/TPacketizer.h
 include/root/TPacketizer2.h
 include/root/TPad.h
+include/root/TPadEditor.h
 include/root/TPadEditorOld.h
-include/root/TPadOpenGLView.h
 include/root/TPadView3D.h
 include/root/TPainter3dAlgorithms.h
 include/root/TPaletteAxis.h
+include/root/TParameter.h
 include/root/TParticle.h
 include/root/TParticleClassPDG.h
 include/root/TParticlePDG.h
@@ -463,8 +522,10 @@
 include/root/TPaveClass.h
 include/root/TPaveLabel.h
 include/root/TPaveStats.h
+include/root/TPaveStatsEditor.h
 include/root/TPaveText.h
 include/root/TPavesText.h
+include/root/TPerfStats.h
 %%POSTGRESQL%%include/root/TPgSQLResult.h
 %%POSTGRESQL%%include/root/TPgSQLRow.h
 %%POSTGRESQL%%include/root/TPgSQLServer.h
@@ -497,10 +558,11 @@
 include/root/TProofPlayer.h
 include/root/TProofProgressDialog.h
 include/root/TProofServ.h
-include/root/TProofStats.h
 include/root/TQCommand.h
 include/root/TQConnection.h
+include/root/TQMimeTypes.h
 include/root/TQObject.h
+include/root/TQUserEvent.h
 include/root/TQpDataBase.h
 include/root/TQpDataDens.h
 include/root/TQpDataSparse.h
@@ -513,6 +575,24 @@
 include/root/TQpResidual.h
 include/root/TQpSolverBase.h
 include/root/TQpVar.h
+include/root/TQtApplication.h
+include/root/TQtApplicationThread.h
+include/root/TQtBrush.h
+include/root/TQtClientFilter.h
+include/root/TQtClientGuard.h
+include/root/TQtClientWidget.h
+include/root/TQtEvent.h
+include/root/TQtEventQueue.h
+include/root/TQtMarker.h
+include/root/TQtRConfig.h
+include/root/TQtRootApplication.h
+include/root/TQtRootGuiFactory.h
+include/root/TQtRootThread.h
+include/root/TQtThread.h
+include/root/TQtThreadStub.h
+include/root/TQtTimer.h
+include/root/TQtUtil.h
+include/root/TQtWidget.h
 include/root/TROOT.h
 %%THREADS%%include/root/TRWLock.h
 include/root/TRandom.h
@@ -522,9 +602,11 @@
 include/root/TRef.h
 include/root/TRefArray.h
 include/root/TRefCnt.h
+include/root/TRefTable.h
 include/root/TRegexp.h
 include/root/TResponseTable.h
 include/root/TRint.h
+include/root/TRobustEstimator.h
 include/root/TRolke.h
 include/root/TRootApplication.h
 include/root/TRootBrowser.h
@@ -533,14 +615,12 @@
 include/root/TRootControlBar.h
 include/root/TRootDialog.h
 include/root/TRootEmbeddedCanvas.h
-include/root/TRootGLKernel.h
 include/root/TRootGLU.h
-include/root/TRootGLViewer.h
 include/root/TRootGLX.h
+include/root/TRootGuiBuilder.h
 include/root/TRootGuiFactory.h
 include/root/TRootHelpDialog.h
-include/root/TRootOIViewer.h
-include/root/TRootWGL.h
+include/root/TRootMainThread.h
 include/root/TRotMatrix.h
 include/root/TRotation.h
 include/root/TSPHE.h
@@ -563,6 +643,7 @@
 include/root/TSortedList.h
 include/root/TSpectrum.h
 include/root/TSpline.h
+include/root/TStatus.h
 include/root/TStopwatch.h
 include/root/TStorage.h
 include/root/TStreamer.h
@@ -605,7 +686,9 @@
 include/root/TTree.h
 include/root/TTreeFormula.h
 include/root/TTreeFormulaManager.h
+include/root/TTreeIndex.h
 include/root/TTreePlayer.h
+include/root/TTreeProxyGenerator.h
 include/root/TTreeResult.h
 include/root/TTreeRow.h
 include/root/TTreeViewer.h
@@ -620,15 +703,17 @@
 include/root/TVector3.h
 include/root/TVectorD.h
 include/root/TVectorF.h
-include/root/TVectorProxy.h
 include/root/TView.h
+include/root/TViewerOpenGL.h
 include/root/TViewerX3D.h
 include/root/TVirtualCollectionProxy.h
+include/root/TVirtualDragManager.h
 include/root/TVirtualFitter.h
 include/root/TVirtualGL.h
 include/root/TVirtualGeoPainter.h
 include/root/TVirtualGeoTrack.h
 include/root/TVirtualHistPainter.h
+include/root/TVirtualIndex.h
 include/root/TVirtualMC.h
 include/root/TVirtualMCApplication.h
 include/root/TVirtualMCDecayer.h
@@ -639,27 +724,31 @@
 include/root/TVirtualPacketizer.h
 include/root/TVirtualPad.h
 include/root/TVirtualPadEditor.h
+include/root/TVirtualPerfStats.h
 include/root/TVirtualProof.h
 include/root/TVirtualTreePlayer.h
 include/root/TVirtualUtil3D.h
 include/root/TVirtualUtilHist.h
 include/root/TVirtualUtilPad.h
+include/root/TVirtualViewer3D.h
 include/root/TVirtualX.h
+include/root/TVirtualX.interface.h
 include/root/TVolume.h
 include/root/TVolumePosition.h
 include/root/TVolumeView.h
 include/root/TVolumeViewIter.h
+include/root/TWaitCondition.h
 include/root/TWbox.h
 include/root/TWebFile.h
-include/root/TWin32GLKernel.h
-include/root/TWin32GLViewerImp.h
+include/root/TX11GL.h
 include/root/TXMLBuffer.h
-include/root/TXMLDtdGenerator.h
 include/root/TXMLEngine.h
 include/root/TXMLFile.h
 include/root/TXMLKey.h
 include/root/TXMLSetup.h
+include/root/TXMLPlayer.h
 include/root/TXTRU.h
+include/root/TZIPFile.h
 include/root/Tailor.h
 include/root/Token.h
 include/root/Ttypes.h
@@ -674,7 +763,9 @@
 include/root/ZDeflate.h
 include/root/ZIP.h
 include/root/ZTrees.h
+include/root/accstrm.h
 include/root/aixdlfcn.h
+include/root/bc_exec_asm.h
 include/root/bcstrm.h
 include/root/cbstrm.h
 include/root/cfortran.h
@@ -706,6 +797,7 @@
 include/root/rmain.cxx
 include/root/rootdp.h
 include/root/rpderr.h
+include/root/rpddefs.h
 include/root/rpdp.h
 include/root/rsaaux.h
 include/root/rsadef.h
@@ -879,6 +971,15 @@
 lib/root/cint/include/xgraph.c
 lib/root/cint/include/xygraphbuf.h
 lib/root/cint/lib/README.txt
+lib/root/cint/lib/accstrm/CVS/Entries
+lib/root/cint/lib/accstrm/CVS/Repository
+lib/root/cint/lib/accstrm/CVS/Root
+lib/root/cint/lib/accstrm/Makefile
+lib/root/cint/lib/accstrm/README.txt
+lib/root/cint/lib/accstrm/fstrm.h
+lib/root/cint/lib/accstrm/iostrm.h
+lib/root/cint/lib/accstrm/linkdef.h
+lib/root/cint/lib/accstrm/sstrm.h
 lib/root/cint/lib/bcstream/CVS/Entries
 lib/root/cint/lib/bcstream/CVS/Repository
 lib/root/cint/lib/bcstream/CVS/Root
@@ -948,6 +1049,8 @@
 lib/root/cint/lib/gl/GL.h
 lib/root/cint/lib/gl/README.txt
 lib/root/cint/lib/gl/TOP.h
+lib/root/cint/lib/gl/cintGL.h
+lib/root/cint/lib/gl/setup.bat
 lib/root/cint/lib/gl/setup
 lib/root/cint/lib/iccstrm/CVS/Entries
 lib/root/cint/lib/iccstrm/CVS/Repository
@@ -1230,122 +1333,134 @@
 lib/root/cint/stl/vector.h
 %%AFTERIMAGE%%lib/root/libASImage.so
 %%AFTERIMAGE%%lib/root/libASImage.so.4
-%%AFTERIMAGE%%lib/root/libASImage.so.4.00
+%%AFTERIMAGE%%lib/root/libASImage.so.4.02
 %%AFTERIMAGE%%lib/root/libAfterImage.a
 lib/root/libCint.so
 lib/root/libCint.so.4
-lib/root/libCint.so.4.00
+lib/root/libCint.so.4.02
 lib/root/libCore.so
 lib/root/libCore.so.4
-lib/root/libCore.so.4.00
+lib/root/libCore.so.4.02
 lib/root/libEG.so
 lib/root/libEG.so.4
-lib/root/libEG.so.4.00
+lib/root/libEG.so.4.02
 lib/root/libFumili.so
 lib/root/libFumili.so.4
-lib/root/libFumili.so.4.00
+lib/root/libFumili.so.4.02
 lib/root/libGX11.so
 lib/root/libGX11.so.4
-lib/root/libGX11.so.4.00
+lib/root/libGX11.so.4.02
 lib/root/libGX11TTF.so
 lib/root/libGX11TTF.so.4
-lib/root/libGX11TTF.so.4.00
+lib/root/libGX11TTF.so.4.02
 lib/root/libGed.so
 lib/root/libGed.so.4
-lib/root/libGed.so.4.00
+lib/root/libGed.so.4.02
 lib/root/libGedOld.so
 lib/root/libGedOld.so.4
-lib/root/libGedOld.so.4.00
+lib/root/libGedOld.so.4.02
 lib/root/libGeom.so
 lib/root/libGeom.so.4
-lib/root/libGeom.so.4.00
+lib/root/libGeom.so.4.02
 lib/root/libGeomPainter.so
 lib/root/libGeomPainter.so.4
-lib/root/libGeomPainter.so.4.00
+lib/root/libGeomPainter.so.4.02
 lib/root/libGpad.so
 lib/root/libGpad.so.4
-lib/root/libGpad.so.4.00
+lib/root/libGpad.so.4.02
 lib/root/libGraf.so
 lib/root/libGraf.so.4
-lib/root/libGraf.so.4.00
+lib/root/libGraf.so.4.02
 lib/root/libGraf3d.so
 lib/root/libGraf3d.so.4
-lib/root/libGraf3d.so.4.00
+lib/root/libGraf3d.so.4.02
 lib/root/libGui.so
 lib/root/libGui.so.4
-lib/root/libGui.so.4.00
+lib/root/libGui.so.4.02
+lib/root/libGuiBld.so
+lib/root/libGuiBld.so.4
+lib/root/libGuiBld.so.4.02
+lib/root/libGQt.so
+lib/root/libGQt.so.4
+lib/root/libGQt.so.4.02
 lib/root/libHist.so
 lib/root/libHist.so.4
-lib/root/libHist.so.4.00
+lib/root/libHist.so.4.02
 lib/root/libHistPainter.so
 lib/root/libHistPainter.so.4
-lib/root/libHistPainter.so.4.00
+lib/root/libHistPainter.so.4.02
 lib/root/libHtml.so
 lib/root/libHtml.so.4
-lib/root/libHtml.so.4.00
+lib/root/libHtml.so.4.02
 lib/root/libMLP.so
 lib/root/libMLP.so.4
-lib/root/libMLP.so.4.00
+lib/root/libMLP.so.4.02
 lib/root/libMatrix.so
 lib/root/libMatrix.so.4
-lib/root/libMatrix.so.4.00
+lib/root/libMatrix.so.4.02
 lib/root/libMinuit.so
 lib/root/libMinuit.so.4
-lib/root/libMinuit.so.4.00
+lib/root/libMinuit.so.4.02
 lib/root/libNew.so
 lib/root/libNew.so.4
-lib/root/libNew.so.4.00
+lib/root/libNew.so.4.02
 %%POSTGRESQL%%lib/root/libPgSQL.so
 %%POSTGRESQL%%lib/root/libPgSQL.so.4
-%%POSTGRESQL%%lib/root/libPgSQL.so.4.00
+%%POSTGRESQL%%lib/root/libPgSQL.so.4.02
 lib/root/libPhysics.so
 lib/root/libPhysics.so.4
-lib/root/libPhysics.so.4.00
+lib/root/libPhysics.so.4.02
 lib/root/libPostscript.so
 lib/root/libPostscript.so.4
-lib/root/libPostscript.so.4.00
+lib/root/libPostscript.so.4.02
 lib/root/libProof.so
 lib/root/libProof.so.4
-lib/root/libProof.so.4.00
+lib/root/libProof.so.4.02
 lib/root/libProofGui.so
 lib/root/libProofGui.so.4
-lib/root/libProofGui.so.4.00
+lib/root/libProofGui.so.4.02
+lib/root/libQtRoot.so
+lib/root/libQtRoot.so.4
+lib/root/libQtRoot.so.4.02
 lib/root/libQuadp.so
 lib/root/libQuadp.so.4
-lib/root/libQuadp.so.4.00
+lib/root/libQuadp.so.4.02
 lib/root/libRGL.so
 lib/root/libRGL.so.4
-lib/root/libRGL.so.4.00
+lib/root/libRGL.so.4.02
 %%LDAP%%lib/root/libRLDAP.so
 %%LDAP%%lib/root/libRLDAP.so.4
-%%LDAP%%lib/root/libRLDAP.so.4.00
+%%LDAP%%lib/root/libRLDAP.so.4.02
 lib/root/libRXML.so
 lib/root/libRXML.so.4
-lib/root/libRXML.so.4.00
+lib/root/libRXML.so.4.02
 lib/root/libRint.so
 lib/root/libRint.so.4
-lib/root/libRint.so.4.00
+lib/root/libRint.so.4.02
+lib/root/libSrvAuth.so
+lib/root/libSrvAuth.so.4
+lib/root/libSrvAuth.so.4.02
 lib/root/libTable.so
 lib/root/libTable.so.4
-lib/root/libTable.so.4.00
+lib/root/libTable.so.4.02
 %%THREADS%%lib/root/libThread.so
 %%THREADS%%lib/root/libThread.so.4
-%%THREADS%%lib/root/libThread.so.4.00
+%%THREADS%%lib/root/libThread.so.4.02
 lib/root/libTree.so
 lib/root/libTree.so.4
-lib/root/libTree.so.4.00
+lib/root/libTree.so.4.02
 lib/root/libTreePlayer.so
 lib/root/libTreePlayer.so.4
-lib/root/libTreePlayer.so.4.00
+lib/root/libTreePlayer.so.4.02
 lib/root/libTreeViewer.so
 lib/root/libTreeViewer.so.4
-lib/root/libTreeViewer.so.4.00
+lib/root/libTreeViewer.so.4.02
 lib/root/libVMC.so
 lib/root/libVMC.so.4
-lib/root/libVMC.so.4.00
+lib/root/libVMC.so.4.02
 lib/root/libX3d.so
 lib/root/libX3d.so.4
-lib/root/libX3d.so.4.00
+lib/root/libX3d.so.4.02
 lib/root/libfreetype.a
 share/aclocal/root.m4
 %%DOCSDIR%%/BUILDSYSTEM
@@ -1374,6 +1489,26 @@
 %%DOCSDIR%%/test/Makefile.win32
 %%DOCSDIR%%/test/QpRandomDriver.cxx
 %%DOCSDIR%%/test/README
+%%DOCSDIR%%/test/ProofBench/.cvsignore
+%%DOCSDIR%%/test/ProofBench/CVS/Entries
+%%DOCSDIR%%/test/ProofBench/CVS/Repository
+%%DOCSDIR%%/test/ProofBench/CVS/Root
+%%DOCSDIR%%/test/ProofBench/Draw_PerfProfiles.C
+%%DOCSDIR%%/test/ProofBench/Draw_Slave_Access.C
+%%DOCSDIR%%/test/ProofBench/Draw_Time_Hists.C
+%%DOCSDIR%%/test/ProofBench/EventTree_NoProc.C
+%%DOCSDIR%%/test/ProofBench/EventTree_NoProc.h
+%%DOCSDIR%%/test/ProofBench/EventTree_Proc.C
+%%DOCSDIR%%/test/ProofBench/EventTree_Proc.h
+%%DOCSDIR%%/test/ProofBench/EventTree_ProcOpt.C
+%%DOCSDIR%%/test/ProofBench/EventTree_ProcOpt.h
+%%DOCSDIR%%/test/ProofBench/README
+%%DOCSDIR%%/test/ProofBench/Run_Node_Tests.C
+%%DOCSDIR%%/test/ProofBench/SavePerfInfo.C
+%%DOCSDIR%%/test/ProofBench/make_event_par.sh
+%%DOCSDIR%%/test/ProofBench/make_event_trees.C
+%%DOCSDIR%%/test/ProofBench/make_tdset.C
+%%DOCSDIR%%/test/RootShower/.cvsignore
 %%DOCSDIR%%/test/RootShower/.rootshowerrc
 %%DOCSDIR%%/test/RootShower/CVS/Entries
 %%DOCSDIR%%/test/RootShower/CVS/Entries.Log
@@ -1391,6 +1526,8 @@
 %%DOCSDIR%%/test/RootShower/MyParticle.cxx
 %%DOCSDIR%%/test/RootShower/MyParticle.h
 %%DOCSDIR%%/test/RootShower/ParticlesDef.h
+%%DOCSDIR%%/test/RootShower/Physics.cnt
+%%DOCSDIR%%/test/RootShower/Physics.hlp
 %%DOCSDIR%%/test/RootShower/RSAbout.cxx
 %%DOCSDIR%%/test/RootShower/RSAbout.h
 %%DOCSDIR%%/test/RootShower/RSHelpText.h
@@ -1403,6 +1540,7 @@
 %%DOCSDIR%%/test/RootShower/RootShower.h
 %%DOCSDIR%%/test/RootShower/RootShower.ico
 %%DOCSDIR%%/test/RootShower/RootShower.png
+%%DOCSDIR%%/test/RootShower/RootShower.rc
 %%DOCSDIR%%/test/RootShower/SettingsDlg.cxx
 %%DOCSDIR%%/test/RootShower/SettingsDlg.h
 %%DOCSDIR%%/test/RootShower/anim/CVS/Entries
@@ -1433,13 +1571,11 @@
 %%DOCSDIR%%/test/RootShower/anim/anim23.xpm
 %%DOCSDIR%%/test/RootShower/anim/anim24.xpm
 %%DOCSDIR%%/test/RootShower/constants.h
-%%DOCSDIR%%/test/RootShower/icons/Alice.xpm
 %%DOCSDIR%%/test/RootShower/icons/CVS/Entries
 %%DOCSDIR%%/test/RootShower/icons/CVS/Repository
 %%DOCSDIR%%/test/RootShower/icons/CVS/Root
 %%DOCSDIR%%/test/RootShower/icons/about.xpm
 %%DOCSDIR%%/test/RootShower/icons/browser.xpm
-%%DOCSDIR%%/test/RootShower/icons/cern.xpm
 %%DOCSDIR%%/test/RootShower/icons/help.xpm
 %%DOCSDIR%%/test/RootShower/icons/infos.xpm
 %%DOCSDIR%%/test/RootShower/icons/left.xpm
@@ -1448,9 +1584,7 @@
 %%DOCSDIR%%/test/RootShower/icons/mclogo01.xpm
 %%DOCSDIR%%/test/RootShower/icons/open.xpm
 %%DOCSDIR%%/test/RootShower/icons/quit.xpm
-%%DOCSDIR%%/test/RootShower/icons/right.xpm
 %%DOCSDIR%%/test/RootShower/icons/save.xpm
-%%DOCSDIR%%/test/RootShower/icons/saveas.xpm
 %%DOCSDIR%%/test/RootShower/icons/settings.xpm
 %%DOCSDIR%%/test/RootShower/icons/view3d.xpm
 %%DOCSDIR%%/test/TBench.cxx
@@ -1486,10 +1620,12 @@
 %%DOCSDIR%%/test/tcollex.cxx
 %%DOCSDIR%%/test/test2html.cxx
 %%DOCSDIR%%/test/testbits.cxx
+%%DOCSDIR%%/test/threads.cxx
 %%DOCSDIR%%/test/tstring.cxx
 %%DOCSDIR%%/test/vlazy.cxx
 %%DOCSDIR%%/test/vmatrix.cxx
 %%DOCSDIR%%/test/vvector.cxx
+%%DOCSDIR%%/tutorials/ContourList.C
 %%DOCSDIR%%/tutorials/DynamicSlice.C
 %%DOCSDIR%%/tutorials/EditorBar.C
 %%DOCSDIR%%/tutorials/FeldmanCousins.C
@@ -1512,6 +1648,8 @@
 %%DOCSDIR%%/tutorials/approx.C
 %%DOCSDIR%%/tutorials/archi.C
 %%DOCSDIR%%/tutorials/arrow.C
+%%DOCSDIR%%/tutorials/authclient.C
+%%DOCSDIR%%/tutorials/authserv.C
 %%DOCSDIR%%/tutorials/basic.C
 %%DOCSDIR%%/tutorials/basic.dat
 %%DOCSDIR%%/tutorials/basic3d.C
@@ -1543,6 +1681,8 @@
 %%DOCSDIR%%/tutorials/demoshelp.rb
 %%DOCSDIR%%/tutorials/dirs.C
 %%DOCSDIR%%/tutorials/draw2dopt.C
+%%DOCSDIR%%/tutorials/earth.C
+%%DOCSDIR%%/tutorials/earth.dat
 %%DOCSDIR%%/tutorials/ellipse.C
 %%DOCSDIR%%/tutorials/eval.C
 %%DOCSDIR%%/tutorials/event.C
@@ -1569,6 +1709,7 @@
 %%DOCSDIR%%/tutorials/fitcont.C
 %%DOCSDIR%%/tutorials/fithist.C
 %%DOCSDIR%%/tutorials/fitslicesy.C
+%%DOCSDIR%%/tutorials/fore.xpm
 %%DOCSDIR%%/tutorials/formula1.C
 %%DOCSDIR%%/tutorials/formula1.py
 %%DOCSDIR%%/tutorials/framework.C
@@ -1591,9 +1732,13 @@
 %%DOCSDIR%%/tutorials/graph2dfit.C
 %%DOCSDIR%%/tutorials/graphApply.C
 %%DOCSDIR%%/tutorials/greyscale.C
+%%DOCSDIR%%/tutorials/gtime.C
 %%DOCSDIR%%/tutorials/guitest.C
 %%DOCSDIR%%/tutorials/h1analysis.C
 %%DOCSDIR%%/tutorials/h1analysis.h
+%%DOCSDIR%%/tutorials/h1analysisProxy.C
+%%DOCSDIR%%/tutorials/h1analysisProxy.h
+%%DOCSDIR%%/tutorials/h1analysisProxyCut.C
 %%DOCSDIR%%/tutorials/h1chain.C
 %%DOCSDIR%%/tutorials/h1draw.C
 %%DOCSDIR%%/tutorials/h1draw.py
@@ -1602,6 +1747,7 @@
 %%DOCSDIR%%/tutorials/hbars.C
 %%DOCSDIR%%/tutorials/hclient.C
 %%DOCSDIR%%/tutorials/hcons.C
+%%DOCSDIR%%/tutorials/hist2image.C
 %%DOCSDIR%%/tutorials/hksimple.C
 %%DOCSDIR%%/tutorials/hksimple.rb
 %%DOCSDIR%%/tutorials/hlabels1.C
@@ -1633,15 +1779,23 @@
 %%DOCSDIR%%/tutorials/latex.rb
 %%DOCSDIR%%/tutorials/latex2.C
 %%DOCSDIR%%/tutorials/latex3.C
+%%DOCSDIR%%/tutorials/latex4.C
 %%DOCSDIR%%/tutorials/limit.C
 %%DOCSDIR%%/tutorials/logscales.C
 %%DOCSDIR%%/tutorials/manyaxis.C
 %%DOCSDIR%%/tutorials/markerwarning.C
+%%DOCSDIR%%/tutorials/mathBeta.C
+%%DOCSDIR%%/tutorials/mathGammaNormal.C
+%%DOCSDIR%%/tutorials/mathLaplace.C
+%%DOCSDIR%%/tutorials/mathStudent.C
+%%DOCSDIR%%/tutorials/mditest.C
+%%DOCSDIR%%/tutorials/mditestbg.xpm
 %%DOCSDIR%%/tutorials/mlpHiggs.C
 %%DOCSDIR%%/tutorials/mlpHiggs.root
 %%DOCSDIR%%/tutorials/motorcycle.C
 %%DOCSDIR%%/tutorials/motorcycle.dat
 %%DOCSDIR%%/tutorials/mrt.py
+%%DOCSDIR%%/tutorials/multicolor.C
 %%DOCSDIR%%/tutorials/multidimfit.C
 %%DOCSDIR%%/tutorials/multifit.C
 %%DOCSDIR%%/tutorials/multifit.py
@@ -1655,11 +1809,13 @@
 %%DOCSDIR%%/tutorials/ntuple1.C
 %%DOCSDIR%%/tutorials/ntuple1.py
 %%DOCSDIR%%/tutorials/ntuple1.rb
+%%DOCSDIR%%/tutorials/nucleus.C
 %%DOCSDIR%%/tutorials/oldbenchmarks.C
 %%DOCSDIR%%/tutorials/pad2png.C
 %%DOCSDIR%%/tutorials/pclient.C
 %%DOCSDIR%%/tutorials/peaks.C
 %%DOCSDIR%%/tutorials/permute.C
+%%DOCSDIR%%/tutorials/portfolio.C
 %%DOCSDIR%%/tutorials/principal.C
 %%DOCSDIR%%/tutorials/pserv.C
 %%DOCSDIR%%/tutorials/psexam.C
@@ -1683,6 +1839,7 @@
 %%DOCSDIR%%/tutorials/shapes.py
 %%DOCSDIR%%/tutorials/shapesAnim.C
 %%DOCSDIR%%/tutorials/shared.C
+%%DOCSDIR%%/tutorials/spheres.C
 %%DOCSDIR%%/tutorials/solveLinear.C
 %%DOCSDIR%%/tutorials/splines.C
 %%DOCSDIR%%/tutorials/spy.C
@@ -1691,6 +1848,7 @@
 %%DOCSDIR%%/tutorials/sqlfilldb.C
 %%DOCSDIR%%/tutorials/sqlselect.C
 %%DOCSDIR%%/tutorials/staff.C
+%%DOCSDIR%%/tutorials/stock.root
 %%DOCSDIR%%/tutorials/surfaces.C
 %%DOCSDIR%%/tutorials/surfaces.py
 %%DOCSDIR%%/tutorials/surfaces.rb
@@ -1698,10 +1856,12 @@
 %%DOCSDIR%%/tutorials/tcl.C
 %%DOCSDIR%%/tutorials/testrandom.C
 %%DOCSDIR%%/tutorials/threads.C
+%%DOCSDIR%%/tutorials/threadsh1.C
 %%DOCSDIR%%/tutorials/timeonaxis.C
 %%DOCSDIR%%/tutorials/timeonaxis2.C
 %%DOCSDIR%%/tutorials/tornado.C
 %%DOCSDIR%%/tutorials/tornado.py
+%%DOCSDIR%%/tutorials/transpad.C
 %%DOCSDIR%%/tutorials/tree.C
 %%DOCSDIR%%/tutorials/tree.py
 %%DOCSDIR%%/tutorials/tree0.C
@@ -1710,6 +1870,7 @@
 %%DOCSDIR%%/tutorials/tree2a.C
 %%DOCSDIR%%/tutorials/tree3.C
 %%DOCSDIR%%/tutorials/tree4.C
+%%DOCSDIR%%/tutorials/treefriend.C
 %%DOCSDIR%%/tutorials/triangles.C
 %%DOCSDIR%%/tutorials/tv3.C
 %%DOCSDIR%%/tutorials/tvdemo.C
@@ -1726,6 +1887,7 @@
 %%DOCSDIR%%/tutorials/zones.C
 share/emacs/site-lisp/root-help.el
 share/root/fonts/LICENSE
+share/root/fonts/BlackChancery.ttf
 share/root/fonts/arial.ttf
 share/root/fonts/arialbd.ttf
 share/root/fonts/arialbi.ttf
@@ -1767,6 +1929,68 @@
 share/root/icons/arrow_left.xpm
 share/root/icons/arrow_right.xpm
 share/root/icons/arrow_up.xpm
+share/root/icons/bld_AlignBtm.xpm
+share/root/icons/bld_AlignBtm_d.xpm
+share/root/icons/bld_AlignLeft.xpm
+share/root/icons/bld_AlignLeft_d.xpm
+share/root/icons/bld_AlignRight.xpm
+share/root/icons/bld_AlignRight_d.xpm
+share/root/icons/bld_AlignTop.xpm
+share/root/icons/bld_AlignTop_d.xpm
+share/root/icons/bld_bg.xpm
+share/root/icons/bld_bgd.xpm
+share/root/icons/bld_break.xpm
+share/root/icons/bld_break_d.xpm
+share/root/icons/bld_checkbutton.xpm
+share/root/icons/bld_copy.xpm
+share/root/icons/bld_copy_d.xpm
+share/root/icons/bld_crop.xpm
+share/root/icons/bld_crop_d.xpm
+share/root/icons/bld_cut.xpm
+share/root/icons/bld_cut_d.xpm
+share/root/icons/bld_delete.xpm
+share/root/icons/bld_delete_d.xpm
+share/root/icons/bld_embedcanvas.xpm
+share/root/icons/bld_entry.xpm
+share/root/icons/bld_grab.xpm
+share/root/icons/bld_grab_d.xpm
+share/root/icons/bld_grid.xpm
+share/root/icons/bld_grid_d.xpm
+share/root/icons/bld_groupframe.xpm
+share/root/icons/bld_hbox.xpm
+share/root/icons/bld_hbox_d.xpm
+share/root/icons/bld_hpaned.xpm
+share/root/icons/bld_hprogressbar.xpm
+share/root/icons/bld_hseparator.xpm
+share/root/icons/bld_hslider.xpm
+share/root/icons/bld_image.xpm
+share/root/icons/bld_label.xpm
+share/root/icons/bld_layout.xpm
+share/root/icons/bld_layout_d.xpm
+share/root/icons/bld_mainframe.xpm
+share/root/icons/bld_new.xpm
+share/root/icons/bld_numberentry.xpm
+share/root/icons/bld_open.xpm
+share/root/icons/bld_paste.xpm
+share/root/icons/bld_paste_d.xpm
+share/root/icons/bld_pointer.xpm
+share/root/icons/bld_radiobutton.xpm
+share/root/icons/bld_redo.xpm
+share/root/icons/bld_redo_d.xpm
+share/root/icons/bld_replace.xpm
+share/root/icons/bld_replace_d.xpm
+share/root/icons/bld_rgb.xpm
+share/root/icons/bld_save.xpm
+share/root/icons/bld_save_d.xpm
+share/root/icons/bld_statusbar.xpm
+share/root/icons/bld_textbutton.xpm
+share/root/icons/bld_undo.xpm
+share/root/icons/bld_undo_d.xpm
+share/root/icons/bld_vbox.xpm
+share/root/icons/bld_vbox_d.xpm
+share/root/icons/bld_vpaned.xpm
+share/root/icons/bld_vseparator.xpm
+share/root/icons/bld_vslider.xpm
 share/root/icons/branch-cl_t.xpm
 share/root/icons/branch-ob_t.xpm
 share/root/icons/branch_folder_s.xpm
@@ -1819,6 +2043,8 @@
 share/root/icons/interrupt.xpm
 share/root/icons/last_t.xpm
 share/root/icons/latex.xpm
+share/root/icons/leaf_method_s.xpm
+share/root/icons/leaf_method_t.xpm
 share/root/icons/leaf_s.xpm
 share/root/icons/leaf_t.xpm
 share/root/icons/line.xpm
@@ -1851,6 +2077,12 @@
 share/root/icons/mb_exclamation_s.xpm
 share/root/icons/mb_question_s.xpm
 share/root/icons/mb_stop_s.xpm
+share/root/icons/mdi_close.xpm
+share/root/icons/mdi_default.xpm
+share/root/icons/mdi_help.xpm
+share/root/icons/mdi_maximize.xpm
+share/root/icons/mdi_minimize.xpm
+share/root/icons/mdi_restore.xpm
 share/root/icons/modify.xpm
 share/root/icons/newcanvas.xpm
 share/root/icons/next_t.xpm
@@ -1869,6 +2101,7 @@
 share/root/icons/pavetext.xpm
 share/root/icons/pointer.xpm
 share/root/icons/previous_t.xpm
+share/root/icons/printer.xpm
 share/root/icons/printer_s.xpm
 share/root/icons/profile_s.xpm
 share/root/icons/profile_t.xpm
@@ -1883,6 +2116,8 @@
 share/root/icons/refresh.xpm
 share/root/icons/refresh1.xpm
 share/root/icons/refresh2.xpm
+share/root/icons/return_object_s.xpm
+share/root/icons/return_object_t.xpm
 share/root/icons/root_s.xpm
 share/root/icons/root_t.xpm
 share/root/icons/rootdb_s.xpm
@@ -1929,6 +2164,8 @@
 @dirrm lib/root/cint/include/sys/CVS
 @dirrm lib/root/cint/include/sys
 @dirrm lib/root/cint/include
+ at dirrm lib/root/cint/lib/accstrm/CVS
+ at dirrm lib/root/cint/lib/accstrm
 @dirrm lib/root/cint/lib/bcstream/CVS
 @dirrm lib/root/cint/lib/bcstream
 @dirrm lib/root/cint/lib/cbstream/CVS
@@ -1977,6 +2214,8 @@
 @dirrm lib/root/cint/stl
 @dirrm lib/root/cint
 @dirrm lib/root
+ at dirrm %%DOCSDIR%%/test/ProofBench/CVS
+ at dirrm %%DOCSDIR%%/test/ProofBench
 @dirrm %%DOCSDIR%%/test/RootShower/CVS
 @dirrm %%DOCSDIR%%/test/RootShower/anim/CVS
 @dirrm %%DOCSDIR%%/test/RootShower/anim
--- root-4.02.00.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list