diff options
Diffstat (limited to 'german')
-rw-r--r-- | german/dict/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/german/dict/Makefile b/german/dict/Makefile index 92b32d73048e..c9aefd36e13b 100644 --- a/german/dict/Makefile +++ b/german/dict/Makefile @@ -3,21 +3,24 @@ # Date created: 6 August 1997 # Whom: wosch # -# $Id: Makefile,v 1.7 1997/04/30 03:18:08 asami Exp $ - +# $Id: Makefile,v 1.1.1.1 1997/08/06 19:17:46 wosch Exp $ +# DISTNAME= dict-1.0 CATEGORIES= german MASTER_SITES= http://www.apfel.de/~wosch/src/ -dict= eng2germ.dict DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${dict}.gz + +MAINTAINER= wosch@FreeBSD.org + RUN_DEPENDS= ${PORTSDIR}/textproc/agrep + EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= wosch@FreeBSD.org +dict= eng2germ.dict post-extract: ${dict} ${dict}: - gzip -d < ${DISTDIR}/${dict}.gz > ${WRKSRC}/${.TARGET} + ${GZIP_CMD} -d < ${DISTDIR}/${dict}.gz > ${WRKSRC}/${.TARGET} .include <bsd.port.mk> |