Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/phppgadmin: phppgadmin-4.2.3.ebuild ChangeLog
Date: Fri, 30 Apr 2010 22:01:42
Message-Id: 20100430220138.AC9D12C04C@corvid.gentoo.org
1 mabi 10/04/30 22:01:38
2
3 Modified: ChangeLog
4 Added: phppgadmin-4.2.3.ebuild
5 Log:
6 version bump from the php-experimental overlay
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.84 dev-db/phppgadmin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.84&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.84&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phppgadmin/ChangeLog?r1=1.83&r2=1.84
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v
19 retrieving revision 1.83
20 retrieving revision 1.84
21 diff -u -r1.83 -r1.84
22 --- ChangeLog 21 Feb 2010 17:38:21 -0000 1.83
23 +++ ChangeLog 30 Apr 2010 22:01:38 -0000 1.84
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-db/phppgadmin
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.83 2010/02/21 17:38:21 reavertm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.84 2010/04/30 22:01:38 mabi Exp $
29 +
30 +*phppgadmin-4.2.3 (30 Apr 2010)
31 +
32 + 30 Apr 2010; <mabi@g.o> +phppgadmin-4.2.3.ebuild:
33 + version bump from the php-experimental overlay (thanks to Tsisaruk V
34 + <tsisaruk.v@×××××.com>)
35
36 *phppgadmin-9999 (21 Feb 2010)
37
38
39
40
41 1.1 dev-db/phppgadmin/phppgadmin-4.2.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phppgadmin/phppgadmin-4.2.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/phppgadmin/phppgadmin-4.2.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phppgadmin-4.2.3.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/phppgadmin-4.2.3.ebuild,v 1.1 2010/04/30 22:01:38 mabi Exp $
51
52 EAPI="2"
53 inherit webapp depend.php
54
55 IUSE=""
56
57 MY_P=phpPgAdmin-${PV}
58
59 DESCRIPTION="Web-based administration for Postgres database in php"
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
61 HOMEPAGE="http://phppgadmin.sourceforge.net/"
62
63 LICENSE="GPL-2"
64 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
65 DEPEND="|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
66 dev-lang/php[postgres,session]
67 "
68
69 S=${WORKDIR}/${MY_P}
70
71 pkg_setup() {
72 webapp_pkg_setup
73 }
74
75 src_install() {
76 webapp_src_preinst
77
78 local doc
79 local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
80 dodoc ${docs}
81 mv conf/config.inc.php-dist conf/config.inc.php
82
83 cp -r * "${D}"${MY_HTDOCSDIR}
84 for doc in ${docs} INSTALL LICENSE; do
85 rm -f "${D}"${MY_HTDOCSDIR}/${doc}
86 done
87
88 webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
89 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
90 webapp_src_install
91 }