[arch-commits] Commit in mythweb/repos (3 files)

2009-12-09 Thread Juergen Hoetzel
Date: Wednesday, December 9, 2009 @ 18:54:07
  Author: juergen
Revision: 60953

Merged revisions 356,18668,27124,60945 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/mythweb/trunk


  r356 | aaron | 2008-04-19 00:56:27 +0200 (Sa, 19 Apr 2008) | 1 line
  
  Added svn:keywords to all PKGBUILDs

  r18668 | juergen | 2008-11-08 16:17:12 +0100 (Sa, 08 Nov 2008) | 1 line
  
  added missing dependency perl-dbd-mysql

  r27124 | eric | 2009-02-16 07:33:36 +0100 (Mo, 16 Feb 2009) | 1 line
  
  Fixed source url

  r60945 | juergen | 2009-12-09 23:44:32 +0100 (Mi, 09 Dez 2009) | 1 line
  
  update to 0.22


Added:
  mythweb/repos/extra-x86_64/mythweb.conf.apache
(from rev 60945, mythweb/trunk/mythweb.conf.apache)
Modified:
  mythweb/repos/extra-x86_64/   (properties)
  mythweb/repos/extra-x86_64/PKGBUILD

-+
 PKGBUILD|   24 +++--
 mythweb.conf.apache |  210 ++
 2 files changed, 223 insertions(+), 11 deletions(-)


Property changes on: mythweb/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /mythweb/trunk:1
   + /mythweb/trunk:1-60952

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2009-12-09 23:52:55 UTC (rev 60952)
+++ extra-x86_64/PKGBUILD   2009-12-09 23:54:07 UTC (rev 60953)
@@ -1,27 +1,29 @@
 # $Id$
 # Maintainer: Juergen Hoetzel  
-# Contributor: Philipp Giebel 
+# Contributor: Philipp Giebel , Robert de Jager
 
 pkgname=mythweb
-pkgver=0.21
+pkgver=0.22
 pkgrel=1
 pkgdesc="Web interface for MythTV's backend"
 arch=('i686' 'x86_64')
 url="http://www.mythtv.org";
 license=('GPL')
-depends=("mythtv>=${pkgver}" 'apache' 'php')
+depends=("mythtv>=${pkgver}" 'php-apache' 'php' 'perl-dbd-mysql')
 install=mythweb.install
