summaryrefslogtreecommitdiff
path: root/devel/sdl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'devel/sdl/Makefile')
-rw-r--r--devel/sdl/Makefile56
1 files changed, 32 insertions, 24 deletions
diff --git a/devel/sdl/Makefile b/devel/sdl/Makefile
index 676e187c1a22..8b4f967c323d 100644
--- a/devel/sdl/Makefile
+++ b/devel/sdl/Makefile
@@ -5,35 +5,43 @@
# $FreeBSD$
#
-PORTNAME= sdl
-PORTVERSION= 1.0.8
-CATEGORIES= devel
-MASTER_SITES= http://www.libsdl.org/release/ \
- http://www.devolution.com/~slouken/SDL/release/
-DISTNAME= SDL-${PORTVERSION}
-
-MAINTAINER= sobomax@FreeBSD.org
-
-LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound
-BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
-
-USE_GMAKE= yes
-USE_XLIB= yes
-INSTALLS_SHLIB= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \
- LOCALBASE="${LOCALBASE}"
-CFLAGS+= -D_THREAD_SAFE
+PORTNAME= sdl
+PORTVERSION= 1.0.8
+CATEGORIES= devel
+MASTER_SITES= http://www.libsdl.org/release/ \
+ http://www.devolution.com/~slouken/SDL/release/
+DISTNAME= SDL-${PORTVERSION}
+
+MAINTAINER= sobomax@FreeBSD.org
+
+LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \
+ vga.1:${PORTSDIR}/graphics/svgalib
+BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
+
+USE_GMAKE= yes
+USE_XLIB= yes
+INSTALLS_SHLIB= yes
+USE_LIBTOOL= yes
+
+CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \
+ LOCALBASE="${LOCALBASE}"
+CONFIGURE_ARGS= --enable-video-svga
+
+CFLAGS+= -D_THREAD_SAFE
+
+post-configure:
+ @${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
+ ${WRKSRC}/libtool
post-install:
- @ ${MKDIR} ${PREFIX}/share/examples/SDL
- @ ${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL
+ @${MKDIR} ${PREFIX}/share/examples/SDL
+ @${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL
.if !defined(NOPORTDOCS)
- @ ${MKDIR} ${PREFIX}/share/doc/SDL
+ @${MKDIR} ${PREFIX}/share/doc/SDL
.for file in BUGS COPYING CREDITS README WhatsNew docs.html
- @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL
+ @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL
.endfor
- @ cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \
+ @cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \
(cd ${PREFIX}/share/doc/SDL; ${TAR} --unlink -xf - )
.endif