1998-02-28 03:38:33 +00:00
|
|
|
# New ports collection makefile for: siag (Scheme In A Grid)
|
1999-06-25 21:17:46 +00:00
|
|
|
# Version required: 3.1.18
|
1998-02-28 03:38:33 +00:00
|
|
|
# Date created: 27 Jan 1998
|
1999-06-25 21:17:46 +00:00
|
|
|
# Whom: mi@aldan.algebra.com
|
1998-02-28 03:38:33 +00:00
|
|
|
#
|
1999-08-25 07:23:21 +00:00
|
|
|
# $FreeBSD$
|
1998-02-28 03:38:33 +00:00
|
|
|
#
|
|
|
|
|
1999-06-25 21:17:46 +00:00
|
|
|
DISTNAME= siag-3.1.18
|
1998-02-28 03:38:33 +00:00
|
|
|
CATEGORIES= math
|
1999-04-20 00:02:11 +00:00
|
|
|
MASTER_SITES= ftp://ftp.edu.stockholm.se/pub/siag/ \
|
|
|
|
ftp://ftp.icm.edu.pl/site/siag/
|
1998-02-28 03:38:33 +00:00
|
|
|
|
1999-06-25 21:30:04 +00:00
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
1998-02-28 03:38:33 +00:00
|
|
|
|
1999-11-29 03:50:47 +00:00
|
|
|
BROKEN= 'only siag-3.1.22.tar.gz available'
|
1999-07-04 10:43:39 +00:00
|
|
|
|
1998-11-29 13:09:40 +00:00
|
|
|
LIB_DEPENDS= Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d \
|
1999-06-25 21:17:46 +00:00
|
|
|
Xpm.4:${PORTSDIR}/graphics/xpm
|
1999-09-11 00:46:39 +00:00
|
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot \
|
1999-06-25 21:17:46 +00:00
|
|
|
catdoc:${PORTSDIR}/textproc/catdoc
|
1998-08-10 12:35:43 +00:00
|
|
|
|
1999-04-20 00:02:11 +00:00
|
|
|
GNU_CONFIGURE= yes
|
1999-06-25 21:17:46 +00:00
|
|
|
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
|
|
|
|
.if defined(GUILE)
|
1999-11-29 02:37:54 +00:00
|
|
|
LIB_DEPENDS+= guile.6:${PORTSDIR}/lang/guile
|
1999-06-25 21:17:46 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOGDBM)
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm
|
|
|
|
CPPFLAGS+= -DGDBM
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOT1)
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libt1.a:${PORTSDIR}/devel/t1lib
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOTCL)
|
|
|
|
# Feel free to try other versions of TCL here:
|
1999-11-29 03:50:47 +00:00
|
|
|
LIB_DEPENDS+= tcl82:${PORTSDIR}/lang/tcl82
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include/tcl8.2
|
|
|
|
CONFIGURE_ARGS+=--with-tcl=tcl82
|
1999-06-25 21:17:46 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \
|
|
|
|
LDFLAGS=-L${LOCALBASE}/lib \
|
|
|
|
CPPFLAGS="${CPPFLAGS}"
|
|
|
|
|
1998-08-05 09:31:52 +00:00
|
|
|
USE_X_PREFIX= yes
|
1998-07-06 17:41:18 +00:00
|
|
|
|
1999-06-25 21:17:46 +00:00
|
|
|
MAN1= xedplus.1 xfiler.1 gvu.1 siod.1 siag.1 pw.1 egon.1 dummy_plugin.1
|
|
|
|
|
1998-07-06 17:41:18 +00:00
|
|
|
post-install:
|
1999-06-25 21:17:46 +00:00
|
|
|
# Examples and documentation went into ${PREFIX}/share/doc
|
|
|
|
# Note, that the Siag's wordprocessor. the Pathetic Writer (or
|
|
|
|
# pw) is installed in ${PREFIX}/bin/pw. Depending on your
|
|
|
|
# users' PATH it may or may not interfere with simple
|
|
|
|
# invocation of /usr/sbin/pw.
|
|
|
|
@test -e ${PREFIX}/lib/X11/app-defaults/Siag && ${ECHO} \
|
|
|
|
"It seems, you have old app-defaults file(s) from Siag.\
|
|
|
|
Consider removing it(them) if new siag fails to come up" |\
|
1999-08-23 04:23:59 +00:00
|
|
|
fmt || ${TRUE}
|
1999-06-25 21:17:46 +00:00
|
|
|
|
|
|
|
post-patch:
|
|
|
|
# Fixing makefiles to put docs in ${LOCALBASE}/share/doc/siag
|
|
|
|
for m in `find ${WRKSRC} -name Makefile.in |\
|
|
|
|
xargs ${GREP} -l doc\\/siag`; do \
|
|
|
|
${MV} $$m $$m.orig; \
|
|
|
|
${SED} s@doc/siag@share/doc/siag@ < $$m.orig > $$m; \
|
|
|
|
done
|
1998-02-28 03:38:33 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|