summaryrefslogtreecommitdiff
path: root/www/mythplugin-mythweb/Makefile
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2010-01-04 15:06:59 +0000
committerMartin Wilke <miwi@FreeBSD.org>2010-01-04 15:06:59 +0000
commit2389b28b173f1020cf5cce7af93c94f885aad0ff (patch)
treed80789ae04efb89523a2da50adfe2a27ce17e41b /www/mythplugin-mythweb/Makefile
parentUpdate to maintenance release 1.4.2: (diff)
MythWeb provides a frontend for scheduling and managing recordings
on your MythBox from a web browser located on another machine. Provided the security is set up correctly on your MythBox you can access your machine from anywhere on the internet, or even your mobile phone as long as you have a compatible browser. WWW: http://www.mythtv.org/wiki/MythWeb PR: ports/142148 Submitted by: Bernhard Froehlich <decke at bluelife.at>
Notes
Notes: svn path=/head/; revision=247141
Diffstat (limited to 'www/mythplugin-mythweb/Makefile')
-rw-r--r--www/mythplugin-mythweb/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/www/mythplugin-mythweb/Makefile b/www/mythplugin-mythweb/Makefile
new file mode 100644
index 000000000000..fabe22e32a2f
--- /dev/null
+++ b/www/mythplugin-mythweb/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: mythweb
+# Date created: 2009-12-27
+# Whom: Bernhard Froehlich <decke@bluelife.at>
+#
+# $FreeBSD$
+#
+
+PORTNAME= mythweb
+PORTVERSION= 0.22
+CATEGORIES= www
+MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \
+ http://ftp.oregonstate.edu/pub/mythtv/
+DISTNAME= mythplugins-${PORTVERSION}
+
+MAINTAINER= decke@bluelife.at
+COMMENT= A frontend for scheduling and managing recordings on your MythTV Box
+
+RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
+
+NO_BUILD= yes
+USE_BZIP2= yes
+USE_APACHE= 2.2+
+USE_PHP= spl session mysql pcre posix json
+SUB_FILES= pkg-message
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|/var/www/html|${WWWDIR}|' \
+ ${WRKSRC}/mythweb/mythweb.conf.apache
+
+do-install:
+ ${MKDIR} ${WWWDIR}
+ ${MKDIR} ${WWWDIR}/data
+ (cd ${WRKSRC}/mythweb/ && ${COPYTREE_SHARE} "*" ${WWWDIR} "! -name *.bak")
+
+ ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
+ ${CHMOD} -R 775 ${WWWDIR}/data
+
+post-install:
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>