diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-08-13 05:09:22 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-08-13 05:09:22 +0000 |
commit | 30cfb89df0d87c569ec0a19de9762dcbf2aa6edd (patch) | |
tree | cd78b328e6febc30a2271c999ca85da8214a7637 | |
parent | 53578ed739e72acac824ace904a1900fabfe1c7b (diff) | |
download | ports-30cfb89df0d87c569ec0a19de9762dcbf2aa6edd.tar.gz ports-30cfb89df0d87c569ec0a19de9762dcbf2aa6edd.zip |
Notes
-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> |