blob: c8bd355ec1337b461c2c074e941f79296c9ecd24 (
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
91
92
93
94
95
96
97
98
99
100
101
102
|
# New ports collection makefile for: airrox
# Date created: 12 Jul 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= airrox
PORTVERSION= 0.0.4
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-0.04
MAINTAINER= alepulver@FreeBSD.org
COMMENT= An 3D Air Hockey, which uses SDL & OpenGL
LIB_DEPENDS= glut.4:${PORTSDIR}/graphics/libglut
USE_GMAKE= yes
USE_SDL= mixer net sdl
USE_GL= yes
REINPLACE_ARGS= -i ''
WRKSRC= ${WRKDIR}/${PORTNAME}/source
OPTIONS= OPTIMIZED_CFLAGS "Enable compilation optimizations" on
SUB_FILES= pkg-message
ALL_TARGET= linux
DIRS= audio icones imagens meshs texturas
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= needs sscanf() interface in libc
.endif
post-patch:
# Fix Makefile.
@${REINPLACE_CMD} -e 's|/usr/X11R6|${X11BASE}|g ; \
s|-lSDL ||g ; \
s|-lpthread||g ; \
s|sdl-config|${SDL_CONFIG}|g ; \
s|\(-O2\)|${CFLAGS} -I${X11BASE}/include \
`${SDL_CONFIG} --cflags` \1| ; \
s|$$(INCLUDEWIN)||g ; \
s|g++|${CXX}|g' \
${WRKSRC}/${MAKEFILE}
# Fix SDL include statement.
.for f in *.cpp *.h
@${FIND} ${WRKSRC} -type f -name "${f}" -print0 | \
${XARGS} -0 ${REINPLACE_CMD} -e \
's|\(#include.*\)SDL/\(SDL.*\)|\1\2|'
.endfor
# Fix paths to ${DATADIR}.
.for d in ${DIRS}
@${REINPLACE_CMD} -e 's|../\(${d}/\)|${DATADIR}/\1|' \
${WRKSRC}/*.cpp ${WRKSRC}/*.h
.endfor
# Enable/disable compilation optimizations.
.if defined(WITHOUT_OPTIMIZED_CFLAGS)
@${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${MAKEFILE}
.endif
do-install:
# Program.
${INSTALL_PROGRAM} ${WRKSRC}/air ${PREFIX}/bin/${PORTNAME}
# Data.
${MKDIR} ${DATADIR}
# Data: directories.
.for d in ${DIRS}
${CP} -R ${WRKDIR}/${PORTNAME}/${d} ${DATADIR}
.endfor
# Data: config.txt.
${INSTALL_DATA} ${WRKSRC}/config.txt ${DATADIR}
# Remove CVS directories.
@${FIND} ${DATADIR} -type d -name "CVS" -print0 | \
${XARGS} -0 ${RM} -rf
# Documentation (optional).
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${FILESDIR}/readme.txt ${DOCSDIR}
.endif
post-install:
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.include <bsd.port.post.mk>
|