summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2018-02-06 22:06:51 -0500
committerMichael Orlitzky <mjo@gentoo.org>2018-02-06 22:06:51 -0500
commitb49eb9e14ad0df4a6a7bd145657430a6a90d2b91 (patch)
tree315a068bcad5437cf5610987a272f78591037c0f /dev-db/pgagent
parentdev-php/pecl-geoip: remove "unused" pecl-geoip-1.1.1-r2.ebuild. (diff)
downloadgentoo-b49eb9e14ad0df4a6a7bd145657430a6a90d2b91.tar.gz
gentoo-b49eb9e14ad0df4a6a7bd145657430a6a90d2b91.tar.bz2
gentoo-b49eb9e14ad0df4a6a7bd145657430a6a90d2b91.zip
dev-db/pgagent: remove "unused" pgagent-3.4.0-r1.ebuild.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-db/pgagent')
-rw-r--r--dev-db/pgagent/files/pgagent.initd24
-rw-r--r--dev-db/pgagent/pgagent-3.4.0-r1.ebuild55
2 files changed, 0 insertions, 79 deletions
diff --git a/dev-db/pgagent/files/pgagent.initd b/dev-db/pgagent/files/pgagent.initd
deleted file mode 100644
index a43916888bbb..000000000000
--- a/dev-db/pgagent/files/pgagent.initd
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-PGAGENTOPT="-t ${PGA_POLL} -r ${PGA_RETRY} -s ${PGA_LOG} -l ${PGA_LEVEL}"
-
-PGOPT="hostaddr=${PG_HOST} dbname=${PG_DBNAME} user=${PG_USER}"
-
-depend() {
- use net
- need postgresql
-}
-
-start() {
- ebegin "Starting pgagent"
- start-stop-daemon --start --exec /usr/bin/pgagent -- ${PGAGENTOPT} ${PGOPT}
- eend $?
-}
-
-stop() {
- ebegin "Stopping pgagent"
- start-stop-daemon --stop --name pgagent
- eend $?
-}
diff --git a/dev-db/pgagent/pgagent-3.4.0-r1.ebuild b/dev-db/pgagent/pgagent-3.4.0-r1.ebuild
deleted file mode 100644
index aed37174e318..000000000000
--- a/dev-db/pgagent/pgagent-3.4.0-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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() {
- cmake-utils_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"
-}