Update to gengameng-4.1

This commit is contained in:
pvalchev 2003-01-21 09:35:50 +00:00
parent fd5c9f0dc9
commit 439b34130d
10 changed files with 50 additions and 55 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.8 2002/12/29 20:19:10 fgsch Exp $ # $OpenBSD: Makefile,v 1.9 2003/01/21 09:35:50 pvalchev Exp $
COMMENT= "X11 game engine library" COMMENT= "X11 game engine library"
VERSION= 4.0 VERSION= 4.1
DISTNAME= gengameng-${VERSION} DISTNAME= gengameng-${VERSION}
CATEGORIES= devel x11 CATEGORIES= devel x11
@ -15,17 +15,13 @@ PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://www3.sympatico.ca/sarrazip/dev/ MASTER_SITES= http://www3.sympatico.ca/sarrazip/dev/
PATCH_LIST= ${PORTSDIR}/infrastructure/patches/patch-lt1.3.3-ltconfig \
${PORTSDIR}/infrastructure/patches/patch-lt1.3.3-ltmain_sh \
patch-*
BUILD_DEPENDS= automake::devel/automake
LIB_DEPENDS= SDL::devel/sdl \ LIB_DEPENDS= SDL::devel/sdl \
SDL_image::devel/sdl-image SDL_image::devel/sdl-image
USE_X11= Yes USE_X11= Yes
USE_LIBTOOL= Yes
CONFIGURE_STYLE= autoconf CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ARGS+= --enable-static CONFIGURE_ARGS+= --enable-static

View File

@ -1,3 +1,3 @@
MD5 (gengameng-4.0.tar.gz) = 5cf2e685ded07a179fde8d2557ad13e7 MD5 (gengameng-4.1.tar.gz) = 112322dbdc6684717cdfd7c61d225655
RMD160 (gengameng-4.0.tar.gz) = e4d6b6c5d9275d668656c7590f4c5d586d268266 RMD160 (gengameng-4.1.tar.gz) = 5d41530c3c0e1a3c8e4e8c9776676ee50e086c19
SHA1 (gengameng-4.0.tar.gz) = 0749b1b869498ff851b34d3f41beddf4423b7984 SHA1 (gengameng-4.1.tar.gz) = ab49fd6e5732fd8bb3c24e650488fd2987fa3176

View File

