diff options
author | jmcneill <jmcneill@pkgsrc.org> | 2009-01-14 22:30:46 +0000 |
---|---|---|
committer | jmcneill <jmcneill@pkgsrc.org> | 2009-01-14 22:30:46 +0000 |
commit | 1996165d025441a0986b77c2f5166f69c7d80636 (patch) | |
tree | 8222694d1e30b5a09f30af7d7b40188a0c1da4da /multimedia/libdvdnav/Makefile | |
parent | b24c974ebb12aae8f6424e503f31cc7503c644b6 (diff) | |
download | pkgsrc-1996165d025441a0986b77c2f5166f69c7d80636.tar.gz |
Update to libdvdnav version 4.1.3. libdvdnav is now maintained by the
mplayer project, and the next release after 0.1.10 (the one we're coming
from) was 4.1.1.
libdvdnav (4.1.3)
* an embarassing amount of fixes regarding potential memory and resource leaks
(patches contributed by Erik Hovland)
* added dvdread-config (dvdnav-config's younger brother)
* added pkg-config support
* split dvdread to a separate tree; now you need to check it out
and install it before building libdvdnav.
In order to configure libdvdnav We need the executable dvdread-config
somewhere in the PATH or explicitly specified to configure[2] with
--with-dvdread-config=~/bin/dvdread-config
libdvdnav (4.1.2)
* multiple build system fixes
* added dvdnav_describe_title_chapters(title) to get title and chapters
duration
libdvdnav (4.1.1)
* added dvdnav_audio_stream_channels() to return number of channels
* fixed dvdnav_time_search() in multi-angle dvds (but it still needs
improvements)
* added dvdnav_audio_stream_format() to identify the codec used
in audio streams
* starting DVD playback at specific title/part positions with
dvdnav_{title,part}_play() works again
* removed wrong SPU stream change event filter
(fixes unwanted subtitles in the trailer of "Girl, interrupted", RC2)
* fixed error "Expected NAV packet but none found." occuring sometimes
on resume from menu
Diffstat (limited to 'multimedia/libdvdnav/Makefile')
-rw-r--r-- | multimedia/libdvdnav/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/multimedia/libdvdnav/Makefile b/multimedia/libdvdnav/Makefile index 7dcb8ad9713..eebc09de713 100644 --- a/multimedia/libdvdnav/Makefile +++ b/multimedia/libdvdnav/Makefile @@ -1,19 +1,24 @@ -# $NetBSD: Makefile,v 1.7 2007/07/01 16:00:10 heinz Exp $ +# $NetBSD: Makefile,v 1.8 2009/01/14 22:30:46 jmcneill Exp $ # -DISTNAME= libdvdnav-0.1.10 -PKGREVISION= 1 +DISTNAME= libdvdnav-4.1.3 CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dvd/} +MASTER_SITES= http://www.mplayerhq.hu/MPlayer/releases/dvdnav/ +EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://dvd.sourceforge.net/ +HOMEPAGE= http://www.mplayerhq.hu/ COMMENT= Library to navigate DVDs PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= YES USE_LIBTOOL= YES +USE_TOOLS+= automake autoconf aclocal autoreconf +pre-configure: + cd ${WRKSRC} && autoreconf -vi + +.include "../../multimedia/libdvdread/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |