freebsd-ports/multimedia/libcec/Makefile
Thomas Zander 0cbe6a273b Update to upstream version 3.1.0, introduce OPTIONS for PYTHON, X11 and RPI
Details
- Turn existing python wrapper and X11 support into default OPTIONS
- Introduce RPI non-default OPTION on armv6

PR:		208161
Submitted by:	mickael.maillot@gmail.com
Approved by:	maintainer timeout
2016-04-16 18:00:46 +00:00

61 lines
1.5 KiB
Makefile

# Created by: Manuel Creach <manuel.creach@icloud.com>
# $FreeBSD$
PORTNAME= libcec
PORTVERSION= 3.1.0
DISTVERSIONPREFIX= ${PORTNAME}-
CATEGORIES= multimedia
MAINTAINER= manuel.creach@icloud.com
COMMENT= Library to control Pulse-Eight's HDMI-CEC adapter
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libp8-platform.so:devel/p8-platform
USE_GITHUB= yes
GH_ACCOUNT= Pulse-Eight
USES= alias cmake compiler:c++11-lib pkgconfig
USE_LDCONFIG= yes
CMAKE_ARGS= -DCMAKE_REQUIRED_INCLUDES:PATH="${LOCALBASE}/include" \
-DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib"
OPTIONS_DEFINE= PYTHON X11
OPTIONS_DEFAULT= PYTHON X11
OPTIONS_DEFINE_armv6= RPI
OPTIONS_DEFAULT_armv6=
OPTIONS_SUB= yes
PYTHON_DESC= build python wrapper
PYTHON_BUILD_DEPENDS+= swig3.0:devel/swig30
RPI_DESC= build libcec support for raspberrypi
RPI_CMAKE_ON= -DRPI_INCLUDE_DIR=${LOCALBASE}/include -DRPI_LIB_DIR=${LOCALBASE}/lib
RPI_LIB_DEPENDS= libbcm_host.so:misc/raspberrypi-userland
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPYTHON}
USES+= python:build
.else
CMAKE_ARGS+= -DSKIP_PYTHON_WRAPPER:BOOL=true
.endif
.if ${PORT_OPTIONS:MX11}
USE_XORG= x11 xproto xrandr
.endif
post-patch:
@${REINPLACE_CMD} 's|$${GIT_REVISION}|${PORTVERSION}|g' \
${WRKSRC}/src/libcec/cmake/SetBuildInfo.cmake
@${REINPLACE_CMD} -e '/SOVERSION/ s|\.0||' \
-e 's|$${CMAKE_INSTALL_LIBDIR_NOARCH}/pkgconfig|libdata/pkgconfig|' \
${WRKSRC}/src/libcec/CMakeLists.txt
.if ! ${PORT_OPTIONS:MPYTHON}
@${REINPLACE_CMD} '/pyCecClient/d' \
${WRKSRC}/CMakeLists.txt
.endif
.include <bsd.port.mk>