the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: scid
Version: 3.5
Revision: 1001
GCC: 4.0
BuildDepends: tcltk-dev (>= 8.4), x11-dev
Depends: tcltk (>= 8.4)
Recommends: chess-tex
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: 0748b222ec1c06a5a1764e6515e04e70
Patch: %n.patch
CompileScript: <<
make prefix=%p
<<
DocFiles: CHANGES COPYING README THANKS
Description: Chess Information Database
DescDetail: <<
SCID (Shane's Chess Information Database) is a graphical chess data base
application.
<<
DescPort: <<
The configure mechanism and the Makefile included didn't seem
to have been very portable, so I bypassed the configure entirely.
<<
DescUsage: <<
chess-tex is really useful if you want to work with LaTeX, but did not
warrant pulling in teTeX.
<<
License: GPL
Maintainer: Matthias Neeracher
Homepage: http://scid.sourceforge.net
diff -ru scid-3.4-orig/Makefile scid-3.4/Makefile
--- scid-3.4-orig/Makefile Wed Feb 5 14:35:38 2003
+++ scid-3.4/Makefile Wed Feb 5 14:37:43 2003
@@ -2,23 +2,24 @@
### Compiler: Most Unix systems use g++ for compiling and linking.
#
-COMPILE = g++
-CC = gcc
-LINK = g++
+COMPILE = c++
+CC = cc
+LINK = c++
DESTDIR =
+prefix = /usr/local
# BINDIR: where the Scid programs are copied for "make install".
#
-BINDIR = /usr/local/bin
+BINDIR = $(prefix)/bin
# SHAREDIR: where scid.eco and spelling.ssp are copied for "make install".
#
-SHAREDIR = /usr/local/share/scid
+SHAREDIR = $(prefix)/share/scid
### TCL_VERSION: Set this according to the version of Tcl/Tk you have
# installed that you want Scid to use: 8.0, 8.1, 8.2, 8.3, etc.
#
-TCL_VERSION = 8.3
+TCL_VERSION = 8.4
# TCL_INCLUDE, TCL_LIBRARY, TK_LIBRARY: these are the compiler options
# needed for linking Scid with Tcl/Tk. The program "./configure"
@@ -27,15 +28,15 @@
#
# You have not run "./configure" yet. The default settings are:
#
-TCL_INCLUDE = -I/usr/include
-TCL_LIBRARY = -L/usr/lib -ltcl$(TCL_VERSION) -ldl
+TCL_INCLUDE = -I$(prefix)/include -I/usr/X11R6/include
+TCL_LIBRARY = -L$(prefix)/lib -ltcl$(TCL_VERSION) -ldl
TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L/usr/X11R6/lib -lX11
### Here are other commonly used settings for the Tcl/Tk compiler options:
### Linux (Red Hat and other distributions):
-# TCL_INCLUDE = -I /usr/include
-# TCL_LIBRARY = -L /usr/lib -ltcl$(TCL_VERSION) -ldl
+# TCL_INCLUDE = -I $(prefix)/include
+# TCL_LIBRARY = -L $(prefix)/lib -ltcl$(TCL_VERSION) -ldl
# TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L /usr/X11R6/lib -lX11
### Solaris:
@@ -183,6 +184,7 @@
old-install: all
chmod 755 scid $(SCRIPTS) $(EXECS)
+ -mkdir -p $(BINDIR)
cp scid $(SCRIPTS) $(EXECS) $(BINDIR)
-mkdir -p $(SHAREDIR)
-chmod a+rx $(SHAREDIR)
Only in scid-3.4: Makefile.rej
Only in scid-3.4: Makefile~
Package: scid
Version: 3.6.1
Revision: 1001
GCC: 4.0
BuildDepends: tcltk-dev (>= 8.4), x11-dev, guile18-dev
Depends: tcltk (>= 8.4), guile18-shlibs
Recommends: chess-tex
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: 3c9483a7990a2629a35a787c1c29eee0
Patch: %n.patch
CompileScript: <<
make prefix=%p
<<
DocFiles: CHANGES COPYING README THANKS
Description: Chess Information Database
DescDetail: <<
SCID (Shane's Chess Information Database) is a graphical chess data base
application.
<<
DescPort: <<
The configure mechanism and the Makefile included didn't seem
to have been very portable, so I bypassed the configure entirely.
<<
DescUsage: <<
chess-tex is really useful if you want to work with LaTeX, but did not
warrant pulling in teTeX.
<<
License: GPL
Maintainer: Matthias Neeracher
Homepage: http://scid.sourceforge.net
diff -ru scid-3.4-orig/Makefile scid-3.4/Makefile
--- scid-3.4-orig/Makefile Wed Feb 5 14:35:38 2003
+++ scid-3.4/Makefile Wed Feb 5 14:37:43 2003
@@ -2,23 +2,24 @@
### Compiler: Most Unix systems use g++ for compiling and linking.
#
-COMPILE = g++
-CC = gcc
-LINK = g++
+COMPILE = c++
+CC = cc
+LINK = c++
DESTDIR =
+prefix = /usr/local
# BINDIR: where the Scid programs are copied for "make install".
#
-BINDIR = /usr/local/bin
+BINDIR = $(prefix)/bin
# SHAREDIR: where scid.eco and spelling.ssp are copied for "make install".
#
-SHAREDIR = /usr/local/share/scid
+SHAREDIR = $(prefix)/share/scid
### TCL_VERSION: Set this according to the version of Tcl/Tk you have
# installed that you want Scid to use: 8.0, 8.1, 8.2, 8.3, etc.
#
-TCL_VERSION = 8.3
+TCL_VERSION = 8.4
# TCL_INCLUDE, TCL_LIBRARY, TK_LIBRARY: these are the compiler options
# needed for linking Scid with Tcl/Tk. The program "./configure"
@@ -27,15 +28,15 @@
#
# You have not run "./configure" yet. The default settings are:
#
-TCL_INCLUDE = -I/usr/include
-TCL_LIBRARY = -L/usr/lib -ltcl$(TCL_VERSION) -ldl
+TCL_INCLUDE = -I$(prefix)/include -I/usr/X11R6/include
+TCL_LIBRARY = -L$(prefix)/lib -ltcl$(TCL_VERSION) -ldl
TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L/usr/X11R6/lib -lX11
### Here are other commonly used settings for the Tcl/Tk compiler options:
### Linux (Red Hat and other distributions):
-# TCL_INCLUDE = -I /usr/include
-# TCL_LIBRARY = -L /usr/lib -ltcl$(TCL_VERSION) -ldl
+# TCL_INCLUDE = -I $(prefix)/include
+# TCL_LIBRARY = -L $(prefix)/lib -ltcl$(TCL_VERSION) -ldl
# TK_LIBRARY = $(TCL_LIBRARY) -ltk$(TCL_VERSION) -L /usr/X11R6/lib -lX11
### Solaris:
@@ -183,6 +184,7 @@
old-install: all
chmod 755 scid $(SCRIPTS) $(EXECS)
+ -mkdir -p $(BINDIR)
cp scid $(SCRIPTS) $(EXECS) $(BINDIR)
-mkdir -p $(SHAREDIR)
-chmod a+rx $(SHAREDIR)
Only in scid-3.4: Makefile.rej
Only in scid-3.4: Makefile~