Ticket #10769: 0003-Updated-ebuilds-for-0.25-and-0.26_pre-of-mythweb.patch

File 0003-Updated-ebuilds-for-0.25-and-0.26_pre-of-mythweb.patch, 5.3 KB (added by ba5788@…, 12 years ago)

Updated mythweb ebuilds

  • Gentoo/www-apps/mythweb/Manifest

    From fc748a5bda89cff08ba87db90ddcea9ab6cc8457 Mon Sep 17 00:00:00 2001
    From: Christian Oltenburger <Christian.Oltenburger@bnv-bamberg.de>
    Date: Mon, 28 May 2012 19:22:13 +0200
    Subject: [PATCH 3/4] Updated ebuilds for 0.25 and 0.26_pre of mythweb
    
    ---
     Gentoo/www-apps/mythweb/Manifest                   |    4 ++
     .../www-apps/mythweb/mythweb-0.25_p20120528.ebuild |   58 ++++++++++++++++++++
     .../mythweb/mythweb-0.26_pre20120528.ebuild        |   58 ++++++++++++++++++++
     3 files changed, 120 insertions(+), 0 deletions(-)
     create mode 100644 Gentoo/www-apps/mythweb/mythweb-0.25_p20120528.ebuild
     create mode 100644 Gentoo/www-apps/mythweb/mythweb-0.26_pre20120528.ebuild
    
    diff --git a/Gentoo/www-apps/mythweb/Manifest b/Gentoo/www-apps/mythweb/Manifest
    index cbfb438..ce1f300 100644
    a b  
    11AUX 0.24-postinstall-en.txt 539 RMD160 8de049db466f3aa2312296844ac0c19ebf858f7a SHA1 b43475bda37459685af27edab883f64af779aa44 SHA256 5d057d10a319948a7378ddde134926f40a892a2142a65ba36a0e78cd7283f74a
    22DIST mythweb-0.24_p20111014.tar.gz 2037734 RMD160 030cd1f7ebe40f596ad3aee5f9de11c297dda02c SHA1 abe0f4ffafe7d1407e9001935e13cd423a67ad0f SHA256 bac72c715d11e8dacb6676bf73d5d5fbf233df74ecc2ffa8824b36c7217322e6
     3DIST mythweb-0.25_p20120528.tar.gz 1408959 RMD160 3a656c074cf9efefb88b421b4117d3074fd07c47 SHA1 ddf606d7827fa9ceabbc274b3d38f36eef2c7773 SHA256 1e993d1f508d9a383127125a97c0ddc291bf045a6e966cbb8cef8323ff4f4c79
     4DIST mythweb-0.26_pre20120528.tar.gz 1408959 RMD160 3a656c074cf9efefb88b421b4117d3074fd07c47 SHA1 ddf606d7827fa9ceabbc274b3d38f36eef2c7773 SHA256 1e993d1f508d9a383127125a97c0ddc291bf045a6e966cbb8cef8323ff4f4c79
    35EBUILD mythweb-0.24_p20111014.ebuild 1197 RMD160 135bd9c2dc426c66dc999c56007bb166a566b5f8 SHA1 dd23cb9cf04bae0dc337a58364f253cc426d604d SHA256 54af27dda3237796d7eb9fc2bab869450650e7a7118964eb20f03aa06a978f2c
     6EBUILD mythweb-0.25_p20120528.ebuild 1197 RMD160 de0ad4d17a90c60fb2deba21464cf1b13f3eb667 SHA1 837760862b0f1109b8224b0151784ba85b9d18b3 SHA256 480e16e8631ffae61c8b038087051d30ffedb2df561564030ea1da08cf7724bd
     7EBUILD mythweb-0.26_pre20120528.ebuild 1193 RMD160 2c37e919446c606334810b422429c25fdcbbb09c SHA1 957cb898097a7196840f1d81a29f05ff7fce47cd SHA256 32a96e31f00846c891d0b994600f00ae2b0a8931e5062fdf09723a2291873e08
  • new file Gentoo/www-apps/mythweb/mythweb-0.25_p20120528.ebuild

    diff --git a/Gentoo/www-apps/mythweb/mythweb-0.25_p20120528.ebuild b/Gentoo/www-apps/mythweb/mythweb-0.25_p20120528.ebuild
    new file mode 100644
    index 0000000..8abd228
    - +  
     1# Copyright 1999-2010 Gentoo Foundation
     2# Distributed under the terms of the GNU General Public License v2
     3# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/mythweb-0.23.1_p25396.ebuild,v 1.1 2010/07/27 03:14:08 cardoe Exp $
     4
     5EAPI=2
     6
     7MYTHTV_VERSION=""
     8MYTHTV_BRANCH="fixes/0.25"
     9MYTHTV_REV="8c43d8da31d738c75ec6abc9daff2772b16310c8"
     10MYTHTV_SREV="8c43d8d"
     11
     12inherit mythtv webapp depend.php
     13
     14DESCRIPTION="PHP scripts intended to manage MythTV from a web browser."
     15IUSE=""
     16KEYWORDS="amd64 x86 ~ppc"
     17
     18RDEPEND="<dev-lang/php-5.4[curl,json,mysql,session,posix]
     19        || ( <dev-lang/php-5.3[spl,pcre] =dev-lang/php-5.3 )
     20        dev-perl/DBI
     21        dev-perl/DBD-mysql
     22        dev-perl/Net-UPnP"
     23
     24DEPEND="${RDEPEND}
     25                app-arch/unzip"
     26
     27need_httpd_cgi
     28need_php5_httpd
     29
     30src_configure() {
     31        :
     32}
     33
     34src_compile() {
     35        :
     36}
     37
     38src_install() {
     39        webapp_src_preinst
     40
     41        cd "${S}"
     42        dodoc README INSTALL
     43
     44        dodir "${MY_HTDOCSDIR}"/data
     45
     46        insinto "${MY_HTDOCSDIR}"
     47        doins -r [[:lower:]]*
     48
     49        webapp_configfile "${MY_HTDOCSDIR}"/mythweb.conf.{apache,lighttpd}
     50
     51        webapp_serverowned "${MY_HTDOCSDIR}"/data
     52
     53        webapp_postinst_txt en "${FILESDIR}"/0.24-postinstall-en.txt
     54
     55        webapp_src_install
     56
     57        fperms 755 /usr/share/webapps/mythweb/${PV}/htdocs/mythweb.pl
     58}
  • new file Gentoo/www-apps/mythweb/mythweb-0.26_pre20120528.ebuild

    diff --git a/Gentoo/www-apps/mythweb/mythweb-0.26_pre20120528.ebuild b/Gentoo/www-apps/mythweb/mythweb-0.26_pre20120528.ebuild
    new file mode 100644
    index 0000000..6d92a27
    - +  
     1# Copyright 1999-2010 Gentoo Foundation
     2# Distributed under the terms of the GNU General Public License v2
     3# $Header: /var/cvsroot/gentoo-x86/www-apps/mythweb/mythweb-0.23.1_p25396.ebuild,v 1.1 2010/07/27 03:14:08 cardoe Exp $
     4
     5EAPI=2
     6
     7MYTHTV_VERSION=""
     8MYTHTV_BRANCH="master"
     9MYTHTV_REV="8c43d8da31d738c75ec6abc9daff2772b16310c8"
     10MYTHTV_SREV="8c43d8d"
     11
     12inherit mythtv webapp depend.php
     13
     14DESCRIPTION="PHP scripts intended to manage MythTV from a web browser."
     15IUSE=""
     16KEYWORDS="amd64 x86 ~ppc"
     17
     18RDEPEND="<dev-lang/php-5.4[curl,json,mysql,session,posix]
     19        || ( <dev-lang/php-5.3[spl,pcre] =dev-lang/php-5.3 )
     20        dev-perl/DBI
     21        dev-perl/DBD-mysql
     22        dev-perl/Net-UPnP"
     23
     24DEPEND="${RDEPEND}
     25                app-arch/unzip"
     26
     27need_httpd_cgi
     28need_php5_httpd
     29
     30src_configure() {
     31        :
     32}
     33
     34src_compile() {
     35        :
     36}
     37
     38src_install() {
     39        webapp_src_preinst
     40
     41        cd "${S}"
     42        dodoc README INSTALL
     43
     44        dodir "${MY_HTDOCSDIR}"/data
     45
     46        insinto "${MY_HTDOCSDIR}"
     47        doins -r [[:lower:]]*
     48
     49        webapp_configfile "${MY_HTDOCSDIR}"/mythweb.conf.{apache,lighttpd}
     50
     51        webapp_serverowned "${MY_HTDOCSDIR}"/data
     52
     53        webapp_postinst_txt en "${FILESDIR}"/0.24-postinstall-en.txt
     54
     55        webapp_src_install
     56
     57        fperms 755 /usr/share/webapps/mythweb/${PV}/htdocs/mythweb.pl
     58}