diff options
author | edwin <edwin@FreeBSD.org> | 2004-01-24 07:11:03 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-01-24 07:11:03 +0800 |
commit | 0eb15bdbf2719d4f481617faf0c10040dd13503d (patch) | |
tree | be8148c62669cbe87540fcb645254ad82cadbd3c /devel/p5-SDL | |
parent | 6e31e41856ec2dd38cfd5c289a999e120dedf97f (diff) | |
download | freebsd-ports-gnome-0eb15bdbf2719d4f481617faf0c10040dd13503d.tar.gz freebsd-ports-gnome-0eb15bdbf2719d4f481617faf0c10040dd13503d.tar.zst freebsd-ports-gnome-0eb15bdbf2719d4f481617faf0c10040dd13503d.zip |
Let ports use the USE_SDL macro
PR: ports/61807
Approved by: Philip Paeps <philip@paeps.cx>
Diffstat (limited to 'devel/p5-SDL')
-rw-r--r-- | devel/p5-SDL/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/devel/p5-SDL/Makefile b/devel/p5-SDL/Makefile index acf0d581cad4..c466afb5d51c 100644 --- a/devel/p5-SDL/Makefile +++ b/devel/p5-SDL/Makefile @@ -10,34 +10,34 @@ MASTER_SITES= http://bloodgate.com/perl/sdl/pub/ PKGNAMEPREFIX= p5- DISTNAME= SDL_perl-${PORTVERSION} -MAINTAINER= philip@paeps.cx +MAINTAINER= philip@FreeBSD.org COMMENT= Perl Bindings for SDL LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg -USE_SDL= yes +USE_SDL= sdl .include <bsd.port.pre.mk> .if !defined(WITHOUT_SDL_TTF) -USE_SDL= ttf sdl +USE_SDL+= ttf .endif .if !defined(WITHOUT_SDL_NET) -USE_SDL= net sdl +USE_SDL+= net .endif .if !defined(WITHOUT_SDL_GFX) -USE_SDL= gfx sdl +USE_SDL+= gfx .endif .if !defined(WITHOUT_SDL_IMAGE) -USE_SDL= image sdl +USE_SDL+= image .endif .if !defined(WITHOUT_SDL_MIXER) -USE_SDL= mixer sdl +USE_SDL+= mixer .endif .if ${PERL_LEVEL} < 500600 |