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: phppgadmin-5.0.3.ebuild ChangeLog
Date: Mon, 03 Oct 2011 20:19:46
Message-Id: 20111003201936.61FAB2004B@flycatcher.gentoo.org
1 radhermit 11/10/03 20:19:36
2
3 Modified: ChangeLog
4 Added: phppgadmin-5.0.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.97 dev-db/phppgadmin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.97&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?rev=1.97&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/ChangeLog?r1=1.96&r2=1.97
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v
20 retrieving revision 1.96
21 retrieving revision 1.97
22 diff -u -r1.96 -r1.97
23 --- ChangeLog 21 Sep 2011 08:50:45 -0000 1.96
24 +++ ChangeLog 3 Oct 2011 20:19:36 -0000 1.97
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/phppgadmin
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.96 2011/09/21 08:50:45 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/ChangeLog,v 1.97 2011/10/03 20:19:36 radhermit Exp $
30 +
31 +*phppgadmin-5.0.3 (03 Oct 2011)
32 +
33 + 03 Oct 2011; Tim Harder <radhermit@g.o> +phppgadmin-5.0.3.ebuild:
34 + Version bump.
35
36 21 Sep 2011; Michał Górny <mgorny@g.o> phppgadmin-9999.ebuild:
37 Migrate to git-2.
38
39
40
41 1.1 dev-db/phppgadmin/phppgadmin-5.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phppgadmin-5.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/phppgadmin/phppgadmin-5.0.3.ebuild,v 1.1 2011/10/03 20:19:36 radhermit Exp $
51
52 EAPI="4"
53
54 inherit webapp
55
56 MY_P="phpPgAdmin-${PV}"
57
58 DESCRIPTION="Web-based administration for Postgres database in php"
59 HOMEPAGE="http://phppgadmin.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="dev-lang/php[postgres,session]
67 || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )"
68
69 S="${WORKDIR}/${MY_P}"
70
71 src_install() {
72 webapp_src_preinst
73
74 local doc
75 local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
76 dodoc ${docs}
77 mv conf/config.inc.php-dist conf/config.inc.php
78
79 cp -r * "${D}"${MY_HTDOCSDIR}
80 for doc in ${docs} INSTALL LICENSE; do
81 rm -f "${D}"${MY_HTDOCSDIR}/${doc}
82 done
83
84 webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
85 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
86 webapp_src_install
87 }