summaryrefslogtreecommitdiffstats
path: root/astro/stellarium/Makefile
blob: 73023b160c1e8c62b84c74f97efd2c092322d1ae (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# New ports collection makefile for:	Stellarium
# Date created:				26 Jan 2004
# Whom:					Jean-Yves Lefort <jylefort@brutele.be>
#
# $FreeBSD$
#

PORTNAME=	stellarium
PORTVERSION=	0.11.3
PORTREVISION=	1
CATEGORIES=	astro
MASTER_SITES=	SF/${PORTNAME}/Stellarium-sources/${PORTVERSION}
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
EXTRACT_ONLY:=	${DISTFILES}

MAINTAINER=	danfe@FreeBSD.org
COMMENT=	A 3D photo-realistic sky renderer (planetarium)

LICENSE=	GPLv2

USE_CMAKE=	yes
USE_GETTEXT=	yes
USE_GL=		glu
USE_ICONV=	yes
USE_QT4=	moc_build rcc_build uic_build qmake_build \
		corelib gui network opengl script
MAKE_JOBS_SAFE=	yes

MAN1=		stellarium.1
PORTDOCS=	AUTHORS ChangeLog README

OPTIONS=	MORE_STARS	"Install extra star catalogs (1.2GB)"	off

.include <bsd.port.options.mk>

.if defined(WITH_MORE_STARS)
.for i in 4 5 6 7 8
MASTER_SITES+=	SF/${PORTNAME}/Extra-data-files/stars${i}:stars${i}
.endfor
DISTFILES+=	stars_4_1v0_0.cat:stars4 stars_5_2v0_0.cat:stars5 \
		stars_6_2v0_0.cat:stars6 stars_7_2v0_0.cat:stars7 \
		stars_8_2v0_0.cat:stars8
PLIST_SUB+=	MORE_STARS=""
.else
PLIST_SUB+=	MORE_STARS="@comment "
.endif

post-patch: .SILENT
	${REINPLACE_CMD} -e '/typedef.*void.*__GLXextFuncPtr/d' \
		${WRKSRC}/src/core/external/GLee.h
	${REINPLACE_CMD} -e '/QTTEST/d' ${WRKSRC}/CMakeLists.txt
	${REINPLACE_CMD} -e 's|share/man/man1|man/man1|' \
		${WRKSRC}/doc/CMakeLists.txt
# Remove options which our old GCC does not know about (GCC 4.6 specific)
	${REINPLACE_CMD} -e 's| -Wno-unused-but-set-[[:alpha:]]*||g' \
		${WRKSRC}/plugins/Satellites/src/CMakeLists.txt
# Avoid picking up the wrong `fixx11h.h' (`x11/kdelibs3' port installs one
# that does not handle FontChange)
	${GREP} -Rl --null fixx11h\\.h ${WRKSRC}/src ${WRKSRC}/plugins | \
		${XARGS} -0 ${REINPLACE_CMD} -e 's/fixx11h\.h/fixx11qt4h.h/'
	cd ${WRKSRC}/src/core/external && ${MV} fixx11h.h fixx11qt4h.h

post-install:
.if defined(WITH_MORE_STARS)
	${INSTALL_DATA} ${DISTDIR}/stars_[45678]_[12]v0_0.cat \
		${DATADIR}/stars/default
.endif
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif

.include <bsd.port.mk>
OpenPOWER on IntegriCloud