diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-08-13 05:18:16 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-08-13 05:18:16 +0000 |
commit | d5de3099b567d4dd36ab26681525931854f30f8f (patch) | |
tree | ba6ec5fe96b5b8a7dd31d51d51076d57bb67aa86 /devel/sdl/Makefile | |
parent | 6827eafaed3f5e2446b9fd84abac8ea89ca5eda6 (diff) | |
download | FreeBSD-ports-d5de3099b567d4dd36ab26681525931854f30f8f.zip FreeBSD-ports-d5de3099b567d4dd36ab26681525931854f30f8f.tar.gz |
Import of SDL.
SDL is a free cross-platform multi-media development API.
It is used for games, emulators, demos, any multimedia application.
It handles video, audio, threads, endian independence and more.
PR: 13026
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'devel/sdl/Makefile')
-rw-r--r-- | devel/sdl/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/devel/sdl/Makefile b/devel/sdl/Makefile new file mode 100644 index 0000000..149a7ef --- /dev/null +++ b/devel/sdl/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: SDL +# Version required: 0.10.0 +# Date created: 8 August 1999 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= SDL-0.10.0 +PKGNAME= sdl-0.10.0 +CATEGORIES= devel +MASTER_SITES= http://www.devolution.com/~slouken/SDL/SDL-0.10/src/ + +MAINTAINER= andy@icc.surw.chel.su + +BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm + +USE_GMAKE= yes +USE_XLIB= yes + +do-build: + @ cd ${WRKSRC}; ${GMAKE} + @ cd ${WRKSRC}; ${GMAKE} + +post-install: + @ cd ${PREFIX}/lib; ${LN} -sf libSDLx11.so.0.10.0 libSDL.so.0 + @ cd ${PREFIX}/lib; ${LN} -sf libSDLx11.so.0.10.0 libSDLx11.so.0 + @ ${MKDIR} ${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 TODO WhatsNew docs.html + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL +.endfor + @ cd ${WRKSRC}/docs; tar cf - * | \ + (cd ${PREFIX}/share/doc/SDL; tar --unlink -xf - ) +.endif + @ ${LDCONFIG} -m ${PREFIX}/lib + +.include <bsd.port.mk> |