diff options
author | avilla <avilla@FreeBSD.org> | 2012-07-02 16:31:04 +0800 |
---|---|---|
committer | avilla <avilla@FreeBSD.org> | 2012-07-02 16:31:04 +0800 |
commit | 29e0ba946ca0cad09786d20c649c81207b6b71d0 (patch) | |
tree | ca3b940443c7fcff6b237095bb6c146b227c7b26 /multimedia/mlt/Makefile | |
parent | f7d228b8217180bc65be5407a803c3c2960e1c1b (diff) | |
download | freebsd-ports-gnome-29e0ba946ca0cad09786d20c649c81207b6b71d0.tar.gz freebsd-ports-gnome-29e0ba946ca0cad09786d20c649c81207b6b71d0.tar.zst freebsd-ports-gnome-29e0ba946ca0cad09786d20c649c81207b6b71d0.zip |
- Update to 0.8.0.
- Enable GPLv3 components.
- Fix build on 9-STABLE after MFC of xlocale. [1]
- Mark CONFLICTS_INSTALL with archivers/freeze. [2]
The minor version is increased due to the addition of time properties!
In addition:
* improve seek speed on AVCHD when using FFmpeg v0.9.1+;
* composite and dissolve speed improvements on x86-64;
* improve performance of caching in image producers;
* add device enumeration to decklink producer and consumer.
PR: 168766 [1]
Reported by: conflicts checker [2]
Submitted by: Christian Mangin <christian.mangin@gmail.com> [1]
Oliver Brandmueller via email [1]
Diffstat (limited to 'multimedia/mlt/Makefile')
-rw-r--r-- | multimedia/mlt/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/multimedia/mlt/Makefile b/multimedia/mlt/Makefile index fe64e561f216..5108beeca29d 100644 --- a/multimedia/mlt/Makefile +++ b/multimedia/mlt/Makefile @@ -5,29 +5,34 @@ # $FreeBSD$ PORTNAME= mlt -PORTVERSION= 0.7.8 -PORTREVISION= 1 +PORTVERSION= 0.8.0 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= avilla@FreeBSD.org COMMENT= Multimedia framework and video playout server for TV broadcasting -LICENSE= LGPL21 GPLv2 +LICENSE= LGPL21 GPLv2 GPLv3 LICENSE_COMB= multi LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING LICENSE_FILE_GPLv2= ${WRKSRC}/GPL +LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg +# They both install bin/melt. +CONFLICTS_INSTALL= freeze-[0-9]* + USE_GNOME= gnomehack libxml2 USE_SDL= image GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-gpl --linsys-with-jpeg +CONFIGURE_ARGS= --enable-gpl --enable-gpl3 --linsys-with-jpeg USE_GMAKE= yes MAKE_JOBS_SAFE= yes USE_LDCONFIG= yes +PLIST_SUB+= PORTVERSION="${PORTVERSION}" + # Required at least for frei0r detection. CFLAGS+= -I${LOCALBASE}/include |