blob: 925732e94e46f76d28ee7c6a675b89d01a2a0448 (
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
|
# New ports collection makefile for: esdl
# Date Created: 2 January 2003
# Whom: olgeni@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= esdl
PORTVERSION= 1.0.1
PORTREVISION= 7
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
DIST_SUBDIR= erlang
MAINTAINER= olgeni@FreeBSD.org
COMMENT= A library for accessing SDL and OpenGL through Erlang
BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang
RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_DOS2UNIX= Makefile
USE_GL= gl glu
USE_GMAKE= yes
USE_SDL= sdl
ALL_TARGET= target
PLIST_SUB= VERSION="${PORTVERSION}"
MAKE_JOBS_SAFE= yes
OPTIONS= SDL_TTF "SDL_ttf support" on \
SDL_IMAGE "SDL_image support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_SDL_TTF)
USE_SDL+= ttf
PLIST_SUB+= SDL_TTF=""
.else
PLIST_SUB+= SDL_TTF="@comment "
.endif
.if !defined(WITHOUT_SDL_IMAGE)
USE_SDL+= image
PLIST_SUB+= SDL_IMAGE=""
.else
PLIST_SUB+= SDL_IMAGE="@comment "
.endif
post-extract:
@${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} go+r
post-patch:
@${REINPLACE_CMD} -Ee 's|addons|lib|' ${WRKSRC}/Makefile
.if !defined(WITHOUT_SDL_TTF)
@${REINPLACE_CMD} -e '/ENABLE_SDL_TTF = / s|no|yes|' ${WRKSRC}/Makefile
.endif
.if !defined(WITHOUT_SDL_IMAGE)
@${REINPLACE_CMD} -e '/ENABLE_SDL_IMAGE = / s|no|yes|' ${WRKSRC}/Makefile
.endif
post-install:
@${LN} -sf ${PORTNAME}-${PORTVERSION} ${PREFIX}/lib/erlang/lib/${PORTNAME}
.include <bsd.port.post.mk>
|