Install this version:
emerge -a =dev-db/pgaudit-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-db/pgaudit-9999
Or alternatively:
emerge --autounmask-write -a =dev-db/pgaudit-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
POSTGRES_COMPAT=( 14 15 16 17 18 )
inherit git-r3 postgres
DESCRIPTION="PostgreSQL Audit Extension"
HOMEPAGE="https://github.com/pgaudit/pgaudit"
EGIT_REPO_URI="https://github.com/cybertec-postgresql/${PN}.git"
LICENSE="POSTGRESQL"
SLOT="0"
RESTRICT="test" # tests needs installed extension
RDEPEND="dev-db/postgresql:*"
pkg_pretend() {
postgres_check_slot
}
src_compile() {
emake USE_PGXS=1
}
src_install() {
emake USE_PGXS=1 DESTDIR="${D}" install
}
dev-db/postgresql:*