blob: cbe263f78f20745daf63f765d368c1e53719398b (
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
80
81
82
83
84
85
86
87
88
89
90
|
# New ports collection makefile for: alephone
# Date created: 27 February 2001
# Whom: Michael Alyn Miller <malyn@strangeGizmo.com>
#
# $FreeBSD$
#
PORTNAME= alephone
PORTVERSION= 20111201
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/marathon/Aleph%20One/2011-12-01
DISTNAME= AlephOne-${PORTVERSION}
MAINTAINER= fiziologus@gmail.com
COMMENT= The open source version of Bungie's Marathon game
BUILD_DEPENDS+= ${LOCALBASE}/include/boost/function.hpp:${PORTSDIR}/devel/boost-libs
USE_GMAKE= yes
USE_BZIP2= yes
USE_SDL+= image net sdl sound
USE_GL= yes
USE_LUA= 5.1
PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--disable-alsa --disable-sndfile
CONFIGURE_ENV= PKG_CONFIG="${PKG_CONFIG}"
DATADIR= ${PREFIX}/share/AlephOne
MAN6= alephone.6
OPTIONS= MAD "use libmad for mp3 playback" on \
OGG "enable ogg/vorbis music playback" on \
SPEEX "enable speex net mic playback" on \
SMPEG "use SMPEG for movie playback" on \
TTF "enable SDL_ttf font rendering" on \
ZZIP "enable zziplib support" on
.include <bsd.port.pre.mk>
.if defined(WITHOUT_MAD)
CONFIGURE_ARGS+=--disable-mad
.else
LIB_DEPEND+= mad.2:${PORTSDIR}/audio/libmad
.endif
.if defined(WITHOUT_OGG)
CONFIGURE_ARGS+=--disable-vorbis
.else
LIB_DEPEND+= vorbisfile.6:${PORTSDIR}/audio/libvorbis
.endif
.if defined(WITHOUT_SPEEX)
CONFIGURE_ARGS+=--disable-speex
.else
LIB_DEPENDS+= speex.1:${PORTSDIR}/audio/speex
.endif
.if defined(WITHOUT_SMPEG)
CONFIGURE_ARGS+=--disable-smpeg
.else
LIB_DEPENDS+= smpeg.1:${PORTSDIR}/multimedia/smpeg
.endif
.if defined(WITHOUT_TTF)
CONFIGURE_ARGS+=--disable-ttf
.else
USE_SDL+= ttf
.endif
.if defined(WITHOUT_ZZIP)
CONFIGURE_ARGS+=--disable-zzip
.else
LIB_DEPENDS+= zzip.13:${PORTSDIR}/devel/zziplib
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} README ${DOCSDIR}
cd ${WRKSRC}/docs && ${INSTALL_DATA} *.html ${DOCSDIR}
.endif
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.include <bsd.port.post.mk>
|