mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Additionally migrates from cmake-utils and user to cmake and acct-user. Bug: https://bugs.gentoo.org/781284 Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
49 lines
997 B
Bash
49 lines
997 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
CMAKE_IN_SOURCE_BUILD=1
|
|
|
|
inherit cmake
|
|
|
|
MY_PN=${PN/a/A}
|
|
|
|
KEYWORDS="amd64 x86"
|
|
|
|
DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
|
|
HOMEPAGE="https://www.pgadmin.org/download/pgagent-source-code/"
|
|
SRC_URI="https://ftp.postgresql.org/pub/pgadmin/${PN}/${MY_PN}-${PV}-Source.tar.gz"
|
|
|
|
LICENSE="POSTGRESQL GPL-2"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
acct-user/pgagent
|
|
dev-db/postgresql:*
|
|
dev-libs/boost
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}-Source"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
sed -e "s:share):share/${P}):" \
|
|
-i CMakeLists.txt || die "failed to patch CMakeLists.txt"
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=( "-DSTATIC_BUILD:BOOLEAN=FALSE" )
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
newinitd "${FILESDIR}/pgagent.initd-r1" "${PN}"
|
|
newconfd "${FILESDIR}/pgagent.confd" "${PN}"
|
|
|
|
rm "${ED}"/usr/{LICENSE,README} || die "failed to remove useless docs"
|
|
}
|