diff options
author | marino <marino@FreeBSD.org> | 2016-09-25 00:10:39 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-09-25 00:10:39 +0800 |
commit | 996ccd706b92eb503ecb6cd6bcc9c6596d44f9c1 (patch) | |
tree | 749f71f6f4be1e138e54d9b53f4fdcc2aef7e32d /lang | |
parent | 012622ab75db4a00ba16e3a0ebff27e2fe493f72 (diff) | |
download | freebsd-ports-gnome-996ccd706b92eb503ecb6cd6bcc9c6596d44f9c1.tar.gz freebsd-ports-gnome-996ccd706b92eb503ecb6cd6bcc9c6596d44f9c1.tar.zst freebsd-ports-gnome-996ccd706b92eb503ecb6cd6bcc9c6596d44f9c1.zip |
lang/fpc-units: Set VLC unit as a non-default option
Due to the VLC included in KDE, the fpc-units metapackage package coexist
with the KDE metapackage due to FPC's VLC unit requiring QT5.
Until such time where they can coexist, the FPC VLC unit will not be an
on-by-default option to remove this install conflict.
PR: 212919
Reported by: Ian Goddard (bz at austonley.org.uk)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/fpc-units/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lang/fpc-units/Makefile b/lang/fpc-units/Makefile index c3b1ed45f58e..3cfcc8e77f28 100644 --- a/lang/fpc-units/Makefile +++ b/lang/fpc-units/Makefile @@ -3,7 +3,7 @@ PORTNAME= units PORTVERSION= 3.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang PKGNAMEPREFIX= fpc- @@ -26,8 +26,11 @@ ALL_OPTIONS= A52 ASPELL BFD BZIP2 CAIRO CHM DBLIB DBUS DTS FASTCGI \ RTL_EXTRA RTL_OBJPAS RTL_UNICODE SDL SVGALIB SYMBOLIC \ SYSLOG TCL UNZIP USERS UTMP UUID X11 XFORMS ZLIB +# per PR 212919, the inclusion of the VLC unit will cause pkg(8) to require +# the deinstallation of KDE, so it's not a default option until furter notice + OPTIONS_DEFINE:= ${ALL_OPTIONS} -OPTIONS_DEFAULT:= ${ALL_OPTIONS} +OPTIONS_DEFAULT:= ${ALL_OPTIONS:NLIBVLC} A52_DESC= Interface to a52 library ASPELL_DESC= Interface to aspell spelling checker |