ffd97a0193
- while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi)
40 lines
988 B
Makefile
40 lines
988 B
Makefile
# Created by: Dima Panov <fluffy@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gstreamer
|
|
PORTVERSION= 0.10.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://gstreamer.freedesktop.org/src/qt-${PORTNAME}/
|
|
PKGNAMESUFFIX= -qt4
|
|
DISTNAME= qt-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= fluffy@FreeBSD.org
|
|
COMMENT= Qt4 bindings for GStreamer multimedia library
|
|
|
|
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs
|
|
|
|
USES= bison cmake
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_GSTREAMER= yes
|
|
USE_GNOME= glib20
|
|
USE_KDE4= automoc4
|
|
USE_QT4= corelib gui opengl declarative \
|
|
qmake_build moc_build rcc_build uic_build qtestlib_build
|
|
|
|
PLIST_SUB= VERSION="${GST_VERSION}"
|
|
|
|
GST_VERSION=${PORTVERSION:C/..$//}
|
|
|
|
CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:STRING="${LOCALBASE}/include"
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's|$${LIB_INSTALL_DIR}/pkgconfig|libdata/pkgconfig|' \
|
|
${WRKSRC}/src/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|