View | Details | Raw Unified | Return to bug 208713
Collapse All | Expand All

(-)graphics/quat/Makefile (-16 / +4 lines)
Lines 4-20 Link Here
4
PORTNAME=	quat
4
PORTNAME=	quat
5
PORTVERSION=	1.20
5
PORTVERSION=	1.20
6
CATEGORIES=	graphics
6
CATEGORIES=	graphics
7
#MASTER_SITES=	http://www.physcip.uni-stuttgart.de/phy11733/download/
7
MASTER_SITES=	https://www.physcip.uni-stuttgart.de/pages/~phy11733/download/
8
MASTER_SITES=	http://www.sourcefiles.org/Graphics/Fractals/
9
8
10
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Three-dimensional fractal creator (command line only)
10
COMMENT=	Three-dimensional fractal creator (command line only)
12
11
13
BROKEN=		unfetchable
14
LICENSE=	GPLv2+
12
LICENSE=	GPLv2+
15
13
16
OPTIONS_DEFINE=	OPTIMIZED_CFLAGS DOCS
17
18
GNU_CONFIGURE=	yes
14
GNU_CONFIGURE=	yes
19
CONFIGURE_ARGS=	--disable-gui \
15
CONFIGURE_ARGS=	--disable-gui \
20
		--datadir=${PREFIX}/share/doc
16
		--datadir=${PREFIX}/share/doc
Lines 22-32 Link Here
22
PORTDOCS=	*
18
PORTDOCS=	*
23
PLIST_FILES=	bin/quat-txt
19
PLIST_FILES=	bin/quat-txt
24
20
25
.include <bsd.port.options.mk>
21
OPTIONS_DEFINE=		DOCS OPTIMIZED_CFLAGS
26
22
27
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
23
OPTIMIZED_CFLAGS_CFLAGS=	-O3 -ffast-math
28
CFLAGS+=	-O3 -ffast-math
29
.endif
30
24
31
post-patch:
25
post-patch:
32
	@${REINPLACE_CMD} -E -e \
26
	@${REINPLACE_CMD} -E -e \
Lines 38-50 Link Here
38
# disable data file installation since distfile does not do
32
# disable data file installation since distfile does not do
39
# The Right Thing(TM)
33
# The Right Thing(TM)
40
	@${REINPLACE_CMD} -E -e \
34
	@${REINPLACE_CMD} -E -e \
41
		's|^(install-data-am:).*$$|\1| ; \
35
		's|^(install-data-am:).*$$|\1|' \
42
		 s|^(SUBDIRS.*)doc|\1|' \
43
		${WRKSRC}/Makefile.in
36
		${WRKSRC}/Makefile.in
44
37
45
post-install:
46
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
47
	@(cd ${WRKSRC}/doc && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
48
		${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
49
50
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)graphics/quat/pkg-descr (-8 / +9 lines)
Lines 1-10 Link Here
1
Idea and purpose of this program is the calculation of three-dimensional
1
Idea and purpose of this program is the calculation of three-dimensional
2
fractals. The calculated objects are twisted, freely in space
2
fractals. The calculated objects are twisted, freely in space floating
3
floating (and - of course - fractal) "lumps" which look like made
3
(and - of course - fractal) "lumps" which look like made of dough - in
4
of dough - in contrast to what is normally called "three-dimensional"
4
contrast to what is normally called "three-dimensional" fractals (namely
5
fractals (namely a simple reinterpretation of the two-dimensional
5
a simple reinterpretation of the two-dimensional data).
6
data).
7
6
8
Generation of a really three dimensional view is possible (3d
7
Generation of a really three dimensional view is possible (3d stereo).
9
stereo). The fractal can be seen three dimensional without any
8
The fractal can be seen three dimensional without any utilities like 3d
10
utilities like 3d glasses.
9
glasses.
10
11
WWW: https://www.physcip.uni-stuttgart.de/pages/~phy11733/index_e.html

Return to bug 208713