# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.18.1.ebuild,v 1.7 2014/12/28 15:08:20 titanofold Exp $ EAPI="4" WX_GTK_VER="3.0" inherit multilib versionator 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="amd64 ppc x86 ~x86-fbsd" SLOT="0" IUSE="debug +databasedesigner" DEPEND="x11-libs/wxGTK:3.0[X,debug=] >=dev-db/postgresql-8.4.0 >=dev-libs/libxml2-2.6.18 >=dev-libs/libxslt-1.1" RDEPEND="${DEPEND}" pkg_setup() { local pgslot=$(postgresql-config show) if [[ ${pgslot//.} < 84 ]] ; then eerror "PostgreSQL slot must be set to 8.4 or higher." eerror " postgresql-config set 8.4" die "PostgreSQL slot is not set to 8.4 or higher." fi } src_prepare() { epatch "${FILESDIR}/pgadmin3-desktop.patch" } src_configure() { econf --with-wx-version=3.0 \ $(use_enable debug) \ $(use_enable databasedesigner) } src_install() { emake DESTDIR="${D}" install newicon "${S}/pgadmin/include/images/pgAdmin3.png" ${PN}.png # icon location for the desktop file provided in pkg folder insinto /usr/share/pgadmin3 doins "${S}/pgadmin/include/images/pgAdmin3.png" domenu "${S}/pkg/pgadmin3.desktop" # Fixing world-writable files fperms -R go-w /usr/share }