Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/phppgadmin: ChangeLog phppgadmin-5.0.2.ebuild
Date: Thu, 06 Jan 2011 06:18:30
Message-Id: 20110106061819.9591720051@flycatcher.gentoo.org
1 radhermit 11/01/06 06:18:19
2
3 Modified: ChangeLog
4 Added: phppgadmin-5.0.2.ebuild
5 Log:
6 Version bump for bug #349183. Bump to EAPI 3, explicitly set DEPEND, remove unnecessary pkg_setup phase, and don't install the LICENSE file.
7
8 (Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.90 dev-db/phppgadmin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.90&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.90&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?r1=1.89&r2=1.90
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v
20 retrieving revision 1.89
21 retrieving revision 1.90
22 diff -u -r1.89 -r1.90
23 --- ChangeLog 5 Nov 2010 04:24:45 -0000 1.89
24 +++ ChangeLog 6 Jan 2011 06:18:19 -0000 1.90
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-db/phppgadmin
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.89 2010/11/05 04:24:45 jer Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.90 2011/01/06 06:18:19 radhermit Exp $
31 +
32 +*phppgadmin-5.0.2 (06 Jan 2011)
33 +
34 + 06 Jan 2011; Tim Harder <radhermit@g.o> +phppgadmin-5.0.2.ebuild:
35 + Version bump for bug #349183. Bump to EAPI 3, explicitly set DEPEND, remove
36 + unnecessary pkg_setup phase, and don't install the LICENSE file.
37
38 05 Nov 2010; Jeroen Roovers <jer@g.o> phppgadmin-4.2.3.ebuild:
39 Stable for HPPA (bug #336869).
40
41
42
43 1.1 dev-db/phppgadmin/phppgadmin-5.0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: phppgadmin-5.0.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.2.ebuild,v 1.1 2011/01/06 06:18:19 radhermit Exp $
53
54 EAPI="3"
55
56 inherit webapp
57
58 MY_P=phpPgAdmin-${PV}
59
60 DESCRIPTION="Web-based administration for Postgres database in php"
61 HOMEPAGE="http://phppgadmin.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
66 IUSE=""
67
68 DEPEND=""
69 RDEPEND="dev-lang/php[postgres,session]
70 || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )"
71
72 S=${WORKDIR}/${MY_P}
73
74 src_install() {
75 webapp_src_preinst
76
77 local doc
78 local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
79 dodoc ${docs}
80 mv conf/config.inc.php-dist conf/config.inc.php
81
82 cp -r * "${D}"${MY_HTDOCSDIR}
83 for doc in ${docs} INSTALL; do
84 rm -f "${D}"${MY_HTDOCSDIR}/${doc}
85 done
86
87 webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
88 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
89 webapp_src_install
90 }