Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/pgadmin3: pgadmin3-1.12.2.ebuild ChangeLog
Date: Mon, 31 Jan 2011 21:43:11
Message-Id: 20110131214301.D281D20054@flycatcher.gentoo.org
1 patrick 11/01/31 21:43:01
2
3 Modified: ChangeLog
4 Added: pgadmin3-1.12.2.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.53 dev-db/pgadmin3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 25 Oct 2010 12:41:47 -0000 1.52
24 +++ ChangeLog 31 Jan 2011 21:43:01 -0000 1.53
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/pgadmin3
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.52 2010/10/25 12:41:47 scarabeus Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.53 2011/01/31 21:43:01 patrick Exp $
31 +
32 +*pgadmin3-1.12.2 (31 Jan 2011)
33 +
34 + 31 Jan 2011; Patrick Lauer <patrick@g.o> +pgadmin3-1.12.2.ebuild:
35 + Bump
36
37 *pgadmin3-1.12.1-r1 (25 Oct 2010)
38
39
40
41
42 1.1 dev-db/pgadmin3/pgadmin3-1.12.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.12.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.12.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pgadmin3-1.12.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.12.2.ebuild,v 1.1 2011/01/31 21:43:01 patrick Exp $
52
53 EAPI=3
54
55 WX_GTK_VER="2.8"
56
57 inherit wxwidgets
58
59 DESCRIPTION="wxWidgets GUI for PostgreSQL."
60 HOMEPAGE="http://www.pgadmin.org/"
61 SRC_URI="mirror://postgresql/${PN}/release/v${PV}/src/${P}.tar.gz"
62
63 LICENSE="Artistic"
64 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
65 SLOT="0"
66 IUSE="debug"
67
68 DEPEND="x11-libs/wxGTK:2.8[X]
69 dev-db/postgresql-base
70 >=dev-libs/libxml2-2.5
71 >=dev-libs/libxslt-1.1"
72 RDEPEND="${DEPEND}"
73
74 src_configure() {
75 econf \
76 --with-wx-version=2.8 \
77 $(use_enable debug)
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "einstall failed"
82
83 newicon "${S}/pgadmin/include/images/pgAdmin3.png" ${PN}.png || die
84
85 # icon location for the desktop file provided in pkg folder
86 insinto /usr/share/pgadmin3
87 doins "${S}/pgadmin/include/images/pgAdmin3.png" || die
88
89 domenu "${S}/pkg/pgadmin3.desktop" || die
90
91 # Fixing world-writable files
92 chmod -R go-w "${D}/usr/share" || die
93 }