summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-25 19:41:06 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-25 19:55:52 +0100
commit3d7362ba0181cca082e8f336e55b6bd511bd643b (patch)
tree737007d748c1ff1b84ed25b466b245f638ade3be /dev-db/pgagent
parentdev-db/pgadmin3: Drop old (diff)
downloadgentoo-3d7362ba0181cca082e8f336e55b6bd511bd643b.tar.gz
gentoo-3d7362ba0181cca082e8f336e55b6bd511bd643b.tar.bz2
gentoo-3d7362ba0181cca082e8f336e55b6bd511bd643b.zip
dev-db/pgagent: Drop old
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-db/pgagent')
-rw-r--r--dev-db/pgagent/pgagent-3.4.0.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-db/pgagent/pgagent-3.4.0.ebuild b/dev-db/pgagent/pgagent-3.4.0.ebuild
deleted file mode 100644
index 1ba18eac7923..000000000000
--- a/dev-db/pgagent/pgagent-3.4.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-CMAKE_IN_SOURCE_BUILD=1
-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:2.8
-"
-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"
-}
-
-src_configure() {
- WX_GTK_VER="2.8"
- if has_version "x11-libs/wxGTK[X]"; then
- need-wxwidgets unicode
- else
- need-wxwidgets base-unicode
- fi
- mycmakeargs="-DSTATIC_BUILD:BOOLEAN=FALSE"
- 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"
-}