Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12534
Modified Files:
roofitcore.info roofitcore.patch roofitmodels.info
roofitmodels.patch
Log Message:
New upstream release
Index: roofitcore.patch
===================================================================
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/roofitcore.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- roofitcore.patch 15 Dec 2004 06:25:05 -0000 1.5
+++ roofitcore.patch 14 May 2005 04:29:13 -0000 1.6
@@ -1,32 +1,18 @@
---- RooFitCore.orig/GNUmakefile.standalone Fri Oct 4 16:08:58 2002
-+++ RooFitCore.new/GNUmakefile.standalone Wed Mar 24 14:05:20 2004
-@@ -27,7 +27,6 @@
- # from the RooFitCore/ directory #
- # #
- # Build targets #
-- # lib - make libRooFitCore.a #
+--- RooFitCore.orig/GNUmakefile.standalone Mon Apr 4 07:59:12 2005
++++ RooFitCore.new/GNUmakefile.standalone Fri May 13 18:56:30 2005
+@@ -32,6 +32,7 @@
+ # lib - make libRooFitCore.a #
# shlib - make libRooFitCore.so #
+ # winlib - make libRooFitCore.dll (for CygWin) #
++ # dylib - make libRooFitCore.dylib (for Mac OS X) #
# clean - delete all intermediate and final build objects #
# #
-@@ -36,29 +35,32 @@
-
- # --- External configuration ----------------------------------
--CC = g++
--CCFLAGS = -O2 -Wno-deprecated
-+CC = MACOSX_DEPLOYMENT_TARGET=10.3 g++
-+CCFLAGS = -pipe -O2 -Wno-deprecated
- MFLAGS = -MM -Wno-deprecated
- INCLUDES =
- WORKDIR = tmp/
-+LDFLAGS = -bundle -undefined dynamic_lookup
-+SOFLAGS = -dynamiclib -single_module -undefined dynamic_lookup
- LIBDIR = $(WORKDIR)
- # -------------------------------------------------------------
-
+
#############################################################################
+@@ -49,13 +50,15 @@
# Internal configuration
PACKAGE=RooFitCore
--LD_LIBRARY_PATH:=$(ROOTSYS)/lib
+-LD_LIBRARY_PATH:=$(ROOTSYS)/lib:$(LD_LIBRARY_PATH)
+MAJOR = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$1)}')
+MINOR = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$2)}')
+REVIS = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$3)}')
@@ -34,21 +20,26 @@
OBJDIR=$(WORKDIR)/objects/
INCDIR=$(WORKDIR)/$(PACKAGE)/
VPATH=$(INCDIR) $(OBJDIR)
-
+ #LDFLAGS = -shared
-INCLUDES += -I.. -I$(WORKDIR)/ -I$(ROOTSYS)/include
-ROOTSYS ?= ERROR_RootSysIsNotDefined
+INCLUDES += -I.. -I$(WORKDIR)/ $(shell root-config --cflags)
RDLLIST = $(filter-out $(PACKAGE)_LinkDef.rdl,$(wildcard *.rdl))
SKIPLIST = makedocs.cc RooIntegratorTest.cc
CINTFILE = $(PACKAGE)Cint.cc
- CINTOBJ = $(PACKAGE)Cint.o
--LIBFILE = $(LIBDIR)/lib$(PACKAGE).a
--SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).so
-+SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).dylib
+@@ -63,9 +66,10 @@
+ LIBFILE = $(LIBDIR)/lib$(PACKAGE).a
+ SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).so
+ DLLIBFILE = $(LIBDIR)/lib$(PACKAGE).dll
++DYLIBFILE = $(LIBDIR)/lib$(PACKAGE).dylib
+ UNAME = $(shell uname)
- default: shlib
+-default: shlib
++default: dylib
-@@ -99,34 +101,31 @@
+ # List of all includes files to copy from rdl
+ HHLIST=$(patsubst %.rdl,%.hh,$(RDLLIST))
+@@ -104,9 +108,7 @@
@mkdir -p $(OBJDIR)
@cp *.hh $(INCDIR)
@echo "Running rootcint"
@@ -59,103 +50,43 @@
@echo "Compiling $(CINTFILE)"
@$(CC) $(CCFLAGS) -c $(INCDIR)/$(CINTFILE) -o $(OBJDIR)/$(CINTOBJ)
$(INCLUDES)
--# Rule to combine objects into a library
--$(LIBFILE): $(OLIST) $(INCDIR)/$(CINTFILE)) $(patsubst
%.cc,%.o,$(OBJDIR)/$(CINTFILE))
-- @echo "Making $(LIBFILE)"
-- @rm -f $(LIBFILE)
-- @ar q $(LIBFILE) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE)))
-- @ranlib $(LIBFILE)
--
- # Rule to combine objects into a shared library
+@@ -121,7 +123,7 @@
$(SHLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
@echo "Making $(SHLIBFILE)"
@rm -f $(SHLIBFILE)
- @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) -shared -o $(SHLIBFILE)
-+ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst \
-+ %.cc,%.o,$(CINTFILE))) $(LDFLAGS) \
-+ -o $(subst .dylib,.so,$@)
++ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) -bundle -undefined dynamic_lookup -o $(SHLIBFILE)
+
+ # Rule to combine objects into a windows shared library
+ $(DLLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
+@@ -129,17 +131,29 @@
+ @rm -f $(DLLIBFILE)
+ $(CC) -Wl,--export-all-symbols -Wl,--export-dynamic
-Wl,--enable-auto-import -Wl,-Bdynamic -shared --enable-auto-image-base
-Wl,-soname -o $(DLLIBFILE) -Wl,--whole-archive $(addprefix $(OBJDIR)/,$(OLIST)
$(patsubst %.cc,%.o,$(CINTFILE))) -Wl,--no-whole-archive -L$(ROOTSYS)/lib
-lCore -lCint -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix
-lMinuit -lPhysics -lHtml -lm
+
++# Rule to combine objects into a Mac OS X shared library
++$(DYLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
++ @echo "Making $(SHLIBFILE)"
++ @rm -f $(SHLIBFILE)
+ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) \
-+ $(SOFLAGS) \
++ -dynamiclib -single_module -undefined dynamic_lookup \
++ -o $(subst .dylib,.$(MAJOR).$(MINOR).dylib,$@) \
+ -install_name $(subst $(LIBDIR),@PREFIX@/lib/root,$(subst
.dylib,.$(MAJOR).dylib,$@)) \
+ -compatibility_version $(MAJOR) -current_version
$(MAJOR).$(MINOR).$(REVIS) \
-+ -o $(subst .dylib,.$(MAJOR).$(MINOR).dylib,$@)
+
-
# Useful build targets
--lib: $(LIBFILE)
+ lib: $(LIBFILE)
shlib: $(SHLIBFILE)
+ winlib: $(DLLIBFILE)
++dylib: $(DYLIBFILE) $(SHLIBFILE)
clean:
rm -f $(OBJDIR)/*
rm -f $(INCDIR)/*
-- rm -f $(LIBFILE)
+ rm -f $(LIBFILE)
rm -f $(SHLIBFILE)
+ rm -f $(DLLIBFILE)
++ rm -f $(DYLIBFILE)
--.PHONY : shlib lib default clean
-+.PHONY : shlib default clean
+-.PHONY : winlib shlib lib default clean
++.PHONY : dylib winlib shlib lib default clean
-include $(addprefix $(INCDIR)/,$(DLIST))
---- RooFitCore.orig/RooHtml.cc Tue Oct 22 17:44:55 2002
-+++ RooFitCore.new/RooHtml.cc Wed Jun 25 17:13:03 2003
-@@ -35,7 +35,7 @@
- #endif
-
- const Int_t kSpaceNum = 1;
--const char *formatStr = "%12s %5s %s";
-+//const char *formatStr = "%12s %5s %s";
-
- ClassImp(RooHtml)
- ;
---- RooFitCore.orig/RooFormula.cc Mon Apr 5 15:44:11 2004
-+++ RooFitCore.new/RooFormula.cc Sat Aug 14 19:30:13 2004
-@@ -233,6 +233,20 @@
-
-
- Int_t
-+RooFormula::DefinedVariable(TString &name, Int_t &action)
-+{
-+ // ROOT version 4.00/01 and above uses this API.
-+ // Need to define both here to make overloading working
-+ // regardless of ROOT change.
-+
-+#if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,1)
-+ action = kDefinedVariable;
-+#endif
-+
-+ return DefinedVariable(name);
-+}
-+
-+Int_t
- RooFormula::DefinedVariable(TString &name)
- {
- // Check if a variable with given name is available
-@@ -320,7 +334,7 @@
-
- // cout << "DefinedVariable " << arg->GetName() ;
- // if (labelName) cout << "::" << labelName ;
--// cout << " registered with code " << _useList.GetEntries()-1 << endl ;
-+// cout << " registered with code " << _useList.GetSize()-1 << endl ;
-
- return (_useList.GetSize()-1) ;
- }
---- RooFitCore.orig/RooFormula.rdl Mon Apr 5 15:44:11 2004
-+++ RooFitCore.new/RooFormula.rdl Sat Aug 14 19:29:19 2004
-@@ -59,7 +59,8 @@
- void initCopy(const RooFormula& other) ;
-
- // Interface to TFormula engine
-- Int_t DefinedVariable(TString &name) ;
-+ Int_t DefinedVariable(TString &name) ; // Root 3 API
-+ Int_t DefinedVariable(TString &name, Int_t &action) ; // Root 4 API
- Double_t DefinedValue(Int_t code) ;
-
- RooArgSet* _nset ;
---- RooFitCore.orig/RooFitResult.cc Thu Apr 8 17:16:56 2004
-+++ RooFitCore.new/RooFitResult.cc Fri Oct 8 11:10:59 2004
-@@ -32,6 +32,7 @@
- #include "TBox.h"
- #include "TGaxis.h"
- #include "TMatrix.h"
-+#include "TVector.h"
- #include "RooFitCore/RooFitResult.hh"
- #include "RooFitCore/RooArgSet.hh"
- #include "RooFitCore/RooArgList.hh"
Index: roofitmodels.patch
===================================================================
RCS file:
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/roofitmodels.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- roofitmodels.patch 15 Dec 2004 06:25:05 -0000 1.3
+++ roofitmodels.patch 14 May 2005 04:29:13 -0000 1.4
@@ -1,27 +1,21 @@
---- RooFitModels.orig/GNUmakefile.standalone Mon Apr 5 15:38:34 2004
-+++ RooFitModels.new/GNUmakefile.standalone Thu Apr 8 11:03:03 2004
-@@ -44,28 +44,31 @@
-
- # --- External configuration ---------------------------------
--CC = g++
--CCFLAGS = -O2 -Wno-deprecated
-+CC = MACOSX_DEPLOYMENT_TARGET=10.3 g++
-+CCFLAGS = -pipe -O -Wno-deprecated
- MFLAGS = -MM -Wno-deprecated
- INCLUDES =
- WORKDIR = tmp/
-+LDFLAGS = -bundle -undefined dynamic_lookup
-+SOFLAGS = -dynamiclib -single_module -undefined dynamic_lookup
- LIBDIR = $(WORKDIR)
- # -------------------------------------------------------------
-
+--- RooFitModels.orig/GNUmakefile.standalone Mon Apr 4 08:00:05 2005
++++ RooFitModels.new/GNUmakefile.standalone Fri May 13 21:10:40 2005
+@@ -36,6 +36,7 @@
+ # lib - make libRooFitModels.a #
+ # shlib - make libRooFitModels.so #
+ # winlib - make libRooFitModels.dll (for CygWin) #
++ # dylib - make libRooFitCore.dylib (for Mac OS X) #
+ # clean - delete all intermediate and final build objects #
+ # #
+
#############################################################################
+@@ -53,21 +54,24 @@
# Internal configuration
PACKAGE=RooFitModels
--LD_LIBRARY_PATH:=$(ROOTSYS)/lib
-+MAJOR = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$1)}')
-+MINOR = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$2)}')
-+REVIS = $(shell echo @VERSION@ | awk -F "." '{printf("%d",$$3)}')
+-LD_LIBRARY_PATH:=$(ROOTSYS)/lib:$(LD_LIBRARY_PATH)
++MAJOR = $(shell echo 1.09.02 | awk -F "." '{printf("%d",$$1)}')
++MINOR = $(shell echo 1.09.02 | awk -F "." '{printf("%d",$$2)}')
++REVIS = $(shell echo 1.09.02 | awk -F "." '{printf("%d",$$3)}')
+
OBJDIR=$(WORKDIR)/objects/
INCDIR=$(WORKDIR)/$(PACKAGE)/
@@ -29,17 +23,21 @@
-INCLUDES += -I.. -I$(WORKDIR)/ -I$(ROOTSYS)/include
-I$(PWD)/../RooFitCore/$(WORKDIR)
-ROOTSYS ?= ERROR_RootSysIsNotDefined
-+INCLUDES += -I.. -I$(WORKDIR)/ $(shell root-config --cflags)
++INCLUDES += -I.. -I$(WORKDIR)/ $(shell root-config --cflags)
-I$(PWD)/../RooFitCore/$(WORKDIR)
RDLLIST = $(filter-out $(PACKAGE)_LinkDef.rdl,$(wildcard *.rdl))
CINTFILE = $(PACKAGE)Cint.cc
CINTOBJ = $(PACKAGE)Cint.o
--LIBFILE = $(LIBDIR)/lib$(PACKAGE).a
--SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).so
-+SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).dylib
+ LIBFILE = $(LIBDIR)/lib$(PACKAGE).a
+ SHLIBFILE = $(LIBDIR)/lib$(PACKAGE).so
+ DLLIBFILE = $(LIBDIR)/lib$(PACKAGE).dll
++DYLIBFILE = $(LIBDIR)/lib$(PACKAGE).dylib
- default: shlib
+-default: shlib
++default: dylib
-@@ -102,22 +105,23 @@
+ # List of all includes files to copy from rdl
+ HHLIST=$(patsubst %.rdl,%.hh,$(RDLLIST))
+@@ -102,7 +106,7 @@
@mkdir -p $(INCDIR)
@mkdir -p $(OBJDIR)
@echo "Running rootcint"
@@ -48,38 +46,43 @@
@echo "Compiling $(CINTFILE)"
@$(CC) $(CCFLAGS) -c $(INCDIR)/$(CINTFILE) -o $(OBJDIR)/$(CINTOBJ)
$(INCLUDES)
--# Rule to combine objects into a library
--$(LIBFILE): $(OLIST) $(INCDIR)/$(CINTFILE)) $(patsubst
%.cc,%.o,$(OBJDIR)/$(CINTFILE))
-- @echo "Making $(LIBFILE)"
-- @rm -f $(LIBFILE)
-- @ar q $(LIBFILE) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE)))
-- @ranlib $(LIBFILE)
--
- # Rule to combine objects into a shared library
+@@ -117,7 +121,7 @@
$(SHLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
@echo "Making $(SHLIBFILE)"
@rm -f $(SHLIBFILE)
- @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) -shared -o $(SHLIBFILE)
-+ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst \
-+ %.cc,%.o,$(CINTFILE))) $(LDFLAGS) \
-+ -o $(subst .dylib,.so,$@)
++ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) -bundle -undefined dynamic_lookup -o $(SHLIBFILE)
+
+ # Rule to combine objects into a windows shared library
+ $(DLLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
+@@ -125,17 +129,29 @@
+ @rm -f $(DLLIBFILE)
+ $(CC) -Wl,--export-all-symbols -Wl,--export-dynamic
-Wl,--enable-auto-import -Wl,-Bdynamic -shared --enable-auto-image-base
-Wl,-soname -o $(DLLIBFILE) -Wl,--whole-archive $(addprefix $(OBJDIR)/,$(OLIST)
$(patsubst %.cc,%.o,$(CINTFILE))) -Wl,--no-whole-archive -L$(ROOTSYS)/lib
-lCore -lCint -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix
-lMinuit -lPhysics -lHtml -lm -L$(PWD)/../RooFitCore/tmp -lRooFitCore
+
++# Rule to combine objects into a Mac OS X shared library
++$(DYLIBFILE): $(OLIST) $(patsubst %.cc,%.o,$(OBJDIR)/$(CINTFILE))
++ @echo "Making $(SHLIBFILE)"
++ @rm -f $(SHLIBFILE)
+ @$(CC) $(addprefix $(OBJDIR)/,$(OLIST) $(patsubst
%.cc,%.o,$(CINTFILE))) \
-+ $(SOFLAGS) \
-+ -install_name $(subst $(LIBDIR),@PREFIX@/lib/root,$(subst
.dylib,.$(MAJOR).dylib,$@)) \
++ -dynamiclib -single_module -undefined dynamic_lookup \
++ -o $(subst .dylib,.$(MAJOR).$(MINOR).dylib,$@) \
++ -install_name $(subst $(LIBDIR),/sw/lib/root,$(subst
.dylib,.$(MAJOR).dylib,$@)) \
+ -compatibility_version $(MAJOR) -current_version
$(MAJOR).$(MINOR).$(REVIS) \
-+ -o $(subst .dylib,.$(MAJOR).$(MINOR).dylib,$@)
+
-
# Useful build targets
lib: $(LIBFILE)
-@@ -125,9 +129,8 @@
+ shlib: $(SHLIBFILE)
+ winlib: $(DLLIBFILE)
++dylib: $(DYLIBFILE) $(SHLIBFILE)
clean:
rm -f $(OBJDIR)/*
rm -f $(INCDIR)/*
-- rm -f $(LIBFILE)
+ rm -f $(LIBFILE)
rm -f $(SHLIBFILE)
+ rm -f $(DLLIBFILE)
++ rm -f $(DYLIBFILE)
--.PHONY : shlib lib default clean
-+.PHONY : shlib default clean
+-.PHONY : winlib shlib lib default clean
++.PHONY : dylib winlib shlib lib default clean
-include $(addprefix $(INCDIR)/,$(DLIST))
Index: roofitmodels.info
===================================================================
RCS file:
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/roofitmodels.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- roofitmodels.info 15 Dec 2004 06:25:05 -0000 1.7
+++ roofitmodels.info 14 May 2005 04:29:13 -0000 1.8
@@ -15,8 +15,8 @@
suitable for adoption in different disciplines as well.
<<
Homepage: http://roofit.sourceforge.net
-Version: 1.00.04
-Revision: 14
+Version: 1.09.02
+Revision: 11
Maintainer: Remi Mommsen <[EMAIL PROTECTED]>
GCC: 3.3
BuildDependsOnly: false
@@ -28,15 +28,15 @@
Conflicts: roofitmodels, roofitmodels4, roofitmodels-root3, roofitmodels-root4
Replaces: roofitmodels, roofitmodels4, roofitmodels-root3, roofitmodels-root4
License: BSD
-Source: mirror:sourceforge:roofit/RooFitModels_V01-00-04.tgz
-Source-MD5: 939a639749387d84b921dd3e24ddc1ff
+Source: mirror:sourceforge:roofit/RooFitModels_V01-09-02.tgz
+Source-MD5: 36b98550c2ec47d38bdf84ba1878acef
SourceDirectory: RooFitModels
PatchScript: sed 's|@PREFIX@|%p|g' <%a/roofitmodels.patch | sed
's|@VERSION@|%v|g' | patch -p1
CompileScript: make -f GNUmakefile.standalone
InstallScript: <<
mkdir -p %i/lib/root
install -m 644 tmp/libRooFitModels.so %i/lib/root
- ln -s libRooFitModels.1.0.dylib %i/lib/root/libRooFitModels.dylib
+ ln -s libRooFitModels.1.9.dylib %i/lib/root/libRooFitModels.dylib
mkdir -p %i/include/root/RooFitModels
install -m 644 tmp/RooFitModels/*.hh %i/include/root/RooFitModels
<<
@@ -59,7 +59,7 @@
InstallScript: <<
mkdir -p %i/lib/root
install -m 644 tmp/libRooFitModels.*.dylib %i/lib/root
- ln -s libRooFitModels.1.0.dylib %i/lib/root/libRooFitModels.1.dylib
+ ln -s libRooFitModels.1.9.dylib %i/lib/root/libRooFitModels.1.dylib
<<
Shlibs: <<
%p/lib/root/libRooFitModels.1.dylib 1.0.0
roofitmodels-%type_raw[root_version] (>=1.00.03-1)
Index: roofitcore.info
===================================================================
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/roofitcore.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- roofitcore.info 15 Dec 2004 06:25:05 -0000 1.10
+++ roofitcore.info 14 May 2005 04:29:13 -0000 1.11
@@ -15,8 +15,8 @@
suitable for adoption in different disciplines as well.
<<
Homepage: http://roofit.sourceforge.net
-Version: 1.00.04
-Revision: 16
+Version: 1.09.02
+Revision: 11
Maintainer: Remi Mommsen <[EMAIL PROTECTED]>
GCC: 3.3
BuildDependsOnly: false
@@ -28,15 +28,15 @@
Replaces: roofitcore, roofitcore4, roofitcore-root3, roofitcore-root4
Recommends: roofitmodels-%type_raw[root_version]
License: BSD
-Source: mirror:sourceforge:roofit/RooFitCore_V01-00-04.tgz
-Source-MD5: e7b441c941c7387e37a83cc073f7e4ba
+Source: mirror:sourceforge:roofit/RooFitCore_V01-09-02.tgz
+Source-MD5: 2c8aa905feab8bfaa1b58e1a4c55d39b
SourceDirectory: RooFitCore
PatchScript: sed 's|@PREFIX@|%p|g' <%a/roofitcore.patch | sed
's|@VERSION@|%v|g' | patch -p1
CompileScript: make -f GNUmakefile.standalone
InstallScript: <<
mkdir -p %i/lib/root
install -m 644 tmp/libRooFitCore.so %i/lib/root
- ln -s libRooFitCore.1.0.dylib %i/lib/root/libRooFitCore.dylib
+ ln -s libRooFitCore.1.9.dylib %i/lib/root/libRooFitCore.dylib
mkdir -p %i/include/root/RooFitCore
install -m 644 tmp/RooFitCore/*.hh %i/include/root/RooFitCore
<<
@@ -56,7 +56,7 @@
InstallScript: <<
mkdir -p %i/lib/root
install -m 644 tmp/libRooFitCore.*.dylib %i/lib/root
- ln -s libRooFitCore.1.0.dylib %i/lib/root/libRooFitCore.1.dylib
+ ln -s libRooFitCore.1.9.dylib %i/lib/root/libRooFitCore.1.dylib
<<
Shlibs: <<
%p/lib/root/libRooFitCore.1.dylib 1.0.0
roofitcore-%type_raw[root_version] (>=1.00.03-1)
-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits