blob: db551442db1c0e0d7f381499088577302f881ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $FreeBSD$
PORTNAME= gstreamer1
PORTVERSION= 1.2.0
PORTREVISION= 17
CATEGORIES= multimedia
MASTER_SITES= http://gstreamer.freedesktop.org/src/qt-gstreamer/
PKGNAMESUFFIX= -${FLAVOR}
DISTNAME= qt-gstreamer-${PORTVERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt ${FLAVOR:C/qt//} bindings for GStreamer 1.x multimedia library
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
libgstreamer-1.0.so:multimedia/gstreamer1
FLAVORS= qt5 qt4
FLAVOR?= ${FLAVORS:[1]}
CONFLICTS_INSTALL= gstreamer${PKGNAMESUFFIX}-*
USES= bison cmake gl gnome pathfix pkgconfig tar:xz
USE_GSTREAMER1= yes
USE_GL= gl
USE_GNOME= glib20
USE_LDCONFIG= yes
CMAKE_OFF= USE_GST_PLUGIN_DIR USE_QT_PLUGIN_DIR
CMAKE_ARGS= -DQT_VERSION=${FLAVOR:C/qt//}
. if ${FLAVOR} == qt4
DEPRECATED= Qt4 has been EOL since december 2015
EXPIRATION_DATE=2019-03-15
USES+= qt:4
USE_QT= corelib gui opengl declarative script \
qmake_build moc_build rcc_build uic_build qtestlib_build
PLIST_SUB= QT4_ONLY="" QT5_ONLY="@comment "
. else
USES+= compiler:c++11-lang qt:5
USE_QT= buildtools_build qmake_build core declarative gui network opengl \
testlib widgets
QTVER_SUFFIX= 5
PLIST_SUB= QT4_ONLY="@comment " QT5_ONLY=""
. endif
PLIST_SUB+= SHLIB_VER="${PORTVERSION}" \
QTVER_SUFFIX="${QTVER_SUFFIX}"
.include <bsd.port.mk>
|