commit:     0eb38a4eb53ac0a798193b965329cd7658e25669
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 24 10:48:31 2015 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Oct 24 10:48:31 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb38a4e

dev-db/pgagent: Support wxGTK:3.0

Package-Manager: portage-2.2.23

 dev-db/pgagent/pgagent-3.4.0-r1.ebuild | 54 ++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/dev-db/pgagent/pgagent-3.4.0-r1.ebuild 
b/dev-db/pgagent/pgagent-3.4.0-r1.ebuild
new file mode 100644
index 0000000..3df4def
--- /dev/null
+++ b/dev-db/pgagent/pgagent-3.4.0-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+CMAKE_IN_SOURCE_BUILD=1
+WX_GTK_VER="3.0"
+
+inherit cmake-utils eutils wxwidgets
+
+MY_PN=${PN/a/A}
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
+HOMEPAGE="http://www.pgadmin.org/download/pgagent.php";
+SRC_URI="mirror://postgresql/pgadmin3/release/${PN}/${MY_PN}-${PV}-Source.tar.gz"
+LICENSE="POSTGRESQL GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=dev-db/postgresql-9.0.0
+        x11-libs/wxGTK:${WX_GTK_VER}
+"
+DEPEND="${RDEPEND}
+       >=dev-util/cmake-2.6
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}-Source"
+
+src_prepare() {
+       sed -e "s:share):share/${P}):" \
+               -i CMakeLists.txt || die "Couldn't patch CMakeLists.txt"
+       sed -i -e '/SET(WX_VERSION "2.8")/d' CMakeLists.txt || die 
+}
+
+src_configure() {
+       if has_version "x11-libs/wxGTK[X]"; then
+               need-wxwidgets unicode
+       else
+               need-wxwidgets base-unicode
+       fi
+       mycmakeargs="-DSTATIC_BUILD:BOOLEAN=FALSE -DWX_VERSION=${WX_GTK_VER}"
+       cmake-utils_src_configure
+}
+
+src_install() {
+       cmake-utils_src_install
+
+       newinitd "${FILESDIR}/pgagent.initd" ${PN}
+       newconfd "${FILESDIR}/pgagent.confd" ${PN}
+
+       rm "${ED}"/usr/{LICENSE,README} || die "Failed to remove useless docs"
+}

Reply via email to