diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-10-04 10:15:02 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-10-04 10:15:02 +0000 |
commit | c73ccc788ebcd22b694504d943897436e3ff05eb (patch) | |
tree | 06ee13275b96dc8a058c51b7b13df9457f5a7067 | |
parent | a6a34c2ed2c84342acf4a8f130fadca36daf659f (diff) | |
download | freebsd-ports-c73ccc788ebcd22b694504d943897436e3ff05eb.zip |
Make the dependency on qt5-widgets explicit.
`make stage-qa` complained that the dependency on qt5-widgets had not been
declared, so declare it now. There is no effect in practice though, as the
port always ended up being installed as a dependency of other Qt5 ports.
MFH: 2016Q3
-rw-r--r-- | devel/zeal/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/zeal/Makefile b/devel/zeal/Makefile index 228c80f963c9..bbe385955cec 100644 --- a/devel/zeal/Makefile +++ b/devel/zeal/Makefile @@ -3,6 +3,7 @@ PORTNAME= zeal PORTVERSION= 0.2.1 DISTVERSIONPREFIX=v +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= rakuco@FreeBSD.org @@ -18,7 +19,7 @@ USES= compiler:c++11-lib desktop-file-utils libarchive \ pkgconfig qmake:outsource USE_GL= gl # Dependency added by qt5-gui. USE_GITHUB= yes -USE_QT5= concurrent core gui network sql webkit x11extras \ +USE_QT5= concurrent core gui network sql webkit wigets x11extras \ buildtools_build USE_XORG= x11 xcb |