patrick 15/02/15 08:37:19 Modified: ChangeLog Added: pgadmin3-1.20.0.ebuild Log: Bump (Portage version: 2.2.17/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.103 dev-db/pgadmin3/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.103&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?rev=1.103&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/ChangeLog?r1=1.102&r2=1.103 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- ChangeLog 28 Dec 2014 15:08:20 -0000 1.102 +++ ChangeLog 15 Feb 2015 08:37:19 -0000 1.103 @@ -1,6 +1,11 @@ # ChangeLog for dev-db/pgadmin3 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pgadmin3/ChangeLog,v 1.102 2014/12/28 15:08:20 titanofold Exp $ +# 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 $ + +*pgadmin3-1.20.0 (15 Feb 2015) + + 15 Feb 2015; Patrick Lauer <[email protected]> +pgadmin3-1.20.0.ebuild: + Bump 28 Dec 2014; Aaron W. Swenson <[email protected]> pgadmin3-1.18.1.ebuild: Rename virtual/postgresql to dev-db/postgresql 1.1 dev-db/pgadmin3/pgadmin3-1.20.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.20.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pgadmin3/pgadmin3-1.20.0.ebuild?rev=1.1&content-type=text/plain Index: pgadmin3-1.20.0.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.ebuild,v 1.1 2015/02/15 08:37:19 patrick Exp $ EAPI="4" WX_GTK_VER="2.8" 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:2.8[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=2.8 \ $(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 }
