Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/phpmyadmin: ChangeLog phpmyadmin-3.1.2.ebuild phpmyadmin-2.11.9.3.ebuild phpmyadmin-3.1.1.ebuild
Date: Sat, 24 Jan 2009 11:30:13
Message-Id: E1LQgiI-0007Az-8I@stork.gentoo.org
1 pva 09/01/24 11:30:10
2
3 Modified: ChangeLog
4 Added: phpmyadmin-3.1.2.ebuild
5 Removed: phpmyadmin-2.11.9.3.ebuild phpmyadmin-3.1.1.ebuild
6 Log:
7 Version bump. Fixed setup path in postinstall info, filter is now requirement in php, bug #254764, thank Jamie Learmonth for this work. Removed old.
8 (Portage version: 2.1.6.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.358 dev-db/phpmyadmin/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.358&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.358&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?r1=1.357&r2=1.358
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v
20 retrieving revision 1.357
21 retrieving revision 1.358
22 diff -u -r1.357 -r1.358
23 --- ChangeLog 5 Jan 2009 17:31:06 -0000 1.357
24 +++ ChangeLog 24 Jan 2009 11:30:10 -0000 1.358
25 @@ -1,6 +1,15 @@
26 # ChangeLog for dev-db/phpmyadmin
27 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.357 2009/01/05 17:31:06 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.358 2009/01/24 11:30:10 pva Exp $
30 +
31 +*phpmyadmin-3.1.2 (24 Jan 2009)
32 +
33 + 24 Jan 2009; Peter Volkov <pva@g.o> +files/postinstall-en-3.1.txt,
34 + -phpmyadmin-2.11.9.3.ebuild, -phpmyadmin-3.1.1.ebuild,
35 + +phpmyadmin-3.1.2.ebuild:
36 + Version bump. Fixed setup path in postinstall info, filter is now
37 + requirement in php, bug #254764, thank Jamie Learmonth for this work.
38 + Removed old.
39
40 05 Jan 2009; Raúl Porcel <armin76@g.o> phpmyadmin-2.11.9.4.ebuild:
41 alpha stable wrt #250752
42
43
44
45 1.1 dev-db/phpmyadmin/phpmyadmin-3.1.2.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.1.2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.1.2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: phpmyadmin-3.1.2.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.1.2.ebuild,v 1.1 2009/01/24 11:30:10 pva Exp $
55
56 inherit eutils webapp depend.php
57
58 MY_PV=${PV/_/-}
59 MY_P="phpMyAdmin-${MY_PV}-all-languages"
60
61 DESCRIPTION="Web-based administration for MySQL database in PHP"
62 HOMEPAGE="http://www.phpmyadmin.net/"
63 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
67 IUSE=""
68
69 RDEPEND=">=dev-db/mysql-5.0.15"
70
71 need_httpd_cgi
72 need_php_httpd
73
74 S="${WORKDIR}"/${MY_P}
75
76 pkg_setup() {
77 webapp_pkg_setup
78
79 if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype filter pcre session spl unicode \
80 || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then
81 eerror
82 eerror "${PHP_PKG} needs to be re-installed with all of the following"
83 eerror "USE flags enabled:"
84 eerror
85 eerror "crypt ctype filter pcre session spl unicode"
86 eerror
87 eerror "as well as any of the following USE flags enabled:"
88 eerror
89 eerror "mysql or mysqli if using dev-lang/php-5"
90 eerror
91 die "Re-install ${PHP_PKG}"
92 fi
93 }
94
95 src_install() {
96 webapp_src_preinst
97
98 dodoc CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog
99 rm -f LICENSE CREDITS INSTALL README RELEASE-DATE-${MY_PV} TODO
100
101 insinto "${MY_HTDOCSDIR}"
102 doins -r .
103
104 webapp_configfile "${MY_HTDOCSDIR}"/libraries/config.default.php
105 webapp_serverowned "${MY_HTDOCSDIR}"/libraries/config.default.php
106
107 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt
108 webapp_hook_script "${FILESDIR}"/reconfig-2.8
109 webapp_src_install
110 }