diff options
author | xmj <xmj@FreeBSD.org> | 2014-11-23 00:23:34 +0800 |
---|---|---|
committer | xmj <xmj@FreeBSD.org> | 2014-11-23 00:23:34 +0800 |
commit | 7ed6ffb0684e6f6b2941842f6f48af6384d96e6a (patch) | |
tree | 69858a5647bf444b8dbaae3a0602f21ce314cc16 /x11 | |
parent | 3d249881a1fbea4311dce69fd794b3526df0f004 (diff) | |
download | freebsd-ports-gnome-7ed6ffb0684e6f6b2941842f6f48af6384d96e6a.tar.gz freebsd-ports-gnome-7ed6ffb0684e6f6b2941842f6f48af6384d96e6a.tar.zst freebsd-ports-gnome-7ed6ffb0684e6f6b2941842f6f48af6384d96e6a.zip |
multimedia/x264: General overhaul
- Split x264 into two ports: the CLI application (x264), and the library
(libx264). This will allow x264 to use lavf and friends from ffmpeg for
decoding and demuxing while preventing a circular dependency between the
two: x264 can depend on ffmpeg, but ffmpeg will depend on libx264 rather
than x264.
- Add the LAVF option to the CLI port, making the dependency on ffmpeg
optional.
- Update to 0.142.2455.
- Amend fixes to local patches so that they can apply to the new upstream
files.
- Provide the git revision and other version information to the build
environment, allowing the CLI binary to display this information (like the
Windows builds).
- Remove unsupported build options (X11_OUTPUT).
- Ensure that the library and CLI ports each have the appropriate options.
- Add notes for future contributors who wish to update the ports.
- Bump PORTREVISION for all dependent ports.
PR: 187805
Differential Revision: https://reviews.freebsd.org/D1159
Submitted by: Andrew Berg <aberg010@my.hennepintech.edu>
Approved by: koobs (maintainer, mentor)
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xpra/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/xpra/Makefile b/x11/xpra/Makefile index e33d65844d6c..8e318c69e809 100644 --- a/x11/xpra/Makefile +++ b/x11/xpra/Makefile @@ -3,7 +3,7 @@ PORTNAME= xpra PORTVERSION= 0.12.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolki setxkbmap:${PORTSDIR}/x11/setxkbmap \ pulseaudio:${PORTSDIR}/audio/pulseaudio \ ssh-askpass:${PORTSDIR}/security/openssh-askpass -LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/x264 \ +LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/libx264 \ libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ libvpx.so:${PORTSDIR}/multimedia/libvpx |