1998-02-28 03:38:33 +00:00
|
|
|
# New ports collection makefile for: siag (Scheme In A Grid)
|
|
|
|
# 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
|
|
|
#
|
|
|
|
|
2000-04-14 07:20:58 +00:00
|
|
|
PORTNAME= siag
|
2001-09-30 21:28:39 +00:00
|
|
|
PORTVERSION= 3.4.10
|
1998-02-28 03:38:33 +00:00
|
|
|
CATEGORIES= math
|
2001-09-30 21:28:39 +00:00
|
|
|
MASTER_SITES= http://siag.nu/pub/siag/ \
|
|
|
|
ftp://ftp.siag.nu/pub/siag/ \
|
|
|
|
${MASTER_SITE_SUNSITE} \
|
|
|
|
ftp://ftp.edu.stockholm.se/pub/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
|
|
|
|
2000-09-05 18:34:52 +00:00
|
|
|
LIB_DEPENDS= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d \
|
2001-09-30 21:28:39 +00:00
|
|
|
sdb:${PORTSDIR}/databases/libsdb \
|
(1) Add new variable, XFREE86_VERSION, to specify which version of
XFree86 (3 or 4) to depend to when USE_XLIB is set.
XFREE86_VERSION defaults to 3 for now, but adventurous users can
override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB
will add a dependency to x11/XFree86; when it is set to 4, the
dependency will be to x11/XFree86-4-libraries. When
XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS
hacks to avoid messing with XFree86 are turned off.
Since XFree86 version 4 includes some software that used to be
separate ports, when XFREE86_VERSION=3 the following variables are
provided:
USE_DGS LIB_DEPENDS on x11/dgs
USE_FREETYPE LIB_DEPENDS on print/freetype
USE_MESA LIB_DEPENDS on graphics/Mesa3
USE_XPM LIB_DEPENDS on graphics/xpm
When XFREE86_VERSION=4, these variables have no effect. The
LIB_DEPENDS in the tree for the above four ports have all been
converted to the USE_* counterparts. For your information, this
is the count of the number of ports:
USE_DGS 0
USE_FREETYPE 16
USE_MESA 36
USE_XPM 236
There is a new variable, XAWVER, which is set to 6 when
XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also
passed to PLIST_SUB so ports that build Xaw based shared libraries
can use this variable to substitute the shlib version number.
There is also a provision of using a separate mtree file for
XFREE86_VERSION=4, but that part is not enabled yet.
Reviewed by: the ports list
Tested by: make index (XFREE86_VERSION=3 only)
(2) Add hebrew to list of valid categories.
Submitted by: nbm
2000-08-03 09:28:57 +00:00
|
|
|
Magick:${PORTSDIR}/graphics/ImageMagick
|
1999-09-11 00:46:39 +00:00
|
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot \
|
2001-09-30 21:28:39 +00:00
|
|
|
wvHtml:${PORTSDIR}/textproc/wv \
|
|
|
|
gv:${PORTSDIR}/print/gv \
|
1999-06-25 21:17:46 +00:00
|
|
|
catdoc:${PORTSDIR}/textproc/catdoc
|
1998-08-10 12:35:43 +00:00
|
|
|
|
2001-09-30 21:28:39 +00:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libccm.a:${PORTSDIR}/math/ccmath
|
|
|
|
LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm \
|
|
|
|
t1:${PORTSDIR}/devel/t1lib \
|
|
|
|
tcl83:${PORTSDIR}/lang/tcl83
|
|
|
|
|
1999-04-20 00:02:11 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2001-09-30 21:28:39 +00:00
|
|
|
CONFIGURE_ARGS+=--with-tcl=tcl83 --with-xawm="-L${X11BASE} -lXaw3d" \
|
|
|
|
--with-ndbm=gdbm \
|
|
|
|
--without-gmp --with-sqlite --with-ccmath --with-t1lib
|
|
|
|
CPPFLAGS+= -DGDBM -I${LOCALBASE}/include -DX11BASE='\"${X11BASE}\"' \
|
|
|
|
-I${LOCALBASE}/include/tcl8.3
|
|
|
|
CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \
|
|
|
|
LDFLAGS=-L${LOCALBASE}/lib \
|
|
|
|
CPPFLAGS="${CPPFLAGS}"
|
2000-04-30 19:16:54 +00:00
|
|
|
MAKE_ARGS= "-j 2"
|
1999-06-25 21:17:46 +00:00
|
|
|
|
2001-09-30 21:28:39 +00:00
|
|
|
.if defined(WITH_GUILE) || defined(GUILE)
|
2000-08-04 01:05:13 +00:00
|
|
|
LIB_DEPENDS+= guile.9:${PORTSDIR}/lang/guile
|
1999-06-25 21:17:46 +00:00
|
|
|
.endif
|
|
|
|
|
1998-08-05 09:31:52 +00:00
|
|
|
USE_X_PREFIX= yes
|
(1) Add new variable, XFREE86_VERSION, to specify which version of
XFree86 (3 or 4) to depend to when USE_XLIB is set.
XFREE86_VERSION defaults to 3 for now, but adventurous users can
override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB
will add a dependency to x11/XFree86; when it is set to 4, the
dependency will be to x11/XFree86-4-libraries. When
XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS
hacks to avoid messing with XFree86 are turned off.
Since XFree86 version 4 includes some software that used to be
separate ports, when XFREE86_VERSION=3 the following variables are
provided:
USE_DGS LIB_DEPENDS on x11/dgs
USE_FREETYPE LIB_DEPENDS on print/freetype
USE_MESA LIB_DEPENDS on graphics/Mesa3
USE_XPM LIB_DEPENDS on graphics/xpm
When XFREE86_VERSION=4, these variables have no effect. The
LIB_DEPENDS in the tree for the above four ports have all been
converted to the USE_* counterparts. For your information, this
is the count of the number of ports:
USE_DGS 0
USE_FREETYPE 16
USE_MESA 36
USE_XPM 236
There is a new variable, XAWVER, which is set to 6 when
XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also
passed to PLIST_SUB so ports that build Xaw based shared libraries
can use this variable to substitute the shlib version number.
There is also a provision of using a separate mtree file for
XFREE86_VERSION=4, but that part is not enabled yet.
Reviewed by: the ports list
Tested by: make index (XFREE86_VERSION=3 only)
(2) Add hebrew to list of valid categories.
Submitted by: nbm
2000-08-03 09:28:57 +00:00
|
|
|
USE_XPM= yes
|
1998-07-06 17:41:18 +00:00
|
|
|
|
2000-04-30 19:16:54 +00:00
|
|
|
MAN1= xedplus.1 xfiler.1 gvu.1 siod.1 siag.1 pw.1 egon.1 \
|
|
|
|
dummy_plugin.1 runcmd.1
|
1999-06-25 21:17:46 +00:00
|
|
|
|
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
|
2000-04-30 19:16:54 +00:00
|
|
|
# invocation of pw(8) (which is in /usr/sbin).
|
1999-06-25 21:17:46 +00:00
|
|
|
@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
|
2001-09-30 21:28:39 +00:00
|
|
|
${PERL} -pi -e 's@doc/siag@share/doc/siag@' \
|
|
|
|
`find ${WRKSRC} -name Makefile.in | \
|
|
|
|
xargs ${GREP} -l doc\\/siag`
|
|
|
|
# Fixing Makefile.in to remove hardcoded references to Xawm
|
|
|
|
${PERL} -pi -e 's/ XawM//g' ${WRKSRC}/Makefile.in
|
1998-02-28 03:38:33 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|