diff options
author | billf <billf@FreeBSD.org> | 1999-06-05 07:15:08 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-06-05 07:15:08 +0800 |
commit | 72b17ce45b0a15ca26873605c6f7807144d96355 (patch) | |
tree | 098c1d9e23a444027f4afdbe9d51cd96dbf6c6e9 /textproc/catdoc/Makefile | |
parent | f36423d8c5f813e0e37c8ada858ee05e702eceaf (diff) | |
download | freebsd-ports-gnome-72b17ce45b0a15ca26873605c6f7807144d96355.tar.gz freebsd-ports-gnome-72b17ce45b0a15ca26873605c6f7807144d96355.tar.zst freebsd-ports-gnome-72b17ce45b0a15ca26873605c6f7807144d96355.zip |
Upgrade to 0.90.2, add MASTER_SITE_TEX_CTAN, try some logic with the
wordview tk logic. I don't think the --disable-wordview is working as
advertised, however.
PR(kinda): ports/11826
Submitted by: fenner, hoek, billf
Diffstat (limited to 'textproc/catdoc/Makefile')
-rw-r--r-- | textproc/catdoc/Makefile | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/textproc/catdoc/Makefile b/textproc/catdoc/Makefile index a8b4a9939f53..d26d1a0286f7 100644 --- a/textproc/catdoc/Makefile +++ b/textproc/catdoc/Makefile @@ -3,19 +3,28 @@ # Date created: 11 November 1997 # Whom: Brion Moss <brion@queeg.com> # -# $Id: Makefile,v 1.6 1998/12/22 03:03:31 jseger Exp $ +# $Id: Makefile,v 1.7 1998/12/27 04:21:58 billf Exp $ # -DISTNAME= catdoc-0.90.1 +DISTNAME= catdoc-0.90.2 CATEGORIES= textproc -MASTER_SITES= ftp://ftp.ice.ru/pub/vitus/ \ - http://www.FreeBSD.org/~billf/ +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} \ + ftp://ftp.ice.ru/pub/vitus/ +MASTER_SITE_SUBDIR= support/catdoc MAINTAINER= brion@queeg.com GNU_CONFIGURE= yes MAN1= catdoc.1 +.if exists(${PREFIX}/bin/wish8.0) +CONFIGURE_ARGS+= --with-wish=${PREFIX}/bin/wish8.0 +.elseif exists(${PREFIX}/bin/wish8.1) +CONFIGURE_ARGS+= --with-wish=${PREFIX}/bin/wish8.1 +.else +CONFIGURE_ARGS+= --disable-wordview +.endif + .if !defined(LANG) || ${LANG} != ru_RU.KOI8-R # Remove the below line to get Cyrillic code page support instead CFLAGS+= -DLATIN1=1 |