diff options
author | obache <obache@pkgsrc.org> | 2010-03-03 08:44:38 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-03-03 08:44:38 +0000 |
commit | 6d5e188a76824756cf3d7e0a08b8e7a65bfa2544 (patch) | |
tree | 94effa84de34ab10bdf7ab89c924a1a13654aa1d /multimedia/libdv-tools | |
parent | 6dfe709f1d3a55def98645ab3f0a221f18ecb75a (diff) | |
download | pkgsrc-6d5e188a76824756cf3d7e0a08b8e7a65bfa2544.tar.gz |
Update libdv (and tools) to 1.0.0.
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.
Diffstat (limited to 'multimedia/libdv-tools')
-rw-r--r-- | multimedia/libdv-tools/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/multimedia/libdv-tools/Makefile b/multimedia/libdv-tools/Makefile index dbc1e4652bd..1495cc9ef36 100644 --- a/multimedia/libdv-tools/Makefile +++ b/multimedia/libdv-tools/Makefile @@ -1,18 +1,19 @@ -# $NetBSD: Makefile,v 1.3 2006/04/06 06:22:25 reed Exp $ +# $NetBSD: Makefile,v 1.4 2010/03/03 08:44:39 obache Exp $ .include "../../multimedia/libdv/Makefile.common" PKGNAME= ${DISTNAME:S/-/-tools-/} -PKGREVISION= 1 COMMENT+= (standalone tools) -CONFIGURE_ARGS:= ${CONFIGURE_ARGS:S/--disable-gtk/--enable-gtk/g} +USE_TOOLS+= pkg-config -BUILD_DIRS= ${WRKSRC}/encodedv ${WRKSRC}/playdv -INSTALL_DIRS= ${WRKSRC}/encodedv ${WRKSRC}/playdv +CONFIGURE_ARGS+= --enable-gtk -BUILDLINK_API_DEPENDS.libdv+= libdv>=0.104nb1 +BUILD_DIRS= encodedv playdv +INSTALL_DIRS= encodedv playdv + +BUILDLINK_API_DEPENDS.libdv+= libdv>=1.0.0 .include "../../devel/glib/buildlink3.mk" .include "../../multimedia/libdv/buildlink3.mk" |