1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

Several improvements and cleanups:

- add svgalib support (tested with C&T65554);
- make it USE_LIBTOOL;
- remove spaces between `@' and `$' in targets.
This commit is contained in:
Maxim Sobolev 2000-08-31 10:06:09 +00:00
parent ea391e9662
commit 90983e3b46
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32143
6 changed files with 94 additions and 54 deletions

View File

@ -5,51 +5,55 @@
# $FreeBSD$ # $FreeBSD$
# #
PORTNAME= sdl-devel PORTNAME= sdl-devel
PORTVERSION= 1.1.4 PORTVERSION= 1.1.4
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://www.libsdl.org/release/ \ MASTER_SITES= http://www.libsdl.org/release/ \
http://www.devolution.com/~slouken/SDL/release/ http://www.devolution.com/~slouken/SDL/release/
DISTNAME= SDL-${PORTVERSION} DISTNAME= SDL-${PORTVERSION}
MAINTAINER= sobomax@FreeBSD.org MAINTAINER= sobomax@FreeBSD.org
LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \ LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \
aa.1:${PORTSDIR}/graphics/aalib aa.1:${PORTSDIR}/graphics/aalib \
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm vga.1:${PORTSDIR}/graphics/svgalib
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
USE_GMAKE= yes USE_GMAKE= yes
USE_XLIB= yes USE_XLIB= yes
INSTALLS_SHLIB= yes INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes USE_LIBTOOL= yes
CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \ CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \
LOCALBASE="${LOCALBASE}" LOCALBASE="${LOCALBASE}"
CONFIGURE_ARGS= --enable-video-aalib CONFIGURE_ARGS= --enable-video-aalib \
--enable-video-svga
CFLAGS+= -D_THREAD_SAFE CFLAGS+= -D_THREAD_SAFE
.if defined(WITHOUT_GL) .if defined(WITHOUT_GL)
CONFIGURE_ARGS+= --disable-video-opengl CONFIGURE_ARGS+= --disable-video-opengl
.else .else
USE_MESA= yes USE_MESA= yes
CONFIGURE_ARGS+= --enable-video-opengl CONFIGURE_ARGS+= --enable-video-opengl
.endif .endif
post-configure: post-configure:
@ cd ${WRKSRC} && \ @cd ${WRKSRC} && \
${CP} sdl-config sdl11-config && \ ${CP} sdl-config sdl11-config && \
${CP} sdl.m4 sdl11.m4 ${CP} sdl.m4 sdl11.m4
@${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
${WRKSRC}/libtool
post-install: post-install:
@ ${MKDIR} ${PREFIX}/share/examples/SDL11 @${MKDIR} ${PREFIX}/share/examples/SDL11
@ ${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL11 @${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL11
.if !defined(NOPORTDOCS) .if !defined(NOPORTDOCS)
@ ${MKDIR} ${PREFIX}/share/doc/SDL11 @${MKDIR} ${PREFIX}/share/doc/SDL11
.for file in BUGS COPYING CREDITS README WhatsNew docs.html .for file in BUGS COPYING CREDITS README WhatsNew docs.html
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11 @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11
.endfor .endfor
@ cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \ @cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \
(cd ${PREFIX}/share/doc/SDL11; ${TAR} --unlink -xf - ) (cd ${PREFIX}/share/doc/SDL11; ${TAR} --unlink -xf - )
.endif .endif

View File

@ -1,5 +1,5 @@
--- configure.orig Fri Aug 4 22:23:00 2000 --- configure.orig Fri Aug 4 22:23:00 2000
+++ configure Mon Aug 7 15:44:03 2000 +++ configure Fri Aug 25 06:50:42 2000
@@ -603,7 +603,7 @@ @@ -603,7 +603,7 @@
SDL_MAJOR_VERSION=1 SDL_MAJOR_VERSION=1
SDL_MINOR_VERSION=1 SDL_MINOR_VERSION=1
@ -30,3 +30,20 @@
# Check whether --enable-audio or --disable-audio was given. # Check whether --enable-audio or --disable-audio was given.
@@ -4448,8 +4448,6 @@
#include <vga.h>
#include <vgamouse.h>
#include <vgakeyboard.h>
- #include <linux/kd.h>
- #include <linux/keyboard.h>
int main() {
@@ -5166,6 +5164,7 @@
CheckESD
CheckX11
CheckAAlib
+ CheckSVGA
CheckOpenGL
CheckPTHREAD
# Set up files for the main() stub

View File

@ -26,7 +26,6 @@ include/SDL11/begin_code.h
include/SDL11/close_code.h include/SDL11/close_code.h
lib/libSDL-1.1.so.2 lib/libSDL-1.1.so.2
lib/libSDL-1.1.a lib/libSDL-1.1.a
lib/libSDL-1.1.la
lib/libSDL-1.1.so lib/libSDL-1.1.so
lib/libSDLmain-1.1.a lib/libSDLmain-1.1.a
share/aclocal/sdl11.m4 share/aclocal/sdl11.m4

View File

@ -5,51 +5,55 @@
# $FreeBSD$ # $FreeBSD$
# #
PORTNAME= sdl-devel PORTNAME= sdl-devel
PORTVERSION= 1.1.4 PORTVERSION= 1.1.4
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= http://www.libsdl.org/release/ \ MASTER_SITES= http://www.libsdl.org/release/ \
http://www.devolution.com/~slouken/SDL/release/ http://www.devolution.com/~slouken/SDL/release/
DISTNAME= SDL-${PORTVERSION} DISTNAME= SDL-${PORTVERSION}
MAINTAINER= sobomax@FreeBSD.org MAINTAINER= sobomax@FreeBSD.org
LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \ LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound \
aa.1:${PORTSDIR}/graphics/aalib aa.1:${PORTSDIR}/graphics/aalib \
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm vga.1:${PORTSDIR}/graphics/svgalib
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
USE_GMAKE= yes USE_GMAKE= yes
USE_XLIB= yes USE_XLIB= yes
INSTALLS_SHLIB= yes INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes USE_LIBTOOL= yes
CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \ CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \
LOCALBASE="${LOCALBASE}" LOCALBASE="${LOCALBASE}"
CONFIGURE_ARGS= --enable-video-aalib CONFIGURE_ARGS= --enable-video-aalib \
--enable-video-svga
CFLAGS+= -D_THREAD_SAFE CFLAGS+= -D_THREAD_SAFE
.if defined(WITHOUT_GL) .if defined(WITHOUT_GL)
CONFIGURE_ARGS+= --disable-video-opengl CONFIGURE_ARGS+= --disable-video-opengl
.else .else
USE_MESA= yes USE_MESA= yes
CONFIGURE_ARGS+= --enable-video-opengl CONFIGURE_ARGS+= --enable-video-opengl
.endif .endif
post-configure: post-configure:
@ cd ${WRKSRC} && \ @cd ${WRKSRC} && \
${CP} sdl-config sdl11-config && \ ${CP} sdl-config sdl11-config && \
${CP} sdl.m4 sdl11.m4 ${CP} sdl.m4 sdl11.m4
@${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
${WRKSRC}/libtool
post-install: post-install:
@ ${MKDIR} ${PREFIX}/share/examples/SDL11 @${MKDIR} ${PREFIX}/share/examples/SDL11
@ ${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL11 @${INSTALL_DATA} ${WRKSRC}/test/* ${PREFIX}/share/examples/SDL11
.if !defined(NOPORTDOCS) .if !defined(NOPORTDOCS)
@ ${MKDIR} ${PREFIX}/share/doc/SDL11 @${MKDIR} ${PREFIX}/share/doc/SDL11
.for file in BUGS COPYING CREDITS README WhatsNew docs.html .for file in BUGS COPYING CREDITS README WhatsNew docs.html
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11 @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL11
.endfor .endfor
@ cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \ @cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \
(cd ${PREFIX}/share/doc/SDL11; ${TAR} --unlink -xf - ) (cd ${PREFIX}/share/doc/SDL11; ${TAR} --unlink -xf - )
.endif .endif

View File

@ -1,5 +1,5 @@
--- configure.orig Fri Aug 4 22:23:00 2000 --- configure.orig Fri Aug 4 22:23:00 2000
+++ configure Mon Aug 7 15:44:03 2000 +++ configure Fri Aug 25 06:50:42 2000
@@ -603,7 +603,7 @@ @@ -603,7 +603,7 @@
SDL_MAJOR_VERSION=1 SDL_MAJOR_VERSION=1
SDL_MINOR_VERSION=1 SDL_MINOR_VERSION=1
@ -30,3 +30,20 @@
# Check whether --enable-audio or --disable-audio was given. # Check whether --enable-audio or --disable-audio was given.
@@ -4448,8 +4448,6 @@
#include <vga.h>
#include <vgamouse.h>
#include <vgakeyboard.h>
- #include <linux/kd.h>
- #include <linux/keyboard.h>
int main() {
@@ -5166,6 +5164,7 @@
CheckESD
CheckX11
CheckAAlib
+ CheckSVGA
CheckOpenGL
CheckPTHREAD
# Set up files for the main() stub

View File

@ -26,7 +26,6 @@ include/SDL11/begin_code.h
include/SDL11/close_code.h include/SDL11/close_code.h
lib/libSDL-1.1.so.2 lib/libSDL-1.1.so.2
lib/libSDL-1.1.a lib/libSDL-1.1.a
lib/libSDL-1.1.la
lib/libSDL-1.1.so lib/libSDL-1.1.so
lib/libSDLmain-1.1.a lib/libSDLmain-1.1.a
share/aclocal/sdl11.m4 share/aclocal/sdl11.m4