diff options
author | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-03-16 21:17:29 +0000 |
---|---|---|
committer | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-03-16 21:17:29 +0000 |
commit | 966766a5b9ed5632d6b309d37b14413d51a32288 (patch) | |
tree | f4964d9b92209ae33e924e49d9c345305777ad84 /textproc/catdoc/Makefile | |
parent | 242edb68d9289ccb5dd9d1e8f35acfe09a2e743d (diff) | |
download | ports-966766a5b9ed5632d6b309d37b14413d51a32288.tar.gz ports-966766a5b9ed5632d6b309d37b14413d51a32288.zip |
Don't use wcarchive's auto-tar and use DIST_SUBDIR instead.
PR: ports/5832
Notes
Notes:
svn path=/head/; revision=10197
Diffstat (limited to 'textproc/catdoc/Makefile')
-rw-r--r-- | textproc/catdoc/Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/textproc/catdoc/Makefile b/textproc/catdoc/Makefile index 9e8fca5becfa..1efb5aaf0ea4 100644 --- a/textproc/catdoc/Makefile +++ b/textproc/catdoc/Makefile @@ -3,27 +3,31 @@ # Date created: 11 November 1997 # Whom: Brion Moss <brion@queeg.com> # -# $Id: Makefile,v 1.1.1.1 1998/02/12 17:30:28 hoek Exp $ +# $Id: Makefile,v 1.2 1998/02/22 22:26:23 wosch Exp $ # -DISTNAME= catdoc -PKGNAME= catdoc-0.3 +DISTNAME= catdoc-0.3 CATEGORIES= textproc -# Uses on-the-fly tar, which may not work with all of MASTER_SITE_TEX_CTAN. -MASTER_SITES= ftp://ftp.cdrom.com/pub/tex/ctan/support/ -EXTRACT_SUFX= .tar +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= support/catdoc +DISTFILES= catdoc.c catdoc.1 wordview MAINTAINER= brion@queeg.com -EXTRACT_BEFORE_ARGS= -xf -CFLAGS+= -DLATIN1=1 +DIST_SUBDIR= catdoc +NO_WRKSUBDIR= yes +EXTRACT_CMD= ${CP} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= . MAN1= catdoc.1 +# Remove the below line to get Cyrillic code page support instead +CFLAGS+= -DLATIN1=1 + # The wordview tcl/tk script is small and not required. If the user # has tk, it will work. It comes preset for tk-8.0, but works with less. -# You may define LATIN1 in CFLAGS. Little effect. See source. do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o catdoc catdoc.c) |