-source=("ftp://ftp.osuosl.org/pub/mythtv/mythplugins-$pkgver.tar.bz2";)
-md5sums=('6c08043227bef1384858deee12b5cdc3')
+source=("ftp://ftp.osuosl.org/pub/mythtv/mythplugins-$pkgver.tar.bz2"; \
+  mythweb.conf.apache)
+md5sums=('09c8fa1058399a0c5db169a71561e985' 'dd3c2198b160d2e602390d4721b91232')
 groups=('mythtv-extras')
 
 build() {
-   mkdir -p $startdir/pkg/srv/www/mythweb/{image_cache,php_sessions}
-   cp -r $startdir/src/mythplugins-$pkgver/$pkgname/* 
$startdir/pkg/srv/www/mythweb
-   cp $startdir/src/mythplugins-$pkgver/$pkgname/data/.htaccess 
$startdir/pkg/srv/www/mythweb
-   rm $startdir/pkg/srv/www/mythweb/README
-   chown -R nobody:nobody $startdir/pkg/srv/www/mythweb
-   chmod g+rw $startdir/pkg/srv/www/mythweb/{image_cache,php_sessions,data}
+  mkdir -p ${pkgdir}/srv/http/mythweb/{image_cache,php_sessions}
+  cp -r ${srcdir}/mythplugins-$pkgver/mythweb/* ${pkgdir}/srv/http/mythweb
+#  cp ${srcdir}/mythplugins-$pkgver/mythweb/data/.htaccess 
${pkgdir}/srv/http/mythweb
+  rm ${pkgdir}/srv/http/mythweb/README
+  install -m644 ${srcdir}/mythweb.conf.apache 
${pkgdir}/srv/http/mythweb/mythweb.conf.apache
+  chown -R http:http ${pkgdir}/srv/http/mythweb
+  chmod g+rw ${pkgdir}/srv/http/mythweb/{image_cache,php_sessions,data}
 }
 
 

Copied: mythweb/repos/extra-x86_64/mythweb.conf.apache (from rev 60945, 
mythweb/trunk/mythweb.conf.apache)
===
--- extra-x86_64/mythweb.conf.apache(rev 0)
+++ extra-x86_64/mythweb.conf.apache2009-12-09 23:54:07 UTC (rev 60953)
@@ -0,0 +1,210 @@
+#
+# Apache configuration directives for MythWeb.  Please read INSTALL for setup
+# requirements and troubleshooting, along with the comments in this file.
+#
+
+
+# If you intend to use authentication for MythWeb (see below), you will
+# probably also want to uncomment the following rules, which disable
+# authentication for MythWeb's download URLs so you can properly stream
+# to media players that don't work with authenticated servers.
+#
+#
+#Allow from all
+#
+#
+#
+#Allow from all
+#
+
+
+#
+# CHANGE THESE PATHS TO MATCH YOUR MYTHWEB INSTALLATION DIRECTORY!  e.g.
+#
+#/var/www
+#/home/www/htdocs
+#/var/www/html/mythweb
+#/srv/www/htdocs/mythweb
+#
+
+Options -All +FollowSymLinks +IncludesNoExec
+
+
+
+

+# I *strongly* urge you to turn on authentication for MythWeb.  It is 
disabled
+# by default because it requires you to set up your own password file.  
Please
+# see the man page for htdigest and then configure the following four 
directives
+# to suit your authentication needs.
+#
+#AuthType   Digest
+#AuthName   "MythTV"
+#AuthUserFile   /var/www/htdigest
+#Requirevalid-user
+#BrowserMatch   "MSIE"

[arch-commits] Commit in mythweb/repos (3 files)

2009-12-09 Thread Juergen Hoetzel
Date: Wednesday, December 9, 2009 @ 18:52:55
  Author: juergen
Revision: 60952

Merged revisions 356,18668,27124,60945 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/mythweb/trunk


  r356 | aaron | 2008-04-19 00:56:27 +0200 (Sa, 19 Apr 2008) | 1 line
  
  Added svn:keywords to all PKGBUILDs

  r18668 | juergen | 2008-11-08 16:17:12 +0100 (Sa, 08 Nov 2008) | 1 line
  
  added missing dependency perl-dbd-mysql

  r27124 | eric | 2009-02-16 07:33:36 +0100 (Mo, 16 Feb 2009) | 1 line
  
  Fixed source url

  r60945 | juergen | 2009-12-09 23:44:32 +0100 (Mi, 09 Dez 2009) | 1 line
  
  update to 0.22


Added:
  mythweb/repos/extra-i686/mythweb.conf.apache
(from rev 60945, mythweb/trunk/mythweb.conf.apache)
Modified:
  mythweb/repos/extra-i686/ (properties)
  mythweb/repos/extra-i686/PKGBUILD

-+
 PKGBUILD|   24 +++--
 mythweb.conf.apache |  210 ++
 2 files changed, 223 insertions(+), 11 deletions(-)


Property changes on: mythweb/repos/extra-i686
___
Modified: svnmerge-integrated
   - /mythweb/trunk:1
   + /mythweb/trunk:1-60951

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-09 23:51:12 UTC (rev 60951)
+++ extra-i686/PKGBUILD 2009-12-09 23:52:55 UTC (rev 60952)
@@ -1,27 +1,29 @@
 # $Id$
 # Maintainer: Juergen Hoetzel  
-# Contributor: Philipp Giebel 
+# Contributor: Philipp Giebel , Robert de Jager
 
 pkgname=mythweb
-pkgver=0.21
+pkgver=0.22
 pkgrel=1
 pkgdesc="Web interface for MythTV's backend"
 arch=('i686' 'x86_64')
 url="http://www.mythtv.org";
 license=('GPL')
-depends=("mythtv>=${pkgver}" 'apache' 'php')
+depends=("mythtv>=${pkgver}" 'php-apache' 'php' 'perl-dbd-mysql')
 install=mythweb.install
-source=("ftp://ftp.osuosl.org/pub/mythtv/mythplugins-$pkgver.tar.bz2";)
-md5sums=('6c08043227bef1384858deee12b5cdc3')
+source=("ftp://ftp.osuosl.org/pub/mythtv/mythplugins-$pkgver.tar.bz2"; \
+  mythweb.conf.apache)
+md5sums=('09c8fa1058399a0c5db169a71561e985' 'dd3c2198b160d2e602390d4721b91232')
 groups=('mythtv-extras')
 
 build() {
-   mkdir -p $startdir/pkg/srv/www/mythweb/{image_cache,php_sessions}
-   cp -r $startdir/src/mythplugins-$pkgver/$pkgname/* 
$startdir/pkg/srv/www/mythweb
-   cp $startdir/src/mythplugins-$pkgver/$pkgname/data/.htaccess 
$startdir/pkg/srv/www/mythweb
-   rm $startdir/pkg/srv/www/mythweb/README
-   chown -R nobody:nobody $startdir/pkg/srv/www/mythweb
-   chmod g+rw $startdir/pkg/srv/www/mythweb/{image_cache,php_sessions,data}
+  mkdir -p ${pkgdir}/srv/http/mythweb/{image_cache,php_sessions}
+  cp -r ${srcdir}/mythplugins-$pkgver/mythweb/* ${pkgdir}/srv/http/mythweb
+#  cp ${srcdir}/mythplugins-$pkgver/mythweb/data/.htaccess 
${pkgdir}/srv/http/mythweb
+  rm ${pkgdir}/srv/http/mythweb/README
+  install -m644 ${srcdir}/mythweb.conf.apache 
${pkgdir}/srv/http/mythweb/mythweb.conf.apache
+  chown -R http:http ${pkgdir}/srv/http/mythweb
+  chmod g+rw ${pkgdir}/srv/http/mythweb/{image_cache,php_sessions,data}
 }
 
 

Copied: mythweb/repos/extra-i686/mythweb.conf.apache (from rev 60945, 
mythweb/trunk/mythweb.conf.apache)
===
--- extra-i686/mythweb.conf.apache  (rev 0)
+++ extra-i686/mythweb.conf.apache  2009-12-09 23:52:55 UTC (rev 60952)
@@ -0,0 +1,210 @@
+#
+# Apache configuration directives for MythWeb.  Please read INSTALL for setup
+# requirements and troubleshooting, along with the comments in this file.
+#
+
+
+# If you intend to use authentication for MythWeb (see below), you will
+# probably also want to uncomment the following rules, which disable
+# authentication for MythWeb's download URLs so you can properly stream
+# to media players that don't work with authenticated servers.
+#
+#
+#Allow from all
+#
+#
+#
+#Allow from all
+#
+
+
+#
+# CHANGE THESE PATHS TO MATCH YOUR MYTHWEB INSTALLATION DIRECTORY!  e.g.
+#
+#/var/www
+#/home/www/htdocs
+#/var/www/html/mythweb
+#/srv/www/htdocs/mythweb
+#
+
+Options -All +FollowSymLinks +IncludesNoExec
+
+
+
+

+# I *strongly* urge you to turn on authentication for MythWeb.  It is 
disabled
+# by default because it requires you to set up your own password file.  
Please
+# see the man page for htdigest and then configure the following four 
directives
+# to suit your authentication needs.
+#
+#AuthType   Digest
+#AuthName   "MythTV"
+#AuthUserFile   /var/www/htdigest
+#Requirevalid-user
+#BrowserMatch   "MSIE"  AuthDigestEnableQuer