blob: 9e8be6e60fd73d4a2162940fe0418bab0130b5a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.12.2.ebuild,v 1.7 2011/07/04 22:48:30 titanofold Exp $
EAPI=3
WX_GTK_VER="2.8"
inherit wxwidgets
DESCRIPTION="wxWidgets GUI for PostgreSQL."
HOMEPAGE="http://www.pgadmin.org/"
SRC_URI="mirror://postgresql/${PN}/release/v${PV}/src/${P}.tar.gz"
LICENSE="POSTGRESQL"
KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd"
SLOT="0"
IUSE="debug"
DEPEND="x11-libs/wxGTK:2.8[X]
dev-db/postgresql-base
>=dev-libs/libxml2-2.5
>=dev-libs/libxslt-1.1"
RDEPEND="${DEPEND}"
src_configure() {
econf \
--with-wx-version=2.8 \
$(use_enable debug)
}
src_install() {
emake DESTDIR="${D}" install || die "einstall failed"
newicon "${S}/pgadmin/include/images/pgAdmin3.png" ${PN}.png || die
# icon location for the desktop file provided in pkg folder
insinto /usr/share/pgadmin3
doins "${S}/pgadmin/include/images/pgAdmin3.png" || die
domenu "${S}/pkg/pgadmin3.desktop" || die
# Fixing world-writable files
chmod -R go-w "${D}/usr/share" || die
}
|