blob: 833588cefc7e792f9a20281029dc5d845305bfc6 (
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
74
75
76
77
78
|
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
# $FreeBSD$
PORTNAME= stellarium
PORTVERSION= 0.13.3
PORTREVISION= 1
CATEGORIES= astro
MASTER_SITES= SF/${PORTNAME}/Stellarium-sources/${PORTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
EXTRACT_ONLY= ${_DISTFILES:Nstars_*.cat}
MAINTAINER= danfe@FreeBSD.org
COMMENT= 3D photo-realistic sky renderer (planetarium)
LICENSE= GPLv2
CONFLICTS_INSTALL= ${PORTNAME}-qt4-0.12.*
USES= cmake gettext
USE_QT5= qmake_build buildtools_build linguisttools_build \
core concurrent declarative
PORTDOCS= AUTHORS ChangeLog README
OPTIONS_DEFINE= MORE_STARS TEXTURES MULTIMEDIA DOCS
OPTIONS_DEFAULT= MULTIMEDIA TEXTURES
MORE_STARS_DESC= Install extra star catalogs (1.0GB)
TEXTURES_DESC= Install better quality textures
MULTIMEDIA_DESC= Sound and video support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMORE_STARS} || ${.TARGETS:Mmakesum}
. for i in 4 5 6 7 8
MASTER_SITES+= SF/${PORTNAME}/Extra-data-files/stars${i}:stars${i}
. endfor
DISTFILES+= stars_4_1v0_1.cat:stars4 stars_5_2v0_1.cat:stars5 \
stars_6_2v0_1.cat:stars6 stars_7_2v0_1.cat:stars7 \
stars_8_2v0_1.cat:stars8
PLIST_SUB+= MORE_STARS=""
.else
PLIST_SUB+= MORE_STARS="@comment "
.endif
.if ${PORT_OPTIONS:MTEXTURES} || ${.TARGETS:Mmakesum}
MASTER_SITES+= SF/${PORTNAME}/Extra-data-files/textures:gfx
DISTFILES+= textures-1K.zip:gfx
.endif
.if ${PORT_OPTIONS:MMULTIMEDIA}
USE_QT5+= multimedia
.else
CMAKE_ARGS+= -DENABLE_SOUND:BOOL=OFF
.endif
post-patch:
@${REINPLACE_CMD} -e 's, -Wno-unused-result,,' ${WRKSRC}/CMakeLists.txt
post-install:
.if ${PORT_OPTIONS:MMORE_STARS}
${INSTALL_DATA} ${DISTDIR}/stars_[45678]_[12]v0_1.cat \
${STAGEDIR}${DATADIR}/stars/default
.endif
.if ${PORT_OPTIONS:MTEXTURES}
(cd ${WRKDIR} && for f in *.png; do \
new=`${STAT} -f '%z' $$f` ; \
existing=`${STAT} -f '%z' \
${STAGEDIR}${DATADIR}/textures/$$f` ; \
${TEST} $$new -gt $$existing || continue ; \
${ECHO_CMD} "-- Replacing texture: $$f\
(has larger file size: $$new vs. $$existing)" ; \
${INSTALL_DATA} $$f ${STAGEDIR}${DATADIR}/textures ; \
done)
.endif
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
|