blob: 694b7cc4f0c7b4d41fc87281bd0055ea7e88ade6 (
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
|
# New Ports Collection Makefile for: p5-sdl
# Date created: 2002-10-06
# Whom: Klaus Goger <klaus.goger@reflex.at>
# $FreeBSD$
PORTNAME= SDL
PORTVERSION= 2.2.0
PORTREVISION= 2
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ../../authors/id/D/DG/DGOEHRIG
PKGNAMEPREFIX= p5-
DISTNAME= SDL_Perl-${PORTVERSION}
MAINTAINER= spam@rm-rf.kiev.ua
COMMENT= Perl Bindings for SDL
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
jpeg.11:${PORTSDIR}/graphics/jpeg
USE_PERL5= yes
USE_SDL= sdl
PERL_MODBUILD= yes
OPTIONS= SDL_TTF "Enable TTF support" on \
SDL_NET "Enable NET support" on \
SDL_GFX "Enable GFX support" on \
SDL_IMAGE "Enable IMAGE support" on \
SDL_MIXER "Enable MIXER support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_SDL_TTF)
USE_SDL+= ttf
.endif
.if !defined(WITHOUT_SDL_NET)
USE_SDL+= net
.endif
.if !defined(WITHOUT_SDL_GFX)
USE_SDL+= gfx
.endif
.if !defined(WITHOUT_SDL_IMAGE)
USE_SDL+= image
.endif
.if !defined(WITHOUT_SDL_MIXER)
USE_SDL+= mixer
.endif
USE_LDCONFIG= yes
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
MAN3= SDL.3 \
SDL::App.3 \
SDL::Cdrom.3 \
SDL::Color.3 \
SDL::Cursor.3 \
SDL::Event.3 \
SDL::Font.3 \
SDL::MPEG.3 \
SDL::Mixer.3 \
SDL::Music.3 \
SDL::OpenGL.3 \
SDL::Palette.3 \
SDL::Rect.3 \
SDL::SFont.3 \
SDL::Sound.3 \
SDL::Surface.3 \
SDL::TTFont.3 \
SDL::Timer.3 \
SDL::Tool::Font.3 \
SDL::Tool::Graphic.3 \
SDL::Tutorial.3 \
SDL::Tutorial::Animation.3 \
SDL::Tutorial::Images.3 \
SDL::Tutorial::Drawing.3 \
SDL::Video.3
# Workaround for Build.PL bug
post-install:
if [ -d ${SITE_PERL}/${PERL_ARCH}/auto/src ]; then \
${MV} ${SITE_PERL}/${PERL_ARCH}/auto/src/SDL* \
${SITE_PERL}/${PERL_ARCH}/auto/; \
${RMDIR} ${SITE_PERL}/${PERL_ARCH}/auto/src; \
fi
if [ -n ${PERL} ]; then \
PERL_THREADED=`${PERL} -V | ${GREP} -- -Dusethreads=y || ${TRUE}`; \
if [ -z ${PERL_THREADED} ]; then \
${ECHO_MSG} "SDL_PERL must be built with a threaded Perl, reinstall Perl with WITH_THREADS=yes"; \
${ECHO_MSG} "or launch any program that use this port with LD_PRELOAD=/usr/lib/libc_r.so"; \
fi; \
fi
.include <bsd.port.post.mk>
|