diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-01-02 04:16:51 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-01-02 04:16:51 +0000 |
commit | b50c44981d13d21fa7acbcd57908a0fbd663b054 (patch) | |
tree | ed1663d82eb627c5d6bbdbfa52f7eb978d7e3cfa /graphics/xmandel | |
parent | 27d4bf81121a3da5af90914796392ee0170915c1 (diff) | |
download | ports-b50c44981d13d21fa7acbcd57908a0fbd663b054.tar.gz ports-b50c44981d13d21fa7acbcd57908a0fbd663b054.zip |
Notes
Diffstat (limited to 'graphics/xmandel')
-rw-r--r-- | graphics/xmandel/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/graphics/xmandel/Makefile b/graphics/xmandel/Makefile index 0a20fea7ad04..402b8c8e651a 100644 --- a/graphics/xmandel/Makefile +++ b/graphics/xmandel/Makefile @@ -9,18 +9,21 @@ PORTNAME= xmandel PORTVERSION= 1.0 CATEGORIES= graphics MASTER_SITES= ftp://ftp.cray.com/src/graphics/xmandel/ -EXTRACT_SUFX= .shar # The README says the location is ftp.cray.com:/usr/ftp/src/graphics/xmandel, # but this has changed apparently. DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .shar -EXTRACT_CMD= sh +MAINTAINER= andreas@marvin.robin.de + +EXTRACT_CMD= ${SH} EXTRACT_BEFORE_ARGS= # empty EXTRACT_AFTER_ARGS= # empty USE_IMAKE= yes NO_WRKSUBDIR= yes MAN1= xmandel.1 -MAINTAINER= andreas@marvin.robin.de +pre-patch: + @${PERL} -pi.orig -e 's|malloc.h|stdlib.h|' ${WRKSRC}/mandel.c .include <bsd.port.mk> |