92ea0d614b
an zeising, kwm, miwi, bapt, eadler production: Xorg 7.7 Starring: xserver 1.12.4 (new xorg only) Mesa 8.0.4, including libGL, libGLU and dri (new xorg only) libX11 1.5.0 libxcb 1.9 libdrm 2.4.42 (new xorg only) freeglut 2.8.1 Also starring: Updates to drivers and other libraries and utilities Additional notes: Change pkgconf to be a build dependency. Add a new USE_XORG, xcb, to depend on libxcb and update all ports to use this. Trim makefile headers. Take maintanership of x11/xcb-proto, ok'd by ashish. If you are running WITH_NEW_XORG=, you need to rebuild all installed drivers, see UPDATING for more information. Various fixes to make ports compile. PR: ports/177942 Exp-run by: miwi Approved by: portmgr (miwi) Thanks to all who helped testing!
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# Created by: Juergen Lock <nox@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vdr-plugin-softhddevice
|
|
PORTVERSION= 0.5.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://projects.vdr-developer.org/attachments/download/1000/
|
|
DISTNAME= ${PORTNAME:S/-plugin-/-/}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= nox@FreeBSD.org
|
|
COMMENT= Video Disk Recorder - softhddevice plugin
|
|
|
|
LIB_DEPENDS+= avcodec:${PORTSDIR}/multimedia/ffmpeg \
|
|
vdpau:${PORTSDIR}/multimedia/libvdpau \
|
|
xcb-keysyms:${PORTSDIR}/x11/xcb-util-keysyms \
|
|
asound:${PORTSDIR}/audio/alsa-lib
|
|
|
|
USES= pkgconfig
|
|
USE_XORG+= xv x11 xcb xinerama
|
|
USE_GL+= gl glu
|
|
PATCH_STRIP= -p1
|
|
HAVE_CONFIGURE= yes
|
|
PORTDOCS= AGPL-3.0.txt ChangeLog README.txt
|
|
CONFIG+= -DLOCALBASE=\\\"${LOCALBASE}\\\"
|
|
CONFIG+= -DUSE_VDPAU
|
|
CONFIG+= -DUSE_OSS
|
|
MAKE_ARGS+= CONFIG="${CONFIG}"
|
|
MAKE_JOBS_SAFE= yes
|
|
WRKSRC= ${WRKDIR}/${PLUGIN}-${PORTVERSION}
|
|
|
|
.include "${.CURDIR}/../vdr/Makefile.plugins"
|
|
|
|
OPTIONS_DEFINE= VAAPI
|
|
VAAPI_DESC= Enable vaapi support (experimental)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MVAAPI}
|
|
LIB_DEPENDS+= va:${PORTSDIR}/multimedia/libva
|
|
CONFIG+= -DUSE_VAAPI
|
|
.endif
|
|
|
|
post-patch: post-patch-plugin
|
|
|
|
post-install: post-install-pluginlocales
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|