mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
db032688df
Convert multimedia/mythtv-frontend to a slave port of multimedia/mythtv which should make future updates much easier. Upstream security patches have been added to address known vulnerabilities in the bundled ffmpeg 3.2. PR: 225652 (initial patches to update to 29.0) [1] Submitted by: <lucylangthorne55@gmail.com> [1] Differential Revision: https://reviews.freebsd.org/D14563
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# Created by: Bernhard Froehlich <decke@bluelife.at>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mythweb
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 29.1
|
|
CATEGORIES= www
|
|
PKGNAMEPREFIX= mythplugin-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Frontend for scheduling and managing recordings on your MythTV Box
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= php shebangfix perl5
|
|
USE_PERL5= run
|
|
USE_PHP= json pcre posix mysqli session spl sockets
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= MythTV
|
|
SHEBANG_FILES= mythweb.pl modules/_shared/lang/build_translation.pl \
|
|
modules/coverart/handler.pl modules/stream/*.pl
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
SUB_FILES= pkg-message
|
|
REINPLACE_ARGS= -i ""
|
|
|
|
OPTIONS_DEFINE= APACHE LIGHTTPD NGINX
|
|
OPTIONS_DEFAULT= APACHE
|
|
|
|
APACHE_USE= APACHE_RUN=22+
|
|
LIGHTTPD_RUN_DEPENDS= lighttpd:www/lighttpd
|
|
NGINX_DESC= Nginx server support
|
|
NGINX_RUN_DEPENDS= nginx:www/nginx
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/var/www/html|${WWWDIR}|' \
|
|
${WRKSRC}/mythweb.conf.apache
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/php-cgi|${LOCALBASE}/bin/php-cgi|' \
|
|
${WRKSRC}/mythweb.conf.lighttpd
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} "*" ${STAGEDIR}${WWWDIR} \
|
|
"! -name *.orig -and ! -name LICENSE")
|
|
|
|
.include <bsd.port.mk>
|