diff options
author | rene <rene@FreeBSD.org> | 2018-12-17 00:49:17 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2018-12-17 00:49:17 +0800 |
commit | 4909b0f811cf5ad505666da55a2655041c78e236 (patch) | |
tree | 892baa84cc0c67b08795b6576e985d83e5a8f6d1 /net-im | |
parent | 0a0c9722087f1a9b6e1d4506eed21bd6d9b3bcb5 (diff) | |
download | freebsd-ports-gnome-4909b0f811cf5ad505666da55a2655041c78e236.tar.gz freebsd-ports-gnome-4909b0f811cf5ad505666da55a2655041c78e236.tar.zst freebsd-ports-gnome-4909b0f811cf5ad505666da55a2655041c78e236.zip |
Use regular DEPRECATED and EXPIRATION_DATE variables in an "if FLAVOR" block
instead of flavoring the variables themselves. This caused too much hassle
for Tools/scripts/rmport.
Discussed with: tcberner
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/telepathy-qt/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net-im/telepathy-qt/Makefile b/net-im/telepathy-qt/Makefile index da13678b216d..8f02d2dd37d5 100644 --- a/net-im/telepathy-qt/Makefile +++ b/net-im/telepathy-qt/Makefile @@ -22,9 +22,6 @@ FLAVOR?= ${FLAVORS:[1]} qt4_PKGNAMESUFFIX= 4 qt5_PKGNAMESUFFIX= 5 -qt4_DEPRECATED= Qt4 has been EOL since december 2015 -qt4_EXPIRATION_DATE= 2019-03-15 - USES= cmake:outsource gettext gnome localbase:ldflags pathfix pkgconfig python:2.7,build USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes @@ -36,6 +33,8 @@ CMAKE_ARGS= -DDESIRED_QT_VERSION:STRING=${PKGNAMESUFFIX} \ -DQT_QMAKE_EXECUTABLE:FILEPATH=${QMAKE} . if ${FLAVOR} == qt4 +DEPRECATED= Qt4 has been EOL since december 2015 +EXPIRATION_DATE=2019-03-15 USES+= qt:4 USE_QT= corelib dbus gui network xml \ moc_build qmake_build qtestlib_build rcc_build uic_build |