Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23119
Modified Files:
roofitcore.info roofitcore.patch roofitmodels.info
roofitmodels.patch
Log Message:
New upstream version and fixes for Tiger
Index: roofitcore.patch
===================================================================
RCS file:
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci/roofitcore.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- roofitcore.patch 27 Apr 2005 03:26:22 -0000 1.1
+++ roofitcore.patch 9 Jun 2005 02:35:24 -0000 1.2
@@ -1,32 +1,27 @@
---- 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 2005-04-04 07:59:12.000000000
-0700
++++ RooFitCore.new/GNUmakefile.standalone 2005-06-08 17:46:17.000000000
-0700
+@@ -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 @@
+
#############################################################################
+@@ -39,7 +40,7 @@
# --- External configuration ----------------------------------
--CC = g++
--CCFLAGS = -O2 -Wno-deprecated
-+CC = MACOSX_DEPLOYMENT_TARGET=10.3 g++
-+CCFLAGS = -pipe -O2 -Wno-deprecated
- MFLAGS = -MM -Wno-deprecated
+ CC = g++
+-CCFLAGS = -O3 -Wall -Wno-parentheses
++CCFLAGS = -O2 -Wall -Wno-parentheses
+ MFLAGS = -MM
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 +29,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 +59,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.4-transitional/unstable/main/finkinfo/sci/roofitmodels.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- roofitmodels.patch 27 Apr 2005 03:26:22 -0000 1.1
+++ roofitmodels.patch 9 Jun 2005 02:35:24 -0000 1.2
@@ -1,24 +1,18 @@
---- 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 2005-04-04 08:00:05.000000000
-0700
++++ RooFitModels.new/GNUmakefile.standalone 2005-06-08 18:00:01.000000000
-0700
+@@ -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
+-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)}')
@@ -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) \
++ -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)
-@@ -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.4-transitional/unstable/main/finkinfo/sci/roofitmodels.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- roofitmodels.info 27 Apr 2005 03:26:22 -0000 1.1
+++ roofitmodels.info 9 Jun 2005 02:35:24 -0000 1.2
@@ -1,6 +1,6 @@
Info2: <<
Package: roofitmodels-%type_pkg[root_version]
-Type: root_version (root3 root4)
+Type: root_version (root4)
Description: Models of physics event distributions
DescDetail: <<
This package provides contributed PDFs (Probability Density Functions)
@@ -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: 51
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.4-transitional/unstable/main/finkinfo/sci/roofitcore.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- roofitcore.info 27 Apr 2005 03:26:22 -0000 1.1
+++ roofitcore.info 9 Jun 2005 02:35:24 -0000 1.2
@@ -1,6 +1,6 @@
Info2: <<
Package: roofitcore-%type_pkg[root_version]
-Type: root_version (root3 root4)
+Type: root_version (root4)
Description: Toolkit for modeling physics event distributions
DescDetail: <<
The core package provides tools to perform likelihood fits, produce
@@ -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: 51
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: NEC IT Guy Games. How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits