aboutsummaryrefslogtreecommitdiff
path: root/graphics/evolvotron/Makefile
blob: 8a7af87f5b08a92ea545da0fd9e5864e28ec0f86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
PORTNAME=	evolvotron
DISTVERSION=	0.8.1
PORTREVISION=	3
CATEGORIES=	graphics
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R} \
		SF/nemysisfreebsdp/${CATEGORIES}/:icons
DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
		${PORTNAME}_icons${EXTRACT_SUFX}:icons

MAINTAINER=	eduardo@FreeBSD.org
COMMENT=	Generative software that evolves images/textures/patterns
WWW=		http://www.bottlenose.net/share/evolvotron/

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/LICENSE

LIB_DEPENDS=	libboost_thread.so:devel/boost-libs

USES=		compiler:c++11-lib gl gnome python qmake qt:5
USE_CXXSTD=	c++11
USE_GL=		gl
USE_QT=		core gui widgets xml buildtools:build

QMAKE_ARGS=		VERSION_NUMBER="${PORTVERSION}"
QMAKE_SOURCE_PATH=	${WRKSRC}/main.pro

ICON_SIZES=	32x32 48x48 64x64 72x72 96x96 128x128
DESKTOP_ENTRIES=	"Evolvotron" \
			"Interactive image generator" \
			"${PORTNAME}" \
			"${PORTNAME}" \
			"Graphics;2DGraphics;" \
			""

PORTDOCS=	NEWS README.md TODO USAGE evolvotron.html
OPTIONS_DEFINE=	DOCS

do-install:
.for i in evolvotron evolvotron_mutate evolvotron_render
	${INSTALL_PROGRAM} ${WRKSRC}/obj/${i}/${i} ${STAGEDIR}${PREFIX}/bin/
	${INSTALL_MAN} ${WRKSRC}/man/man1/${i}.1 ${STAGEDIR}${PREFIX}/share/man/man1/
.endfor
.for s in ${ICON_SIZES}
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/
	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${s}.png \
		${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
.endfor
	${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
		${STAGEDIR}${PREFIX}/share/pixmaps/

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>