819aeab702
If anyone wants to replace it with a newer version take this port as a starting point and port it to build from https://github.com/kodi-pvr
35 lines
812 B
Makefile
35 lines
812 B
Makefile
# Created by: Bernhard Froehlich <decke@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xbmc-pvr-addons
|
|
PORTVERSION= 14.0.20150301
|
|
CATEGORIES= multimedia
|
|
|
|
MAINTAINER= decke@FreeBSD.org
|
|
COMMENT= XBMC PVR addons for various backends
|
|
|
|
DEPRECATED= Does not work with multimedia/kodi 15.x and newer
|
|
EXPIRATION_DATE= 2016-02-12
|
|
|
|
RUN_DEPENDS+= kodi:${PORTSDIR}/multimedia/kodi
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= opdenkamp
|
|
GH_TAGNAME= 4854fbe
|
|
|
|
USES= autoreconf libtool pkgconfig
|
|
USE_GL= gl
|
|
GNU_CONFIGURE= yes
|
|
REINPLACE_ARGS= -i ''
|
|
|
|
CFLAGS+= "-I${LOCALBASE}/include"
|
|
LDFLAGS+= "-L${LOCALBASE}/lib"
|
|
|
|
post-patch:
|
|
# addons for FreeBSD look for linux platform
|
|
@${REINPLACE_CMD} 's|@OS@|freebsd linux|' \
|
|
${WRKSRC}/addons/*/addon/addon.xml.in
|
|
@${REINPLACE_CMD} 's|-ldl||' \
|
|
${WRKSRC}/addons/pvr.hts/Makefile.am
|
|
|
|
.include <bsd.port.mk>
|