summaryrefslogtreecommitdiff
path: root/devel/sdl10
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-10-05 05:19:38 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-10-05 05:19:38 +0000
commit712a2199384437ea262fe698b283e4f616362747 (patch)
tree945bab070253f362d6ebb5a75a9c90ce751c10c7 /devel/sdl10
parentI maintain this port. (diff)
Implement WANT_ESOUND, USE_ESOUND.
Notes
Notes: svn path=/head/; revision=33420
Diffstat (limited to 'devel/sdl10')
-rw-r--r--devel/sdl10/Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/devel/sdl10/Makefile b/devel/sdl10/Makefile
index 3032cc2c5cb9..ec5af0dceefb 100644
--- a/devel/sdl10/Makefile
+++ b/devel/sdl10/Makefile
@@ -15,17 +15,15 @@ DISTNAME= SDL-${PORTVERSION}
MAINTAINER= sobomax@FreeBSD.org
-LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \
- vga.1:${PORTSDIR}/graphics/svgalib
+LIB_DEPENDS= vga.1:${PORTSDIR}/graphics/svgalib
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
USE_GMAKE= yes
USE_XLIB= yes
+USE_ESOUND= yes
INSTALLS_SHLIB= yes
USE_LIBTOOL= yes
-
-CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \
- LOCALBASE="${LOCALBASE}"
+CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm"
CONFIGURE_ARGS= --enable-video-svga
CFLAGS+= -D_THREAD_SAFE
@@ -36,13 +34,13 @@ post-configure:
post-install:
@${MKDIR} ${PREFIX}/share/examples/SDL
- @${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL
+ ${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL
.if !defined(NOPORTDOCS)
@${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