summaryrefslogtreecommitdiff
blob: b21f38c84694865ee69cc168b825996c6f662e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools

DESCRIPTION="a front-end for Oracle program sqlplus with command-line editing"
HOMEPAGE="https://gitlab.com/jessp011/gqlplus"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~amd64-linux ~x64-macos"
IUSE=""

DEPEND="sys-libs/readline:*"
RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}"/${P}-ncurses-tinfo.patch )

src_prepare() {
	default

	# don't use packaged readline and old version containing it
	rm -Rf readline gqlplus-1.15

	# maintainer can't seem to get versioning right
	sed -i '/^#define VERSION/s/"[^"]\+"/"'"${PV}"'"/' gqlplus.c || die
	sed -i '/^AC_INIT/s/\[[1-9.]\+\]/['"${PV}"']/' configure.ac || die

	eautoreconf
}