6d5e188a76
2006-09-25 Dan Dennedy <dan@dennedy.org> * libdv 1.0.0 release. 2006-09-03 Dan Dennedy <dan@dennedy.org> * libdv/encode.c, libdv/enc_output.c: apply patch (1550898) from Craig Lawson to prevent noise when dv_encode_full_audio() is called with zero samples. 2006-08-06 Dan Dennedy <dan@dennedy.org> * libdv/*.S: apply patch from Mike Frysinger <vapier@gentoo.org> to cleanup assembly symbols by hiding them and/or setting their type. * configure.ac, Makefile.am: apply patch from Burkhard Plaum to automatically disable GTK-based features (playdv) when GTK+ 1.2 is not found and to fix dist make target behavior with GTK+ disabled. * libdv/Makefile.am: bump libtool revision. * configure.ac: bump project version to 1.0.0. 2006-04-10 Dan Dennedy <dan@dennedy.org> * playdv/playdv.c: bugfix segfault on exit due to dv_display_exit being called twice. 2006-03-06 Dan Dennedy <dan@dennedy.org> * mmx.h: apply patches from Zan Lynx and Richard Guenther to fix x86 compilation on gcc 4.1. 2006-01-15 Dan Dennedy <dan@dennedy.org> * encode.c: apply patch from Burkhard Plaum to use gcc destructor attribute to invoke dv_cleanup() when unloading libdv after loading dynamically and thereby fixing a memory leak. * playdv.c: bugfix segfault on exit due to dv_display_exit() being called twice: once in main() and second in atexit handler created by dv_display. Thanks for hint provided by Jean-Francois Panisset. 2005-01-31 Dan Dennedy <dan@dennedy.org> * *.S: apply patch from Nicholas Miell <nmiell@gmail.com> to not require execution stack for assembler functions. 2004-12-20 Dan Dennedy <dan@dennedy.org> * vlc.h, mmx.h: apply patch from Daniel Kobras to improve compile compatibillity by making extern inline, static inline. 2004-12-12 Dan Dennedy <dan@dennedy.org> * *_x86_64.S: apply patch from Dean Kolosiek to fix linker compatibility.
46 lines
1.2 KiB
Text
46 lines
1.2 KiB
Text
# $NetBSD: Makefile.common,v 1.11 2010/03/03 08:44:38 obache Exp $
|
|
#
|
|
# used by multimedia/libdv-tools/Makefile
|
|
|
|
DISTNAME= libdv-1.0.0
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libdv/}
|
|
|
|
MAINTAINER= tech-pkg-ja@jp.NetBSD.org
|
|
HOMEPAGE= http://libdv.sourceforge.net/
|
|
COMMENT= DV video codec library
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../multimedia/libdv/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../multimedia/libdv/patches
|
|
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
PKGCONFIG_OVERRIDE= ${WRKSRC}/libdv.pc.in
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if (${OPSYS} == "Darwin") || empty(MACHINE_PLATFORM:M*-*-i386) || (${OPSYS} == "Interix")
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
|
|
.if ${X11_TYPE} != "native"
|
|
.include "../../x11/libXv/buildlink3.mk"
|
|
.elif !exists(${X11BASE}/include/X11/extensions/Xvlib.h)
|
|
CONFIGURE_ARGS+= --disable-xv
|
|
.endif
|
|
|
|
LIBS+= ${LIBOSSAUDIO}
|
|
.if empty(CFLAGS:M-O*)
|
|
CFLAGS+= -O
|
|
.endif
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../mk/oss.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|