Gentoo Archives: gentoo-commits

From: "Gunnar Wrobel (wrobel)" <wrobel@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/phpmyadmin: ChangeLog phpmyadmin-2.11.1.2.ebuild
Date: Thu, 18 Oct 2007 05:21:33
Message-Id: E1IiNen-0005ci-Mq@stork.gentoo.org
1 wrobel 07/10/18 05:10:53
2
3 Modified: ChangeLog
4 Added: phpmyadmin-2.11.1.2.ebuild
5 Log:
6 -m Another sec release from upstream. phpmyadmin-2.11.1.2 (#196237)
7 (Portage version: 2.1.3.14)
8
9 Revision Changes Path
10 1.271 dev-db/phpmyadmin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.271&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?rev=1.271&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/ChangeLog?r1=1.270&r2=1.271
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v
19 retrieving revision 1.270
20 retrieving revision 1.271
21 diff -u -r1.270 -r1.271
22 --- ChangeLog 16 Oct 2007 20:10:24 -0000 1.270
23 +++ ChangeLog 18 Oct 2007 05:10:53 -0000 1.271
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-db/phpmyadmin
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.270 2007/10/16 20:10:24 cla Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.271 2007/10/18 05:10:53 wrobel Exp $
29 +
30 +*phpmyadmin-2.11.1.2 (18 Oct 2007)
31 +
32 + 18 Oct 2007; <wrobel@g.o> +phpmyadmin-2.11.1.2.ebuild:
33 + -m Another sec release from upstream. phpmyadmin-2.11.1.2 (#196237)
34
35 16 Oct 2007; Dawid Węgliński <cla@g.o>
36 phpmyadmin-2.11.1.1.ebuild:
37
38
39
40 1.1 dev-db/phpmyadmin/phpmyadmin-2.11.1.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.11.1.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.11.1.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: phpmyadmin-2.11.1.2.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.11.1.2.ebuild,v 1.1 2007/10/18 05:10:53 wrobel Exp $
50
51 inherit eutils webapp depend.php
52
53 MY_PV=${PV/_/-}
54 MY_P="phpMyAdmin-${MY_PV}-all-languages-utf-8-only"
55 DESCRIPTION="Web-based administration for MySQL database in PHP"
56 HOMEPAGE="http://www.phpmyadmin.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
58 LICENSE="GPL-2"
59 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE=""
61 DEPEND="sys-apps/findutils"
62 S=${WORKDIR}/${MY_P}
63
64 need_php
65
66 pkg_setup() {
67 webapp_pkg_setup
68
69 if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype pcre session unicode \
70 || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then
71 eerror
72 eerror "${PHP_PKG} needs to be re-installed with all of the following"
73 eerror "USE flags enabled:"
74 eerror
75 eerror "ctype pcre session unicode"
76 eerror
77 eerror "as well as any of the following USE flags enabled:"
78 eerror
79 eerror "mysql or mysqli if using dev-lang/php-5"
80 eerror "mysql if using dev-lang/php-4"
81 eerror
82 die "Re-install ${PHP_PKG}"
83 fi
84 }
85
86 src_unpack() {
87 unpack "${A}"
88 cd "${S}"
89 # Remove .cvs* files and CVS directories
90 find "${S}" -name .cvs\* -or \( -type d -name CVS -prune \) | xargs rm -rf
91 }
92
93 src_install() {
94 webapp_src_preinst
95
96 local docs="CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog"
97
98 dodoc ${docs}
99 dohtml Documentation.html
100
101 cp -r . "${D}${MY_HTDOCSDIR}"
102
103 webapp_configfile "${MY_HTDOCSDIR}"/libraries/config.default.php
104 webapp_serverowned "${MY_HTDOCSDIR}"/libraries/config.default.php
105
106 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.8.0.txt
107 webapp_hook_script "${FILESDIR}"/reconfig-2.8
108 webapp_src_install
109 }
110
111
112
113 --
114 gentoo-commits@g.o mailing list