diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-20 21:44:21 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-20 21:44:21 +0000 |
commit | 73d891fa45647c8cf3bf68765dea2db797be5a8b (patch) | |
tree | 9265a4d5f8efd30dda575c35550303d008b78cd9 /devel/p5-SDL | |
parent | 5bd1983326bce0cf0cff43e88e2a567f529ccf9c (diff) | |
download | ports-73d891fa45647c8cf3bf68765dea2db797be5a8b.tar.gz ports-73d891fa45647c8cf3bf68765dea2db797be5a8b.zip |
Notes
Diffstat (limited to 'devel/p5-SDL')
-rw-r--r-- | devel/p5-SDL/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/devel/p5-SDL/Makefile b/devel/p5-SDL/Makefile index 97f02f2fb4fa..acf0d581cad4 100644 --- a/devel/p5-SDL/Makefile +++ b/devel/p5-SDL/Makefile @@ -13,30 +13,31 @@ DISTNAME= SDL_perl-${PORTVERSION} MAINTAINER= philip@paeps.cx COMMENT= Perl Bindings for SDL -LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \ - png.5:${PORTSDIR}/graphics/png \ +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg +USE_SDL= yes + .include <bsd.port.pre.mk> .if !defined(WITHOUT_SDL_TTF) -LIB_DEPENDS+= SDL_ttf.3:${PORTSDIR}/graphics/sdl_ttf +USE_SDL= ttf sdl .endif .if !defined(WITHOUT_SDL_NET) -LIB_DEPENDS+= SDL_net.0:${PORTSDIR}/net/sdl_net +USE_SDL= net sdl .endif .if !defined(WITHOUT_SDL_GFX) -LIB_DEPENDS+= SDL_gfx.10:${PORTSDIR}/graphics/sdl_gfx +USE_SDL= gfx sdl .endif .if !defined(WITHOUT_SDL_IMAGE) -LIB_DEPENDS+= SDL_image.10:${PORTSDIR}/graphics/sdl_image +USE_SDL= image sdl .endif .if !defined(WITHOUT_SDL_MIXER) -LIB_DEPENDS+= SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer +USE_SDL= mixer sdl .endif .if ${PERL_LEVEL} < 500600 |