Diff pspg-5.5.4 with a pspg-5.5.8

/usr/portage/dev-db/pspg/pspg-5.5.8.ebuild 2023-10-09 14:52:29.336368346 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
DESCRIPTION="A better pager for psql, mysql, and more"
6
DESCRIPTION="A better pager for CLI database clients, and can substitute psql"
7 7
HOMEPAGE="https://github.com/okbob/pspg"
8 8
SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
9 9

  
10 10
LICENSE="BSD-2"
11 11
SLOT="0"
12
KEYWORDS="amd64 x86"
12
KEYWORDS="~amd64 ~x86"
13
IUSE="postgres"
14
RESTRICT="test"
13 15

  
14
DEPEND="sys-libs/ncurses:=
15
dev-db/postgresql:=
16
sys-libs/readline:="
17
RDEPEND="${DEPEND}"
16
RDEPEND="
17
sys-libs/ncurses:=
18
sys-libs/readline:=
19
postgres? ( dev-db/postgresql:= )
20
"
21
DEPEND="${RDEPEND}"
18 22

  
19
RESTRICT="test"
23
src_configure() {
24
	econf $(use_with postgres postgresql)
25
}
Thank you!