Update astro/stellarium to version 0.13.0_2
[dports.git] / astro / stellarium / Makefile
1 # Created by: Jean-Yves Lefort <jylefort@brutele.be>
2 # $FreeBSD$
3
4 PORTNAME=       stellarium
5 PORTVERSION=    0.13.0
6 PORTREVISION=   2
7 CATEGORIES=     astro
8 MASTER_SITES=   SF/${PORTNAME}/Stellarium-sources/${PORTVERSION}
9 DISTFILES=      ${DISTNAME}${EXTRACT_SUFX}
10 EXTRACT_ONLY:=  ${DISTFILES}
11
12 MAINTAINER=     danfe@FreeBSD.org
13 COMMENT=        3D photo-realistic sky renderer (planetarium)
14
15 LICENSE=        GPLv2
16
17 USES=           cmake gettext iconv
18 USE_QT5=        qmake_build buildtools_build linguisttools_build \
19                 core concurrent declarative
20 INSTALLS_ICONS= yes
21
22 PORTDOCS=       AUTHORS ChangeLog README
23
24 OPTIONS_DEFINE=         MORE_STARS MULTIMEDIA DOCS
25 OPTIONS_DEFAULT=        MULTIMEDIA
26 MORE_STARS_DESC=        Install extra star catalogs (1.2GB)
27 MULTIMEDIA_DESC=        Sound and video support
28
29 .include <bsd.port.options.mk>
30
31 .if ${PORT_OPTIONS:MMORE_STARS}
32 .  for i in 4 5 6 7 8
33 MASTER_SITES+=  SF/${PORTNAME}/Extra-data-files/stars${i}:stars${i}
34 .  endfor
35 DISTFILES+=     stars_4_1v0_0.cat:stars4 stars_5_2v0_0.cat:stars5 \
36                 stars_6_2v0_0.cat:stars6 stars_7_2v0_0.cat:stars7 \
37                 stars_8_2v0_0.cat:stars8
38 PLIST_SUB+=     MORE_STARS=""
39 .else
40 PLIST_SUB+=     MORE_STARS="@comment "
41 .endif
42
43 .if ${PORT_OPTIONS:MMULTIMEDIA}
44 USE_QT5+=       multimedia
45 .else
46 CMAKE_ARGS+=    -DENABLE_SOUND:BOOL=OFF
47 .endif
48
49 post-patch:
50         @${REINPLACE_CMD} -e 's, -Wno-unused-result,,' ${WRKSRC}/CMakeLists.txt
51
52 post-install:
53 .if ${PORT_OPTIONS:MMORE_STARS}
54         ${INSTALL_DATA} ${DISTDIR}/stars_[45678]_[12]v0_0.cat \
55                 ${STAGEDIR}${DATADIR}/stars/default
56 .endif
57         @${MKDIR} ${STAGEDIR}${DOCSDIR}
58         ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
59
60 .include <bsd.port.mk>