pkgname=mythweb pkgver=0.27 pkgrel=5 commit_hash=`cat ../git_src/git_hash_web` pkgdesc="Web interface for MythTV's backend, $commit_hash" arch=('i686' 'x86_64') url="http://www.mythtv.org" license=('GPL') depends=('lighttpd' "mythtv>=${pkgver}" 'php' 'supplemental-web') groups=('mythtv-extras') install=mythweb.install patches=() source=(`echo ${patches[@]:0}` 'mythweb.include' 'mythweb_gen_light.conf') build() { if [ -e ${srcdir}/mythweb ] then msg "Removing old mythweb src" rm -rf ${srcdir}/mythweb fi cd ${startdir} msg "Copying in mythweb git_src" cp -rp ../git_src/mythweb $srcdir cd ${srcdir}/$pkgname msg "--------------------------applying patches------------------------------" for i in `echo ${patches[@]:0} ` do echo applying $i echo "-----------------------------" patch -Np0 -i ${srcdir}/$i || return 1 done msg "--------------------------done applying patches-------------------------" [ "$CARCH" = "i686" ] && ARCH="i686" [ "$CARCH" = "x86_64" ] && ARCH="x86-64" } package() { DOCROOT=/data/srv/httpd/mythweb mkdir -p $pkgdir/$DOCROOT/{image_cache,php_sessions,data} rsync -arp --exclude .git* --delete-excluded $srcdir/mythweb/* $pkgdir/$DOCROOT rm $pkgdir/$DOCROOT/README chown -R http:http $pkgdir/$DOCROOT chmod -R 775 $pkgdir/$DOCROOT/{image_cache,php_sessions,data} #install conf files for lighttpd mkdir -p $pkgdir/etc/lighttpd install -D -m 644 $srcdir/mythweb.include $pkgdir/etc/lighttpd/ #gen_light_conf install -D -m0744 ${srcdir}/mythweb_gen_light.conf ${pkgdir}/etc/gen_light_conf.d/mythweb.conf } md5sums=('7645a6399434cbba35639713ac5d88e0' 'df190116b3aba35720fb6631885f973f')