summaryrefslogtreecommitdiff
path: root/devel/smpeg
AgeCommit message (Collapse)AuthorFilesLines
2004-06-26move smpeg to multimedia/grant8-155/+0
2004-06-15bump PKGREVISION for lastgrant1-2/+2
2004-06-15- needs a c and c++ compilergrant1-1/+9
- needs -lCrun when building with SunPro so programs that link against libsmpeg.so can resolve all symbols. - USE_GCC_SHLIB
2004-04-24No longer used.snj1-23/+0
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-4/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-03-01Make this package build on amd64.kristerw2-1/+15
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-5/+3
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-08Use LIBTOOL_OVERRIDE instead of LTCONFIG_OVERRIDE.snj2-3/+3
Fix an English error in DESCR. Okayed by wiz.
2004-02-07Use CXXLINK instead of LINK in some placeswiz2-1/+25
to fix build on -current.
2004-02-05The long awaited update libtool to 1.5.2.skrll1-2/+1
Some pkgsrc things - Fix PLISTs for packages that use -release - Include canonicalisation of a couple of paths for the benefit of qt3-* - the normal version=sunos patching - fix all library_names_spec for the standard set of symlinks The libtool things some of which had already made it into pkgsrc libtool. New in 1.5.2: 2004-01-25; CVS version 1.5.0a, Libtool team: * lt_dlrealloc is an official part of the libltdl API. * --tag, --silent and --debug options are preserved and reused when libtool calls itself for relinking etc. * `-pthread' and similar options are honoured when linking shared libraries. * -no-suppress in compile mode shows compiler output for both PIC and non-PIC object compilation. * New link mode option `-precious-files-regex' to prevent accidental removal of files you want to keep, such as test coverage data, from the temporary output directory. * Directories specified in /etc/ld.so.conf are no longer hardcoded on Linux. * Recognises the 'R' symbol type on Solaris so read-only symbols can be exported. * Bug fixes. New in 1.5: 2003-04-14; CVS version 1.4e, Libtool team: * First stable release of multi-language architecture. * libtool and libltdl support for Mac OS/X. * libltdl will now use cygwins dlopen API instead of always forcing LoadLibrary. * Support auto-import patch to binutils on cygwin for much improved dll support. * Bug fixes. New in 1.4.3: 2002-10-13; CVS version 1.4.2a, Robert Boehne: * The libltdl subdirectory now bootstraps correctly with Automake 1.5. * srcdir != builddir builds with Automake 1.5 work correctly. * Support for mips-compaq-nonstopux. * New command line argument, --preserve-dup-deps prevents removal of duplicate dependent libraries. New in 1.4d: 2002-01-07; CVS version 1.4c, Libtool team: * Help strings display correctly again. * Better error messages when library linking fails. * Better error messages from libltdl when loading fails. * Better search path management in libltdl with `lt_dlinsertsearchdir' call. * Support /lib/w32api in recent cygwin releases. * Support cross compilation to mingw. * Support for .rc files (Windows resource compiler). * Improved handling of mingw gcc. * Improved handling of $PATH with entries containing spaces. * Improved support for linking with gcc on aix4* and aix5*. * Improved support for GCC 3.0. * Initial support for QNX RTOS, UnixWare 7 and OpenUNIX 8. * Bug fixes to the OpenBSD port. * Bug fixes. New in 1.4.2: 2001-09-11; CVS version 1.4.1a, Gary V. Vaughan: * libltdl now builds on solaris again * diagnose and warn about not-quite-working combinations of gcc and ld on solaris. * Improved OpenBSD support. * Improved cygwin support. * Bugfixes. New in 1.4.1: 2001-09-03; CVS version 1.4.0a, Libtool team: * Better error messages from libltdl when loading fails. * Don't leave here-doc files behind. * Improved support for OpenBSD. * Libtool will build with autoconf-2.50 and higher. * Plug memory management bugs in libltdl. * Prefer shl_load to dlopen for better operation on HP-UX. New in 1.4b: 2001-07-09; CVS version 1.4a, Libtool team: * Now bootstraps with autoconf-2.50 and automake-1.4-p4. * Always try to build at least a static lib, even if both static and shared libs were disabled. * Full support for C++ compiler. * Support for GNU gcj compiler. * libltdl can now load all modules in a given path according to user supplied criteria with `lt_dlforeachfile' call. * Improved support for AIX ia64, djgpp, HPUX, hurd, OpenBSD, sco3.2*. * Internal mutex handling no longer has namespace clashes on NCR MP-RAS. * New pdemo and tagdemo tests. * Bug fixes.
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-2/+2
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-05bl3ifyjlam1-5/+7
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-9/+6
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+22
buildlink3 framework.
2003-11-30As pointed out by jlam:jschauma1-2/+2
bump PKGREVISION on packages depending on graphics/glu due to latest shlib changes there.
2003-07-28Add patch to fix audio output problem in plaympeg. From soren@blef.org injmmv2-1/+28
PR pkg/20204.
2003-07-28Depend on glu, needed to build the GL movie player. Bump PKGREVISION to 4.jmmv1-2/+3
Hopefully fixes problems shown by Hubert's bulk build.
2003-07-26Bump revision due to SDL update, and sync versions in buildlink files wherejmmv2-4/+4
needed. This is required because esound has been droped as a dependancy.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz2-4/+4
2003-06-09Fix typo reported in PR 21826 by yaranaika, and pipe through fmt.wiz1-3/+4
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz2-3/+4
dependency bumps.
2003-03-26libsmpeg is linked against libintl, so include gettext-lib's buildlink2.mkwiz1-1/+2
to avoid build failures from packages using this package. Debugged by Quentin Garnier, thanks!
2002-12-15Update smpeg to 0.4.4.jmmv3-7/+7
Changes since 0.4.3: * Fixed some hangs that occurred when seeking in MPEG files * Reworked the looping code - it should work better now * Fixed memory leak when sound was disabled * Widened initial search for audio streams in MPEG files * plaympeg now shows the name of the MPEG file in the caption * Added a check for the socklen_t type (thanks Michael Pruett) * Fixed crash with incorrectly encoded macroblock sequences * Fixed crash when the MPEG file can't be opened * Fixed crash in gtv when seeking without a file loaded Patch provided in PR pkg/19389 by Juan RP, with some minor modifications by me.
2002-08-28Remove buildlink.mk files that aren't used by any other files in pkgsrc.jlam1-50/+0
2002-08-27buildlink1 -> buildlink2jlam1-5/+6
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-0/+22
buildlink2.mk files back into the main trunk.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-03bsd.buildlink.mk will automatically handle the REPLACE_BUILDLINK stuff, sojlam1-2/+1
we can remove REPLACE_BUILDLINK settings containing *-config, *Conf.sh, and *.pc.
2001-10-03Substitute the real config script for the config wrapper script injlam1-1/+3
installed files. We don't want buildlink references to escape into the install directory.
2001-08-17If USE_CONFIG_WRAPPER is defined (implied by USE_BUILDLINK_ONLY), thenjlam1-2/+3
set FOO_CONFIG=${BUILDLINK_CONFIG_WRAPPER.foo} in both CONFIGURE_ENV and MAKE_ENV. We remove the check for GNU_CONFIGURE because if a package Makefile includes the buildlink.mk file, then it most likely wants to use the config script wrappers as well. Change suggested by Hubert Feyrer (hubertf) and Tomasz Luchowski (zuntum).
2001-07-27Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the defaultjlam1-1/+2
installation directory in case the package isn't installed.
2001-07-20Mechanical changes to buildlink.mk files to use EVAL_PREFIX to setjlam1-3/+3
BUILDLINK_PREFIX.<pkgname>. This allows buildlink to find X11BASE packages regardless of whether they were installed before or after xpkgwedge was installed. Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-02Allow overriding of *_CONFIG variables in a package Makefile when usingjlam1-2/+3
USE_BUILDLINK_ONLY.
2001-07-01Move inclusion of bsd.buildlink.mk to start of file.jlam1-3/+3
2001-06-29USE_CONFIG_WRAPPER is automatically set if USE_BUILDLINK_ONLY is defined,jlam1-2/+1
so remove it from package Makefiles. Also move the inclusion of the buildlink.mk files to the end of the Makefile to just before bsd.pkg.mk to ensure that any Makefile settings occur before the buildlink.mk files.
2001-06-28The only consumer of smpeg wants >=0.4.3, so make that the default.jlam1-2/+2
2001-06-28Use the correct version number in the dependency line.jlam1-2/+2
2001-06-28- Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam2-4/+54
- Add buildlink.mk file for use by other package Makefiles.
2001-06-28Use LTCONFIG_OVERRIDE instead of patching configure script.jlam3-17/+5
2001-06-26o remove my buildlink.mk hacks until I find out why ${BUILDLINK_DIR} is ↵zuntum1-20/+6
/usr/pkgsrc/[...] but smpeg-config contains /usr/_cvs_/pkgsrc/[...]
2001-06-26o fix smpeg-config script by removing buildlink directory referenceszuntum1-1/+14
(oops)
2001-06-26o converted to use buildlink.mkzuntum1-7/+8
2001-05-17Update smpeg to 0.4.3. Changes:hubertf3-9/+11
0.4.3: * Updated for Simple DirectMedia Layer version 1.2.0 * Fixed crash in gtv when doubling the video on Windows * Fixed audio stream detection in non-standard MPEG streams * Fixed hang on rewind when stream header contains no timestamp * SMPEG now uses the SDL_RWops file abstraction internally * Fixed bug where the audio was not updating the current time * Added some changes for the popcorn MPEG library * Added smpeg.m4 * SDL 1.2.0 supports 24 bpp displays, allow that in plaympeg * Ported to MacOS X - one line fix. I love portable code! :) It's still unusably slow, but it works! :) * Fixed a hang playing invalid MPEG files * Fixed memory leak when used with OpenAL * Return a non-zero status from plaympeg if playback fails * Changes to compile correctly on QNX RTP * Fixed SMPEG_renderFinal() to a different display surface * Fixed plaympeg fullscreen toggling for multiple videos * Fixed MPEGSystem::TotalTime() hanging on small files * Fixed system header decoding (caused misdetection of system streams) * Added bilinear filter toggling with the 'f' key in plaympeg * Use the correct SDL configuration script on FreeBSD 0.4.2: * Check for the GLU library when seeing if we can build the OpenGL example * Fixed crash when loading files of zero bytes * Added --enable-threaded-system configure option (defaults off) * Fixed end of stream detection * Fixed crashes in gtv when trying to play MP3 files with no video * Disabled the system thread by default. You can re-enable it by looking for USE_SYSTEM_THREAD in MPEGsystem.cpp * Fixed RenderFinal() to a different surface than the original one * Fixed seeking in MPEG files * Fixed crash in system data decoding * Removed movie size limitations from glmovie, works great! * Fixed hang when audio data was partially corrupt in the first block * Fixed bug where audio was always mono * Fixed UDP port binding for raw:// MPEG support * Fixed spurious empty audio buffer at start of playback * SMPEG_playAudio() now returns the amount of audio data mixed * SMPEG_playAudioSDL() wraps SMPEG_playAudio, as a callback hook for SDL. * Added a configure option --disable-threaded-audio * Fixed various compiler warnings * Added abstraction support for hardware acceleration (no card support yet) * Fixed lseek problem on FreeBSD
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-19Fix PLIST problem noted by recent alpha bulk build.skrll1-2/+1