diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-12-02 15:41:47 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-12-02 15:41:47 +0000 |
commit | 99d6d12a388dab91f415ddebd52c6a57e3a6347a (patch) | |
tree | decf1f7754d8060ee740cd0c0edc9a51c04a0ec1 /editors/tea | |
parent | 577806de96b111cab272c48a686bcca681cc6d4d (diff) | |
download | freebsd-ports-99d6d12a388dab91f415ddebd52c6a57e3a6347a.zip |
Mark QT4 ports/functionality for removal on 2019-03-15
While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.
Submitted by: tcberner
Reviewed by: adridg, jhale, rene, tcberner
Approved by: portmgr (implicit, flavor hook)
Differential Revision: https://reviews.freebsd.org/D17741
Diffstat (limited to 'editors/tea')
-rw-r--r-- | editors/tea/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/tea/Makefile b/editors/tea/Makefile index 7aa23033fd28..5fc8f85f515f 100644 --- a/editors/tea/Makefile +++ b/editors/tea/Makefile @@ -18,7 +18,7 @@ OPTIONS_SINGLE_TOOLKITS= QT4 QT5 OPTIONS_DEFINE= DOCS OPTIONS_GROUP= SPELL OPTIONS_GROUP_SPELL= ASPELL HUNSPELL -OPTIONS_DEFAULT= QT4 ASPELL HUNSPELL +OPTIONS_DEFAULT= QT5 ASPELL HUNSPELL USE_GL= gl USE_LOCALE= en_US.UTF-8 @@ -45,6 +45,13 @@ ASPELL_QMAKE_OFF= CONFIG+=noaspell HUNSPELL_LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell HUNSPELL_QMAKE_OFF= CONFIG+=nohunspell +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MQT4} +DEPRECATED= Qt4 has been EOL since december 2015 +EXPIRATION_DATE= 2019-03-15 +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/tea ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/icons/tea_icon_v2.png ${STAGEDIR}${PREFIX}/share/pixmaps |