Gnofract 4D is a free, open source program which allows anyone to create beautiful images called fractals. The images are automatically created by the computer based on mathematical principles. These include the Mandelbrot and Julia sets and many more. You don't need to do any math: you can explore a universe of images just using a mouse. ok sthen@
28 lines
564 B
Makefile
28 lines
564 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/11/14 11:01:16 bentley Exp $
|
|
|
|
COMMENT = fractal image generator
|
|
|
|
DISTNAME = gnofract4d-${MODPY_EGG_VERSION}
|
|
MODPY_EGG_VERSION = 3.14
|
|
|
|
CATEGORIES = graphics
|
|
|
|
HOMEPAGE = http://gnofract4d.sourceforge.net
|
|
|
|
# 3-clause BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += m png stdc++ z ${MODPY_WANTLIB}
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=gnofract4d/}
|
|
|
|
MODULES = lang/python
|
|
RUN_DEPENDS = x11/py-gtk2
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|