39 lines
700 B
Makefile
39 lines
700 B
Makefile
|
COMMENT-main= convert MS Word, Excel, Powerpoint to ASCII or TeX
|
||
|
COMMENT-tk= viewer for MS Word files
|
||
|
|
||
|
V= 0.95
|
||
|
DISTNAME= catdoc-$V
|
||
|
PKGNAME-main= catdoc-$V
|
||
|
PKGNAME-tk= wordview-$V
|
||
|
PKG_ARCH-tk= *
|
||
|
CATEGORIES= textproc
|
||
|
MASTER_SITES= http://ftp.wagner.pp.ru/pub/catdoc/
|
||
|
|
||
|
HOMEPAGE= http://wagner.pp.ru/~vitus/software/catdoc/
|
||
|
|
||
|
# GPLv2
|
||
|
PERMIT_PACKAGE= Yes
|
||
|
|
||
|
MULTI_PACKAGES= -main
|
||
|
PSEUDO_FLAVORS= no_x11
|
||
|
FLAVOR?=
|
||
|
|
||
|
WANTLIB-main= c m
|
||
|
|
||
|
.if ${FLAVOR:Mno_x11}
|
||
|
CONFIGURE_ARGS+=--disable-wordview
|
||
|
.else
|
||
|
MODULES= x11/tk
|
||
|
MULTI_PACKAGES+=-tk
|
||
|
CONFIGURE_ARGS+=--with-wish=${MODTK_BIN}
|
||
|
.endif
|
||
|
|
||
|
RUN_DEPENDS-tk= textproc/catdoc,-main \
|
||
|
${MODTK_RUN_DEPENDS}
|
||
|
|
||
|
CONFIGURE_STYLE=gnu dest
|
||
|
|
||
|
NO_TEST= Yes
|
||
|
|
||
|
.include <bsd.port.mk>
|