blob: e3f3a213fc06ed91d55627a3d647bb58d14073d2 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# New ports collection makefile for: neverball
# Date created: 26 October 2003
# Whom: Mezz <mezz7@cox.net>
#
# $FreeBSD$
#
PORTNAME= neverball
PORTVERSION= 1.5.4
PORTREVISION= 4
CATEGORIES= games
MASTER_SITES= http://offload1.icculus.org:9090/neverball/ \
http://offload2.icculus.org:9090/neverball/ \
http://mirror.amdmi3.ru/distfiles/
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Tilt the floor to guide a ball through an obstacle course
LIB_DEPENDS= png.6:${PORTSDIR}/graphics/png \
jpeg.11:${PORTSDIR}/graphics/jpeg \
vorbis.4:${PORTSDIR}/audio/libvorbis \
physfs.1:${PORTSDIR}/devel/physfs
USE_GL= gl
USE_SDL= sdl ttf
USE_GMAKE= yes
MAKE_ENV+= ENABLE_WII=0
MAKE_JOBS_SAFE= yes
PORTDOCS= CHANGES COPYING README
MAN6= neverball.6 neverputt.6
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
MAKE_ENV+= ENABLE_NLS=1
LOCALE_DIRS= ca de es fi fr lv nn
PLIST_SUB+= NLS=""
.else
MAKE_ENV+= ENABLE_NLS=0
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's|./data|${DATADIR}/data|g; \
s|./locale|${PREFIX}/share/locale|g; \
s|sdl-config|${SDL_CONFIG}|g; \
s| -O2| ${CFLAGS}|g; \
s|%%LOCALBASE%%|${LOCALBASE}|g' \
${WRKSRC}/Makefile
do-install:
@${MKDIR} ${DATADIR}/data
@(cd ${WRKSRC}/data ; ${COPYTREE_SHARE} . ${DATADIR}/data/)
@(cd ${WRKSRC}/dist ; ${INSTALL_MAN} ${MAN6} ${MAN6PREFIX}/man/man6/)
@${MKDIR} ${PREFIX}/share/applications
.for f in neverball neverputt
@${INSTALL_DATA} ${WRKSRC}/dist/${f}.desktop \
${PREFIX}/share/applications/
@${INSTALL_DATA} ${WRKSRC}/dist/${f}_512.png \
${PREFIX}/share/pixmaps/${f}.png
@${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/
.endfor
.if !defined(WITHOUT_NLS)
. for ii in ${LOCALE_DIRS}
@${MKDIR} ${PREFIX}/share/locale/${ii}/LC_MESSAGES
@${INSTALL_DATA} ${WRKSRC}/locale/${ii}/LC_MESSAGES/*.mo \
${PREFIX}/share/locale/${ii}/LC_MESSAGES/
. endfor
.endif
.ifndef (NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
. for i in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>
|