@ -1,11 +0,0 @@
$OpenBSD: patch-Makefile_am,v 1.1 2001/12/28 21:34:18 pvalchev Exp $
--- Makefile.am.orig Sun Oct 7 23:13:46 2001
+++ Makefile.am Fri Dec 28 14:17:47 2001
@@ -1,6 +1,6 @@
# $Id: patch-Makefile_am,v 1.1 2001/12/28 21:34:18 pvalchev Exp $
-SUBDIRS = src macros examples
+SUBDIRS = src macros
EXTRA_DIST = \
bootstrap \

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-Makefile_in,v 1.1 2001/12/28 21:34:18 pvalchev Exp $ $OpenBSD: patch-Makefile_in,v 1.2 2003/01/21 09:35:51 pvalchev Exp $
--- Makefile.in.orig Sun Nov 25 12:28:00 2001 --- Makefile.in.orig Tue Apr 2 23:48:28 2002
+++ Makefile.in Fri Dec 28 14:23:37 2001 +++ Makefile.in Sat Jan 18 13:57:35 2003
@@ -84,7 +84,7 @@ SDL_CONFIG = @SDL_CONFIG@ @@ -94,7 +94,7 @@ am__include = @am__include@
SDL_LIBS = @SDL_LIBS@ am__quote = @am__quote@
VERSION = @VERSION@ install_sh = @install_sh@
-SUBDIRS = src macros examples -SUBDIRS = src macros examples
+SUBDIRS = src macros +SUBDIRS = src macros
EXTRA_DIST = bootstrap @PACKAGE@.spec @PACKAGE@.dsp @PACKAGE@Conf.sh bin_SCRIPTS = @PACKAGE@-config

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-aclocal_m4,v 1.1 2001/12/28 21:34:18 pvalchev Exp $
--- aclocal.m4.orig Fri Dec 28 13:48:05 2001
+++ aclocal.m4 Fri Dec 28 13:48:47 2001
@@ -521,8 +521,6 @@ dnl will be used. The default is "c++".
AC_DEFUN([WITH_CXX],
[
- CXXFLAGS="-g -Wall" # default compilation options
-
AC_ARG_WITH(cxx,
[ --with-cxx=PROG Specify program to use as C++ compiler [c++]],
[

View File

@ -0,0 +1,20 @@
$OpenBSD: patch-configure,v 1.1 2003/01/21 09:35:51 pvalchev Exp $
--- configure.orig Sat Jan 18 14:02:10 2003
+++ configure Sat Jan 18 14:02:23 2003
@@ -7158,7 +7158,7 @@ fi
pkgincludedir=$includedir/$package
-ac_config_files="$ac_config_files Makefile gengameng.spec gengameng-config macros/Makefile src/Makefile src/gengameng/Makefile src/images/Makefile examples/Makefile"
+ac_config_files="$ac_config_files Makefile gengameng.spec gengameng-config macros/Makefile src/Makefile src/gengameng/Makefile src/images/Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
@@ -7517,7 +7517,6 @@ do
"src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
"src/gengameng/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/gengameng/Makefile" ;;
"src/images/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/images/Makefile" ;;
- "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
*) { { echo "$as_me:7522: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}

View File

@ -1,9 +0,0 @@
$OpenBSD: patch-configure_in,v 1.1 2001/12/28 21:34:18 pvalchev Exp $
--- configure.in.orig Tue Oct 30 20:58:23 2001
+++ configure.in Fri Dec 28 14:14:18 2001
@@ -61,5 +61,4 @@ AC_OUTPUT([
src/Makefile
src/gengameng/Makefile
src/images/Makefile
- examples/Makefile
])

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-gengameng-config_in,v 1.1 2003/01/21 09:35:51 pvalchev Exp $
--- gengameng-config.in.orig Tue Jan 21 02:26:03 2003
+++ gengameng-config.in Tue Jan 21 02:26:12 2003
@@ -15,7 +15,7 @@ sdl_libs="`sdl-config --libs` -lSDL_imag
sdl_libs=`echo $sdl_libs | sed 's:-Wl,-rpath,[^ ]*: :g'`
-function usage()
+function usage
{
exit_code=$1

View File

@ -1,3 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.2 2001/12/28 21:34:18 pvalchev Exp $ @comment $OpenBSD: PFRAG.shared,v 1.3 2003/01/21 09:35:51 pvalchev Exp $
lib/libgengameng.so.4.0 lib/libgengameng.so.4.1
DYNLIBDIR(%B) DYNLIBDIR(%B)

View File

@ -1,13 +1,12 @@
@comment $OpenBSD: PLIST,v 1.2 2001/12/28 21:34:18 pvalchev Exp $ @comment $OpenBSD: PLIST,v 1.3 2003/01/21 09:35:51 pvalchev Exp $
bin/gengameng-config
include/gengameng/Couple.h include/gengameng/Couple.h
include/gengameng/GameEngine.h include/gengameng/GameEngine.h
include/gengameng/Gengameng_LoadCompiledXPM.h include/gengameng/Gengameng_LoadCompiledXPM.h
include/gengameng/PixmapArray.h include/gengameng/PixmapArray.h
include/gengameng/PixmapLoadError.h include/gengameng/PixmapLoadError.h
include/gengameng/Sprite.h include/gengameng/Sprite.h
lib/gengamengConf.sh
lib/libgengameng.a lib/libgengameng.a
lib/libgengameng.la lib/libgengameng.la
share/aclocal/gengameng.m4 share/aclocal/gengameng.m4
%%SHARED%%
@dirrm include/gengameng @dirrm include/gengameng