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: ChangeLog pgadmin3-1.10.5.ebuild
Date: Mon, 30 Aug 2010 20:18:25
Message-Id: 20100830201821.6208E20051@flycatcher.gentoo.org
1 patrick 10/08/30 20:18:21
2
3 Modified: ChangeLog
4 Added: pgadmin3-1.10.5.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2_rc72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.49 dev-db/pgadmin3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 11 Jul 2010 18:47:45 -0000 1.48
24 +++ ChangeLog 30 Aug 2010 20:18:21 -0000 1.49
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.48 2010/07/11 18:47:45 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.49 2010/08/30 20:18:21 patrick Exp $
30 +
31 +*pgadmin3-1.10.5 (30 Aug 2010)
32 +
33 + 30 Aug 2010; Patrick Lauer <patrick@g.o> +pgadmin3-1.10.5.ebuild:
34 + Bump
35
36 11 Jul 2010; Raúl Porcel <armin76@g.o> pgadmin3-1.10.2.ebuild:
37 alpha/sparc/x86 stable wrt #327045
38
39
40
41 1.1 dev-db/pgadmin3/pgadmin3-1.10.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.10.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.10.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pgadmin3-1.10.5.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/pgadmin3/pgadmin3-1.10.5.ebuild,v 1.1 2010/08/30 20:18:21 patrick Exp $
51
52 EAPI="2"
53
54 WX_GTK_VER="2.8"
55
56 inherit wxwidgets eutils autotools
57
58 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
59
60 DESCRIPTION="wxWidgets GUI for PostgreSQL."
61 HOMEPAGE="http://www.pgadmin.org/"
62 SRC_URI="mirror://postgresql/pgadmin3/release/v${PV}/src/${P}.tar.gz"
63 LICENSE="Artistic"
64 SLOT="0"
65 IUSE="debug"
66
67 DEPEND="x11-libs/wxGTK:2.8[X]
68 dev-db/postgresql-base
69 >=dev-libs/libxml2-2.5
70 >=dev-libs/libxslt-1.1"
71 RDEPEND="${DEPEND}"
72
73 src_prepare() {
74 epatch "${FILESDIR}/1.8.2-as_needed_ssl_detect_broken.patch"
75 eautoreconf
76 }
77
78 src_configure() {
79 econf \
80 --with-wx-version=2.8 \
81 $(use_enable debug)
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "einstall failed"
86
87 insinto /usr/share/pixmaps
88 newins "${S}/pgadmin/include/images/elephant48.xpm" pgadmin3.xpm
89
90 insinto /usr/share/pgadmin3
91 newins "${S}/pgadmin/include/images/elephant48.xpm" pgadmin3.xpm
92
93 insinto /usr/share/applications
94 doins "${S}/pkg/pgadmin3.desktop"
95
96 # Fixing world-writable files
97 chmod -R go-w "${D}/usr/share"
98 }