summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2008-02-01 20:32:58 +0000
committerDoug Goldstein <cardoe@gentoo.org>2008-02-01 20:32:58 +0000
commit5214ffd81c0d34f479a5553a822717c237c178ff (patch)
tree4b74d943d49e3edd866acb60c221cb4ad472a379 /www-apps
parentIf both USE flags are disabled, enable vorbis so emerge doesn't stop wrt #205... (diff)
downloadgentoo-2-5214ffd81c0d34f479a5553a822717c237c178ff.tar.gz
gentoo-2-5214ffd81c0d34f479a5553a822717c237c178ff.tar.bz2
gentoo-2-5214ffd81c0d34f479a5553a822717c237c178ff.zip
trunk rev bump for bug #208487
(Portage version: 2.1.4.1)
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/mythweb/ChangeLog7
-rw-r--r--www-apps/mythweb/mythweb-0.21_pre15710.ebuild48
2 files changed, 54 insertions, 1 deletions
diff --git a/www-apps/mythweb/ChangeLog b/www-apps/mythweb/ChangeLog
index 70ac4f712b66..6dd06e676f32 100644
--- a/www-apps/mythweb/ChangeLog
+++ b/www-apps/mythweb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for www-apps/mythweb
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/ChangeLog,v 1.53 2008/01/24 16:04:40 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/ChangeLog,v 1.54 2008/02/01 20:32:58 cardoe Exp $
+
+*mythweb-0.21_pre15710 (01 Feb 2008)
+
+ 01 Feb 2008; Doug Klima <cardoe@gentoo.org> +mythweb-0.21_pre15710.ebuild:
+ trunk rev bump for bug #208487
*mythweb-0.20.2_p15488 (24 Jan 2008)
diff --git a/www-apps/mythweb/mythweb-0.21_pre15710.ebuild b/www-apps/mythweb/mythweb-0.21_pre15710.ebuild
new file mode 100644
index 000000000000..30abd1f86f97
--- /dev/null
+++ b/www-apps/mythweb/mythweb-0.21_pre15710.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/mythweb-0.21_pre15710.ebuild,v 1.1 2008/02/01 20:32:58 cardoe Exp $
+
+ESVN_PROJECT="mythplugins"
+
+inherit mythtv webapp depend.php subversion
+
+DESCRIPTION="PHP scripts intended to manage MythTV from a web browser."
+IUSE=""
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="dev-perl/DBI
+ dev-perl/DBD-mysql"
+
+need_php5_httpd
+
+pkg_setup() {
+ webapp_pkg_setup
+ require_php_with_use session mysql pcre posix
+}
+
+src_unpack() {
+ subversion_src_unpack
+}
+
+src_compile() {
+ :
+}
+
+src_install() {
+ webapp_src_preinst
+
+ cd "${S}/mythweb"
+ dodoc README TODO
+
+ dodir "${MY_HTDOCSDIR}"/data
+
+ cp -R [[:lower:]]* "${D}${MY_HTDOCSDIR}"
+ webapp_configfile ${MY_HTDOCSDIR}/mythweb.conf.apache
+ webapp_configfile ${MY_HTDOCSDIR}/mythweb.conf.lighttpd
+
+ webapp_serverowned "${MY_HTDOCSDIR}"/data
+
+ webapp_postinst_txt en "${FILESDIR}"/postinstall-en-0.21.txt
+
+ webapp_src_install
+}