blob: 92fbf4f7908f315735d6967ffe3ca45e8ac4f3ff (
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
|
# New ports collection makefile for: apricots
# Date created: 07 Jan 2008
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$
#
PORTNAME= apricots
PORTVERSION= 0.2.6
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= http://www.fishies.org.uk/ \
http://mirror.amdmi3.ru/distfiles/
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Fly a little plane around and shoot things and drop bombs
BROKEN= does not compile
USE_AUTOTOOLS= libtool:22
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_SDL= sdl
MAKE_JOBS_SAFE= yes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" CPPFLAGS="-I${LOCALBASE}/include"
PORTDOCS= README
DESKTOP_ENTRIES="Apricots" \
"Fly a little plane around and shoot things and drop bombs" \
"" \
"apricots" \
"Game;ArcadeGame;" \
false
OPTIONS= OPENAL "Enable OpenAL audio" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_OPENAL)
USE_OPENAL= al alut
.endif
post-patch:
.if defined(WITHOUT_OPENAL)
@${REINPLACE_CMD} -e 's|-DAP_AUDIO_OPENAL||' ${WRKSRC}/configure
.else
@${REINPLACE_CMD} -e '/^LIBS = / s|$$| -lopenal -lalut|' \
${WRKSRC}/apricots/Makefile.in
.endif
@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure
.if !defined(NOPORTDOCS)
post-install:
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|