Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/mythweb: mythweb-0.22_rc22667.ebuild ChangeLog
Date: Sat, 31 Oct 2009 22:49:14
Message-Id: E1N4Mky-0000vY-Nk@stork.gentoo.org
1 cardoe 09/10/31 22:49:12
2
3 Modified: ChangeLog
4 Added: mythweb-0.22_rc22667.ebuild
5 Log:
6 add post-RC2 ebuild for 0.22
7 (Portage version: 2.1.7.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.68 www-apps/mythweb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mythweb/ChangeLog?rev=1.68&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mythweb/ChangeLog?rev=1.68&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mythweb/ChangeLog?r1=1.67&r2=1.68
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/mythweb/ChangeLog,v
19 retrieving revision 1.67
20 retrieving revision 1.68
21 diff -u -r1.67 -r1.68
22 --- ChangeLog 31 Jul 2009 18:18:10 -0000 1.67
23 +++ ChangeLog 31 Oct 2009 22:49:12 -0000 1.68
24 @@ -1,6 +1,12 @@
25 # ChangeLog for www-apps/mythweb
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/ChangeLog,v 1.67 2009/07/31 18:18:10 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/ChangeLog,v 1.68 2009/10/31 22:49:12 cardoe Exp $
29 +
30 +*mythweb-0.22_rc22667 (31 Oct 2009)
31 +
32 + 31 Oct 2009; Doug Goldstein <cardoe@g.o>
33 + +mythweb-0.22_rc22667.ebuild:
34 + add post-RC2 ebuild for 0.22
35
36 31 Jul 2009; Doug Goldstein <cardoe@g.o>
37 mythweb-0.21_p17573.ebuild, mythweb-0.21_p20323.ebuild:
38
39
40
41 1.1 www-apps/mythweb/mythweb-0.22_rc22667.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mythweb/mythweb-0.22_rc22667.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mythweb/mythweb-0.22_rc22667.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mythweb-0.22_rc22667.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/mythweb-0.22_rc22667.ebuild,v 1.1 2009/10/31 22:49:12 cardoe Exp $
51
52 EAPI=2
53 inherit mythtv webapp depend.php
54
55 DESCRIPTION="PHP scripts intended to manage MythTV from a web browser."
56 IUSE=""
57 KEYWORDS="~amd64 ~ppc ~x86"
58
59 RDEPEND="dev-perl/DBI
60 dev-perl/DBD-mysql"
61
62 DEPEND="${RDEPEND}
63 app-arch/unzip"
64
65 need_httpd_cgi
66 need_php5_httpd
67
68 pkg_setup() {
69 webapp_pkg_setup
70 require_php_with_use session mysql pcre posix json
71 }
72
73 src_configure() {
74 :
75 }
76
77 src_compile() {
78 :
79 }
80
81 src_install() {
82 webapp_src_preinst
83
84 cd "${S}"/mythweb
85 dodoc README INSTALL
86
87 dodir "${MY_HTDOCSDIR}"/data
88
89 insinto "${MY_HTDOCSDIR}"
90 doins -r [[:lower:]]*
91
92 webapp_configfile "${MY_HTDOCSDIR}"/mythweb.conf.{apache,lighttpd}
93
94 webapp_serverowned "${MY_HTDOCSDIR}"/data
95
96 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-0.21.txt
97
98 webapp_src_install
99 }