summaryrefslogtreecommitdiff
path: root/misc/root/Makefile
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>1999-11-17 16:17:03 +0000
committerdrochner <drochner@pkgsrc.org>1999-11-17 16:17:03 +0000
commitfa3c8c417b2ff97c07e10c868ff5284e738480be (patch)
treed43bc34ae71abc7b74dd927167354ce200bf5e5b /misc/root/Makefile
parente98596a0c46294e5129f55152d5a5260392ee6eb (diff)
downloadpkgsrc-fa3c8c417b2ff97c07e10c868ff5284e738480be.tar.gz
import ROOT pkg
citing pkg/DESCR: The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyse large amounts of data in a very efficient way. Having the data defined as a set of objects, specialised storage methods are used to get direct access to the separate attributes of the selected objects, without having to touch the bulk of the data. Included are histograming methods in 1, 2 and 3 dimensions, curve fitting, function evaluation, minimisation, graphics and visualization classes to allow the easy setup of an analysis system that can query and process the data interactively or in batch mode. Thanks to the builtin CINT C++ interpreter the command language, the scripting, or macro, language and the programming language are all C++. The interpreter allows for fast prototyping of the macros since it removes the time consuming compile/link cycle. It also provides a good environment to learn C++. If more performance is needed the interactively developed macros can be compiled using a C++ compiler. It's not yet perfect - pixmap/icon files are missing because these are not part of the ROOT source distribution. Most things work anyway.
Diffstat (limited to 'misc/root/Makefile')
-rw-r--r--misc/root/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/misc/root/Makefile b/misc/root/Makefile
new file mode 100644
index 00000000000..6ebd8e1fdaf
--- /dev/null
+++ b/misc/root/Makefile
@@ -0,0 +1,34 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/11/17 16:17:03 drochner Exp $
+
+DISTNAME= root_v2.23.08.source
+PKGNAME= root-2.23
+NO_WRKSUBDIR= yes
+CATEGORIES= misc
+MASTER_SITES= ftp://root.cern.ch/root/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://root.cern.ch/
+
+BUILD_DEPENDS+= cint:../../lang/cint
+DEPENDS+= xpm-*:../../graphics/xpm
+
+USE_GMAKE= yes
+ALL_TARGET= netbsd
+MAKE_ENV= LD_LIBRARY_PATH=$(WRKDIR)/lib ROOTSYS=$(WRKDIR)
+
+do-configure:
+ $(CP) $(FILESDIR)/Makefile.netbsd $(WRKDIR)/src
+ $(MKDIR) $(WRKDIR)/bin
+ $(MKDIR) $(WRKDIR)/lib
+ $(CP) $(PREFIX)/cint/MAKEINFO $(WRKDIR)/cint
+ $(CP) $(PREFIX)/cint/include/iosenum.h $(WRKDIR)/cint/include
+
+do-install:
+ $(MKDIR) $(PREFIX)/root
+ $(MKDIR) $(PREFIX)/root/include
+ (cd $(WRKDIR)/src; $(CP) *.h MAIN_rmain.cxx $(PREFIX)/root/include)
+ (cd $(WRKDIR); tar cf - lib bin cint)|(cd $(PREFIX)/root;tar xf -)
+ $(SED) "s;XXXPREFIXXXX;$(PREFIX);g" <$(FILESDIR)/root.sh >$(PREFIX)/bin/root
+ $(CHMOD) +x $(PREFIX)/bin/root
+
+.include "../../mk/bsd.pkg.mk"