1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/devel/sdl12/Makefile

75 lines
1.8 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: SDL
# Date created: 1 April 2000
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
1999-08-25 05:57:29 +00:00
# $FreeBSD$
#
PORTNAME= sdl-devel
2001-02-16 19:45:58 +00:00
PORTVERSION= 1.1.8
CATEGORIES= devel
MASTER_SITES= http://www.libsdl.org/release/ \
http://www.devolution.com/~slouken/SDL/release/
DISTNAME= SDL-${PORTVERSION}
MAINTAINER= sobomax@FreeBSD.org
2000-10-05 05:19:38 +00:00
LIB_DEPENDS= aa.1:${PORTSDIR}/graphics/aalib \
vga.1:${PORTSDIR}/graphics/svgalib
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
USE_XLIB= yes
2000-10-05 05:19:38 +00:00
USE_ESOUND= yes
INSTALLS_SHLIB= yes
USE_LIBTOOL= yes
2000-10-05 05:19:38 +00:00
CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm"
CONFIGURE_ARGS= --enable-video-aalib \
--enable-video-svga
CFLAGS+= -D_THREAD_SAFE
.if exists(/usr/lib/libvgl.so.3)
CONFIGURE_ARGS+=--enable-video-vgl
DISPLAY_MSG= ${CAT} ${PKGMESSAGE}
.else
CONFIGURE_ARGS+=--disable-video-vgl
PKGMESSAGE= /I/hate/ports/Mk/bsd.port.mk
DISPLAY_MSG= ${DO_NADA}
.endif
.if defined(WITHOUT_GL)
2000-10-05 05:19:38 +00:00
CONFIGURE_ARGS+=--disable-video-opengl
.else
USE_MESA= yes
2000-10-05 05:19:38 +00:00
CONFIGURE_ARGS+=--enable-video-opengl
.endif
2000-09-28 07:21:21 +00:00
.include <bsd.port.pre.mk>
MAN3!= /bin/cat ${FILESDIR}/man3
pre-configure:
@find ${WRKSRC} -type f -name Makefile.in | xargs ${TOUCH}
post-configure:
@cd ${WRKSRC} && \
${CP} sdl-config sdl11-config && \
${CP} sdl.m4 sdl11.m4
@${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
${WRKSRC}/libtool
post-install:
@${MKDIR} ${PREFIX}/share/examples/SDL11
2000-10-05 05:19:38 +00:00
${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL11
.if !defined(NOPORTDOCS)
2000-09-28 07:21:21 +00:00
@${MKDIR} ${PREFIX}/share/doc/SDL11/docs
2000-02-03 04:53:59 +00:00
.for file in BUGS COPYING CREDITS README WhatsNew docs.html
2000-10-05 05:19:38 +00:00
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11
.endfor
2000-09-28 07:21:21 +00:00
@cd ${WRKSRC}/docs; tar cf - `${ECHO} [^Mm]*` | \
(cd ${PREFIX}/share/doc/SDL11/docs; ${TAR} --unlink -xf - )
.endif
@${DISPLAY_MSG}
2000-09-28 07:21:21 +00:00
.include <bsd.port.post.mk>