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