summaryrefslogtreecommitdiff
path: root/devel/SDL
AgeCommit message (Collapse)AuthorFilesLines
2006-11-06Switch to modular buildlinks.joerg2-4/+6
XXX Should libX11 be a build dependency?
2006-10-09Flag a number of packages I use as supporting (user-)destdir.joerg1-1/+3
apg is a bit special as it has some hardcoded ownership, so mark that as "destdir".
2006-10-08Fix patch-aa to correctly use strcat, and to be C89 compliant.ben2-22/+23
Patch supplied by Christian Biere in PR#34738.
2006-09-19Include x11.b3.mk since SDL/SDL_syswm.h includes Xlib.h.joerg1-1/+3
2006-08-04Don't try and do assembler on Solaris, it doesn't get it right.markd1-2/+4
Fixes PR pkg/31075.
2006-08-03Added two patches for Solaris 8. The X11 implementation does not definerillig3-1/+33
the xEvent structure unless NEED_EVENTS is defined.
2006-07-23Disable wscons backend on NetBSD (it was written for OpenBSD).wiz1-1/+6
This fixes the configure step of games/asc. Bump PKGREVISION.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-07Add direct dependency on libiconv.wiz2-2/+4
With default options, this was pulled in via arts->glib2->libiconv, so no (and especially no recursive) PKGREVISION bump.
2006-07-04Exclude Darwin also in buildlink3.mkadam1-2/+2
2006-07-03Update to 1.2.11:wiz3-8/+8
SDL 1.2.11 is a minor bug fix release. Unix Notes Dynamic X11 loading is only enabled with gcc 4 supporting -fvisibility=hidden. This fixes crashes related to symbol collisions, and allows building on Solaris and IRIX. Fixed building SDL with Xinerama disabled. Fixed DRI OpenGL library loading, using RTLD_GLOBAL in dlopen(). Added pkgconfig configuration support. Mac OS X Notes The Quartz video driver supports 32x32 cursors on Mac OS X 10.3 and above.
2006-07-03Remove unneeded chunk, noted by markd.wiz1-7/+1
2006-07-03MacOSX also provides GL, so avoid depending on GL onthat platformtonio1-3/+3
2006-07-01Revert previous because it changed the libraries libSDL was linked to.jmmv3-4/+43
Instead, try to dlopen the libraries straight from the directories they are in. Bump PKGREVISION to 2. Requested and reviewed by wiz@.
2006-07-01Disable dlopen for libraries and instead link the SDL library to themjmmv1-1/+4
directly. This didn't work because dlopen uses the rpath of the foremost binary (not libSDL's one); therefore, some libraries could not be found. For example, qemu was not working at all because it only has PREFIX in its rpath, not X11PREFIX, and so libSDL could not load libX11 resulting in a very strange error message. There seem to be other problems such as the aalib video output crashing or the wscons output not working, but these aren't very important (maybe the problems have already gone away with this fix, I don't know). Anyway, I think the former is fixed in 1.2.11. Bump PKGREVISION to 1.
2006-06-15Make aalib an option, enabled by defaultadam3-18/+18
2006-06-13We don't need to include buildlink3 files for "arts" and "esound" becausetron1-9/+1
they are properly dlopen()ed. Pointed out by Thomas Klausner.
2006-06-13Include buildlink3 files for "arts", "esound" and "nas" if support fortron1-1/+21
these package has been compiled into the "SDL" package. Based on a patch provided by Thomas Klausner in private e-mail.
2006-06-12Update to 1.2.10.wiz22-1811/+147
Package changes: Merge SDL-arts, SDL-esound, and SDL-nas packages back as options, all defaulting to on (add "-arts -esound -nas" to PKG_OPTIONS.SDL to get the previous behaviour of this package). Reason: trying to get and stay in sync with upstream, who decided not to take back the relevant changes. Ok jmmv@ Also follow upstream w.r.t. library version numbers; bump BUILDLINK_API_DEPENDS for that (no real reason to diverge here). Most patches have been integrated upstream. Changes in 1.2.10: 1.2.10: If SDL_OpenAudio() is passed zero for the desired format fields, the following environment variables will be used to fill them in: SDL_AUDIO_FREQUENCY SDL_AUDIO_FORMAT SDL_AUDIO_CHANNELS SDL_AUDIO_SAMPLES If an environment variable is not specified, it will be set to a reasonable default value. Added support for the SDL_VIDEO_FULLSCREEN_HEAD environment variable, currently supported on X11 Xinerama configurations. Added SDL_GL_SWAP_CONTROL to wait for vsync in OpenGL applications. Added SDL_GL_ACCELERATED_VISUAL to guarantee hardware acceleration. Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set. SDL_SetVideoMode() now accepts 0 for width or height and will use the current video mode (or the desktop mode if no mode has been set.) Added SDL_GetKeyRepeat() Added SDL_config.h, with defaults for various build environments.
2006-04-11On Darwin, use g++ to link instead of gcc since some C++ code is compiled.minskim1-1/+7
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam1-2/+2
Remove deprecated ossaudio.buildlink3.mk.
2006-03-09Always override the path to the OSS DSP device with the one that pkgsrcjlam1-3/+2
has already determined.
2006-02-07Fix a pkglint warning.wiz1-4/+4
2006-02-07Remove some chunks that should not be necessary any longer.wiz5-198/+55
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2005-12-23Update BUILDLINK_RECOMMENDED for aalib dependency change.wiz1-2/+2
Noted by reed@.
2005-12-11Convert aalib to options framework, adding an 'x11' option, and removewiz3-5/+6
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-09-07Changes 1.2.9:adam12-160/+105
* Added support for direct color 8-bpp surfaces * Altivec optimized blitters * SDL.dll works on Windows 95 again * Dropping a document onto an SDL app passes it as a command line parameter in MacOS X * Fixed crash trying to allocate hardware surfaces on MacOS X * Fixed short read problem with SDL_RWFromMem() * Fixed gcc parse errors in SDL_audio.h on Windows * Added support for Tru64 UNIX 4.X * Improved RISC OS support * Numerous improvements to the Atari port * SDL_OPENGLBLIT is officially obsolete
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam2-4/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Better DragonFlyBSD support from Joerg Sonnenberger.wiz4-28/+141
. find USB headers . fix joystick support
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-20Support for DragonFlyBSD, based on patches from Joerg Sonnenberger.wiz8-48/+176
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-27Bump PKGREVISION for removal of glut dependency.wiz1-1/+2
2005-03-27Use MesaLib/bl3 and glu/bl3 instead of Mesa/bl3, whichwiz2-4/+6
also pulls in an unnecessary dependency on glut. Addresses PR 29799 by Richard Rauch.
2005-03-07Fix quoting.uebayasi1-2/+2
2005-02-23Add RMD160 digests.agc1-1/+2
2005-01-12GCC 2 does not understand the MMX asm core. Fall back to the C sourcekristerw3-1/+38
for GCC 2.
2005-01-06The "+" constraint modifier was yoo much. While it seems correct to me, itdrochner2-4/+4
caused gcc complaints in some cases. Pointed out by Nicolas Joly. PR pkg/28882 should be fixed now.
2005-01-06tighten an inline asm constraint for amd64drochner2-1/+15
2005-01-05Changes 1.2.8:adam16-444/+124
* Fixed compiling under newer versions of gcc * Fixed floating point exception with Linux 2.6 joysticks * Added 4/6 channel surround sound support on ALSA (not 3D audio) * Fixed mouse coordinate inversion on MacOS X * Added a CoreAudio sound driver for MacOS X * Added MacOS X Xcode build environment support * Updated QNX support for QNX6 * Improved Atari port, including OSMesa support * Numerous other bug fixes and platform support improvements
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-24Document why we don't need Mesa on Irix.hubertf1-1/+2
If more pkgs like this are found that work fine with Irix' native GL, the Mesa buildlink3.mk file should take care of this.
2004-08-23Don't pull in Mesa on IRIX - patch by Staffan Thomén (duck@IRC)hubertf2-2/+8
2004-07-26Reduce audio delay in the *BSD audio driver (by configuring audiodillo3-7/+17
device with shorter block size and lower water marks). PKGREVISION++
2004-07-19Patch to make audio work on IRIX 5, from Georg Schwarz.wiz2-1/+66