87d0f96551
Fix socklen_t check in acinclude.m4 to work for OpenBSD (at least) Changelog: * Fixed some hangs that occured 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 (was broken -pval) * Fixed crash with incorrectly encoded macroblock sequences * Fixed a crash when the MPEG file can't be opened * Fixed crash in gtv when seeking without a file loaded
36 lines
914 B
Makefile
36 lines
914 B
Makefile
# $OpenBSD: Makefile,v 1.5 2001/06/28 00:56:57 pvalchev Exp $
|
|
|
|
COMMENT= "mpeg video player library with sound support"
|
|
|
|
VERSION= 0.4.4
|
|
DISTNAME= smpeg-${VERSION}
|
|
CATEGORIES= devel graphics
|
|
NEED_VERSION= 1.417
|
|
|
|
HOMEPAGE= http://www.lokigames.com/development/smpeg.php3
|
|
|
|
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://sunsite.auc.dk/pub/os/linux/loki/%SUBDIR%/ \
|
|
ftp://snuffleupagus.animearchive.org/loki/%SUBDIR%/ \
|
|
ftp://ftp.linuxgames.com/pub/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= open-source/smpeg
|
|
|
|
LIB_DEPENDS= gtk.1.2::x11/gtk+ \
|
|
SDL.0.1:sdl-*-!no_x11:devel/sdl
|
|
|
|
USE_X11= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${X11BASE}/lib"
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--disable-opengl-player
|
|
|
|
.include <bsd.port.mk>
|