diff options
author | pat <pat@FreeBSD.org> | 2002-01-02 12:16:51 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-02 12:16:51 +0800 |
commit | 543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e (patch) | |
tree | 09358f3b37255b97a358ba5c645a6ba3d61f221c /graphics/xmandel/Makefile | |
parent | e14aab3c1c36a15c1f30e7bdda043c0b3ab152b4 (diff) | |
download | freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.tar.gz freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.tar.zst freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.zip |
Fix for -CURRENT, malloc.h->stdlib.h
Spotted by: Bento
Diffstat (limited to 'graphics/xmandel/Makefile')
-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> |