blob: 17e8c04fefc8793ead2c01913f716d37f3df41e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
pkgname=mythweb
pkgver=30.0
pkgrel=1
commit_hash=`cat ../git_src/git_hash_web`
pkgdesc="Web interface for MythTV's backend, $commit_hash"
arch=('x86_64')
url="http://www.mythtv.org"
license=('GPL')
depends=('lighttpd' "mythtv>=${pkgver}" 'php' 'supplemental-web')
groups=('mythtv-extras')
install=mythweb.install
patches=('video.css.patch'
'Channel.php_remove_small_icons.patch')
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" = "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=('668a36e404c8254f56e7a7304e655332'
'333d145899a1b48a7648d933344ee9ed'
'7645a6399434cbba35639713ac5d88e0'
'df190116b3aba35720fb6631885f973f')
|