titanofold    15/05/20 19:48:25

  Modified:             ChangeLog
  Added:                pgadmin3-1.20.0-r1.ebuild
  Log:
  Version bump fixes bug 533336. Now supports best wxGTK available, instead of
  just 2.8, fixing bug 517232.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
D1BBFDA0)

Revision  Changes    Path
1.104                dev-db/pgadmin3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.104&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.104&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog   15 Feb 2015 08:37:19 -0000      1.103
+++ ChangeLog   20 May 2015 19:48:25 -0000      1.104
@@ -1,6 +1,13 @@
 # ChangeLog for dev-db/pgadmin3
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.103 
2015/02/15 08:37:19 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.104 
2015/05/20 19:48:25 titanofold Exp $
+
+*pgadmin3-1.20.0-r1 (20 May 2015)
+
+  20 May 2015; Aaron W. Swenson <[email protected]>
+  +pgadmin3-1.20.0-r1.ebuild:
+  Version bump fixes bug 533336. Now supports best wxGTK available, instead of
+  just 2.8, fixing bug 517232.
 
 *pgadmin3-1.20.0 (15 Feb 2015)
 



1.1                  dev-db/pgadmin3/pgadmin3-1.20.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.20.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.20.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: pgadmin3-1.20.0-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.20.0-r1.ebuild,v 
1.1 2015/05/20 19:48:25 titanofold Exp $

EAPI="5"

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:=[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() {
        WX_GTK_PV=$(best_version x11-libs/wxGTK[X,debug=])
        WX_GTK_VER=$(get_version_component_range 1-2 
${WX_GTK_PV#x11-libs/wxGTK-})

        need-wxwidgets unicode

        econf --with-wx-version=${WX_GTK_VER} \
                $(use_enable debug) \
                $(use_enable databasedesigner)
}

src_install() {
        emake DESTDIR="${D}" install

        newicon "${S}/pgadmin/include/images/pgAdmin3.png" ${PN}.png

        domenu "${S}/pkg/pgadmin3.desktop"

        # Fixing world-writable files
        fperms -R go-w /usr/share
}




Reply via email to