mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
cernlib: init at 2006
This commit is contained in:
parent
d0f2361bc1
commit
6e95e2a161
63
pkgs/development/libraries/physics/cernlib/default.nix
Normal file
63
pkgs/development/libraries/physics/cernlib/default.nix
Normal file
@ -0,0 +1,63 @@
|
||||
{ stdenv, fetchurl, gfortran, gnumake, imake, makedepend, motif, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2006";
|
||||
name = "cernlib-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://cernlib.web.cern.ch/cernlib/download/${version}_source/tar/${version}_src.tar.gz";
|
||||
sha256 = "0awla1rl96z82br7slcmg8ks1d2a7slk6dj79ywb871j2ksi3fky";
|
||||
};
|
||||
|
||||
buildInputs = with xorg; [ gfortran motif libX11 libXft libXt ];
|
||||
nativeBuildInputs = [ gnumake imake makedepend ];
|
||||
sourceRoot = ".";
|
||||
|
||||
patches = [ ./patch ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace 2006/src/config/site.def \
|
||||
--replace "# define MakeCmd gmake" "# define MakeCmd make"
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
export CERN=`pwd`
|
||||
export CERN_LEVEL=${version}
|
||||
export CERN_ROOT=$CERN/$CERN_LEVEL
|
||||
export CVSCOSRC=`pwd`/$CERN_LEVEL/src
|
||||
export PATH=$PATH:$CERN_ROOT/bin
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
cd $CERN_ROOT
|
||||
mkdir -p build bin lib
|
||||
|
||||
cd $CERN_ROOT/build
|
||||
$CVSCOSRC/config/imake_boot
|
||||
make bin/kuipc
|
||||
make scripts/Makefile
|
||||
pushd scripts
|
||||
make install.bin
|
||||
popd
|
||||
make
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir "$out"
|
||||
cp -r "$CERN_ROOT/bin" "$out"
|
||||
cp -r "$CERN_ROOT/lib" "$out"
|
||||
mkdir "$out/$CERN_LEVEL"
|
||||
ln -s "$out/bin" "$out/$CERN_LEVEL/bin"
|
||||
ln -s "$out/lib" "$out/$CERN_LEVEL/lib"
|
||||
'';
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
homepage = http://cernlib.web.cern.ch;
|
||||
description = "Legacy collection of libraries and modules for data analysis in high energy physics";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
186
pkgs/development/libraries/physics/cernlib/patch
Normal file
186
pkgs/development/libraries/physics/cernlib/patch
Normal file
@ -0,0 +1,186 @@
|
||||
diff --git a/2006/src/config/Imake.tmpl b/2006/src/config/Imake.tmpl
|
||||
index 054fb04..a3b3828 100644
|
||||
--- a/2006/src/config/Imake.tmpl
|
||||
+++ b/2006/src/config/Imake.tmpl
|
||||
@@ -455,7 +455,7 @@ XCOMM the platform-specific parameters - edit site.def to change
|
||||
#define NoRConst NO /* YES if const for structs of funcs is bad */
|
||||
#endif
|
||||
#ifndef InstPgmFlags
|
||||
-#define InstPgmFlags -s
|
||||
+#define InstPgmFlags
|
||||
#endif
|
||||
#ifndef InstBinFlags
|
||||
#define InstBinFlags -m 0755
|
||||
diff --git a/2006/src/config/biglib.rules b/2006/src/config/biglib.rules
|
||||
index c90e58a..9173bdc 100644
|
||||
--- a/2006/src/config/biglib.rules
|
||||
+++ b/2006/src/config/biglib.rules
|
||||
@@ -368,7 +368,7 @@ define build-object-list @@\
|
||||
@ (set -e;\ @@\
|
||||
case '${MFLAGS}' in *[i]*) set +e;; esac; \ @@\
|
||||
subdirs=Quote(dirs);\ @@\
|
||||
- list=`/bin/pwd`/$@;\ @@\
|
||||
+ list=`pwd`/$@;\ @@\
|
||||
for dir in $$subdirs; do \ @@\
|
||||
(set -e;cd $$dir;SedCmd -e "\=^[^/]=s=^.=$$dir/&=" $@ >> $$list);\@@\
|
||||
done) || (rm $@; exit 1) @@\
|
||||
diff --git a/2006/src/config/imake_boot b/2006/src/config/imake_boot
|
||||
index b52d0d3..69cf1b3 100755
|
||||
--- a/2006/src/config/imake_boot
|
||||
+++ b/2006/src/config/imake_boot
|
||||
@@ -10,8 +10,8 @@ if [ "$CVSCOSRC" = "" ] ; then
|
||||
fi
|
||||
if [ -f Imakefile ] ; then
|
||||
imake -DUseInstalled -I$CVSCOSRC/config \
|
||||
- -DTOPDIR=`/bin/pwd` -DCURDIR= -fImakefile
|
||||
+ -DTOPDIR=`pwd` -DCURDIR= -fImakefile
|
||||
else
|
||||
imake -DUseInstalled -I$CVSCOSRC/config \
|
||||
- -DTOPDIR=`/bin/pwd` -DCURDIR= -f$CVSCOSRC/Imakefile
|
||||
+ -DTOPDIR=`pwd` -DCURDIR= -f$CVSCOSRC/Imakefile
|
||||
fi
|
||||
diff --git a/2006/src/config/linux-lp64.cf b/2006/src/config/linux-lp64.cf
|
||||
index e071b2f..3cc5c3b 100644
|
||||
--- a/2006/src/config/linux-lp64.cf
|
||||
+++ b/2006/src/config/linux-lp64.cf
|
||||
@@ -173,7 +173,7 @@
|
||||
#define FortranCmd g77
|
||||
#define XargsCmd xargs
|
||||
#define FortranSaveFlags /* */ /* Everything static !? */
|
||||
-#define DefaultFCOptions -fno-automatic -fno-second-underscore -fugly-complex
|
||||
+#define DefaultFCOptions -fno-automatic -fno-second-underscore
|
||||
#define CernlibSystem -DCERNLIB_LINUX -DCERNLIB_UNIX -DCERNLIB_LNX -DCERNLIB_QMGLIBC -DCERNLIB_QMLXIA64
|
||||
|
||||
# endif
|
||||
diff --git a/2006/src/config/linux.cf b/2006/src/config/linux.cf
|
||||
index cc0bee5..a8dd954 100644
|
||||
--- a/2006/src/config/linux.cf
|
||||
+++ b/2006/src/config/linux.cf
|
||||
@@ -258,7 +258,7 @@ endif @@\
|
||||
#define FortranCmd g77
|
||||
#define XargsCmd xargs
|
||||
#define FortranSaveFlags /* */ /* Everything static !? */
|
||||
-#define DefaultFCOptions -fno-automatic -fno-second-underscore -fugly-complex
|
||||
+#define DefaultFCOptions -fno-automatic -fno-second-underscore
|
||||
#define CernlibSystem -DCERNLIB_LINUX -DCERNLIB_UNIX -DCERNLIB_LNX -DCERNLIB_QMGLIBC
|
||||
|
||||
# endif
|
||||
diff --git a/2006/src/packlib/kuip/code_kuip/kkern.c b/2006/src/packlib/kuip/code_kuip/kkern.c
|
||||
index 3a5579f..5f3c352 100644
|
||||
--- a/2006/src/packlib/kuip/code_kuip/kkern.c
|
||||
+++ b/2006/src/packlib/kuip/code_kuip/kkern.c
|
||||
@@ -543,24 +543,6 @@ char *str0dup( const char *str )
|
||||
|
||||
|
||||
/*
|
||||
- * like strdup() but string is n characters long and not terminated
|
||||
- */
|
||||
-char *strndup( const char *str,
|
||||
- size_t len )
|
||||
-{
|
||||
- size_t bytes = len + 1;
|
||||
- char *p;
|
||||
-
|
||||
- if( bytes < ALLOC_MIN_BYTES )
|
||||
- bytes = ALLOC_MIN_BYTES;
|
||||
-
|
||||
- p = strncpy( malloc( bytes ), str, len );
|
||||
- p[len] = '\0';
|
||||
- return p;
|
||||
-}
|
||||
-
|
||||
-
|
||||
-/*
|
||||
* strdup() of character representation of integer n
|
||||
*/
|
||||
char *stridup( int n )
|
||||
diff --git a/2006/src/packlib/kuip/code_kuip/kmenu.c b/2006/src/packlib/kuip/code_kuip/kmenu.c
|
||||
index f135b07..23007a8 100644
|
||||
--- a/2006/src/packlib/kuip/code_kuip/kmenu.c
|
||||
+++ b/2006/src/packlib/kuip/code_kuip/kmenu.c
|
||||
@@ -1404,7 +1404,7 @@ void interactive_find( char *expr, int keym )
|
||||
printf ("See also:\n ");
|
||||
for (i = 0; i < nval; i++) {
|
||||
if (i == ncmd) continue;
|
||||
- printf (flis_name[i]);
|
||||
+ printf ("%s", flis_name[i]);
|
||||
if (i < nval-1)
|
||||
printf (", ");
|
||||
else
|
||||
diff --git a/2006/src/packlib/kuip/kuip/kstring.h b/2006/src/packlib/kuip/kuip/kstring.h
|
||||
index 7811f15..12a1344 100644
|
||||
--- a/2006/src/packlib/kuip/kuip/kstring.h
|
||||
+++ b/2006/src/packlib/kuip/kuip/kstring.h
|
||||
@@ -21,7 +21,6 @@ extern "C" {
|
||||
*/
|
||||
|
||||
#ifndef WIN32
|
||||
-extern void* memmove( void* dst, const void* src, size_t n );
|
||||
#endif
|
||||
|
||||
/* GF. make conform to kkern.c#if !defined(__convexc__)*/
|
||||
@@ -46,7 +45,6 @@ extern char* str4dup( const char* str1, const char* str2, const char* str3,
|
||||
const char* str4 );
|
||||
extern char* str5dup( const char* str1, const char* str2, const char* str3,
|
||||
const char* str4, const char* str5 );
|
||||
-extern char* strndup( const char* buf, size_t n );
|
||||
extern char* stridup( int i );
|
||||
|
||||
extern char* mstrcat( char* ptr, const char* str );
|
||||
diff --git a/2006/src/pawlib/paw/cpaw/bugrep.c b/2006/src/pawlib/paw/cpaw/bugrep.c
|
||||
index d503a45..d26e30f 100644
|
||||
--- a/2006/src/pawlib/paw/cpaw/bugrep.c
|
||||
+++ b/2006/src/pawlib/paw/cpaw/bugrep.c
|
||||
@@ -432,51 +432,7 @@ br_add_config( char * tmp_file )
|
||||
|
||||
static int
|
||||
br_mail_file( char *addr, char *subj, char *file )
|
||||
-#if (defined(CERNLIB_UNIX))&&(!defined(CERNLIB_WINNT))&&(!defined(CERNLIB_MACOSX))
|
||||
-{
|
||||
- FILE *mfp, *fp;
|
||||
- char line[1024], my_addr[L_cuserid];
|
||||
- time_t clock;
|
||||
- struct tm *ts;
|
||||
-
|
||||
- fp = fopen( file, "r" );
|
||||
- if ( fp == NULL ) {
|
||||
- printf( "BUGREPORT: cannot (re)open temporary file\n" );
|
||||
- return MAIL_ERROR;
|
||||
- }
|
||||
-
|
||||
- cuserid( my_addr );
|
||||
-
|
||||
- sprintf( line, "/usr/lib/sendmail -t" );
|
||||
- mfp = popen( line, "w" );
|
||||
-
|
||||
- if ( mfp == NULL ) {
|
||||
- printf( "BUGREPORT: cannot run sendmail\n" );
|
||||
- return MAIL_ERROR;
|
||||
- }
|
||||
-
|
||||
-
|
||||
- clock = time( (time_t *) 0 );
|
||||
- ts = localtime( &clock );
|
||||
- strftime( line, sizeof( line ),
|
||||
- "%a, %d %h %y %H:%M:%S", ts );
|
||||
- fprintf ( mfp, "To: %s\n", addr );
|
||||
- fprintf ( mfp, "Bcc: %s\n", my_addr );
|
||||
- fprintf ( mfp, "Date: %s\n", line );
|
||||
- fprintf ( mfp, "Subject: %s\n", subj );
|
||||
- fprintf ( mfp, "\n" );
|
||||
-
|
||||
- while( fgets( line, sizeof( line ), fp ) != NULL ) {
|
||||
- fputs( line, mfp );
|
||||
- }
|
||||
- fclose( fp );
|
||||
-
|
||||
- pclose( mfp );
|
||||
-
|
||||
- return MAIL_OK;
|
||||
-}
|
||||
-#endif
|
||||
-#if defined(CERNLIB_MACOSX)
|
||||
+#if (defined(CERNLIB_UNIX))&&(!defined(CERNLIB_WINNT))
|
||||
{
|
||||
FILE *mfp, *fp;
|
||||
char line[1024], *my_addr;
|
3
pkgs/development/libraries/physics/cernlib/setup-hook.sh
Normal file
3
pkgs/development/libraries/physics/cernlib/setup-hook.sh
Normal file
@ -0,0 +1,3 @@
|
||||
export CERN_LEVEL=@version@
|
||||
export CERN=@out@
|
||||
export CERN_ROOT=$CERN/$CERN_LEVEL
|
@ -18107,6 +18107,8 @@ with pkgs;
|
||||
motif = null; # motif or lesstif
|
||||
};
|
||||
|
||||
cernlib = callPackage ../development/libraries/physics/cernlib { };
|
||||
|
||||
g4py = callPackage ../development/libraries/physics/geant4/g4py { };
|
||||
|
||||
hepmc = callPackage ../development/libraries/physics/hepmc { };
|
||||
|
Loading…
Reference in New Issue
Block a user