diff options
Diffstat (limited to 'misc/floatator/Makefile')
-rw-r--r-- | misc/floatator/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/misc/floatator/Makefile b/misc/floatator/Makefile new file mode 100644 index 000000000000..b4234562ea6d --- /dev/null +++ b/misc/floatator/Makefile @@ -0,0 +1,27 @@ +# ex:ts=8 +# Ports collection makefile for: floatator +# Date created: Jun 1, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= floatator +PORTVERSION= 0.2.1 +CATEGORIES= misc +MASTER_SITES= http://www.cichon.com/floatator/download/ + +MAINTAINER= ports@FreeBSD.org + +USE_XLIB= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +post-patch: + @${PERL} -pi -e "s,^CC,#CC,g ; s,^CFLAGS,#CFLAGS,g" ${WRKSRC}/Makefile + +do-install: +.for f in floatator floatator_X_interface + ${INSTALL_PROGRAM} ${WRKSRC}/$f ${PREFIX}/bin +.endfor + +.include <bsd.port.mk> |