dev-libs/yaz: port to EAPI 7, fix (automagic) deps

* EAPI 7
* Fix Prefix installation (prefix docdir and mv)
* Add missing deps
** net-libs/gnutls
** sys-devel/bison
** sys-libs/readline
** sys-libs/ncurses
** virtual/libintl

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-04-02 08:54:44 +01:00
parent 1c391f05a6
commit ea41bb7b4a
2 changed files with 30 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
--- yaz-3.0.47/configure.ac.orig 2009-07-08 04:58:43.000000000 -0700
+++ yaz-3.0.47/configure.ac 2009-07-31 01:46:21.764545198 -0700
--- a/configure.ac
+++ b/configure.ac
@@ -367,14 +367,14 @@
dnl

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
EAPI=7
inherit autotools
@@ -12,22 +12,34 @@ SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86"
IUSE="debug icu libressl tcpd ziffy"
IUSE="debug icu gnutls tcpd ziffy"
RDEPEND="dev-libs/libxml2
RDEPEND="
dev-libs/libxml2
dev-libs/libxslt
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
sys-libs/readline:=
sys-libs/ncurses:=
virtual/libintl
!gnutls? ( dev-libs/openssl:0= )
gnutls? ( net-libs/gnutls:= )
icu? ( dev-libs/icu:= )
tcpd? ( sys-apps/tcp-wrappers )
ziffy? ( net-libs/libpcap )"
DEPEND="${RDEPEND}
virtual/pkgconfig
ziffy? ( net-libs/libpcap )
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/tcl:0
>=sys-devel/libtool-2"
sys-devel/bison
>=sys-devel/libtool-2
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-3.0.47-icu-automagic.patch
)
src_prepare() {
epatch "${FILESDIR}"/${PN}-3.0.47-icu-automagic.patch
default
AT_M4DIR="m4" eautoreconf
}
@@ -36,22 +48,19 @@ src_configure() {
--enable-static \
--enable-shared \
$(use_enable debug memdebug) \
$(use_with gnutls) \
$(use_enable icu) \
$(use_enable tcpd tcpd /usr)
}
src_compile() {
emake
}
src_install() {
local docdir="/usr/share/doc/${PF}"
emake DESTDIR="${D}" docdir="${docdir}" install
emake DESTDIR="${D}" docdir="${EPREFIX}/${docdir}" install
dodir ${docdir}/html
mv -f "${D}"/${docdir}/*.{html,png} "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
mv -f "${D}"/usr/share/doc/${PN}/common "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
rm -rf "${D}"/usr/share/doc/${PN}
dodir "${docdir}"/html
mv -f "${ED}"/${docdir}/*.{html,png} "${ED}"/${docdir}/html/ || die "Failed to move HTML docs"
mv -f "${ED}"/usr/share/doc/${PN}/common "${ED}"/${docdir}/html/ || die "Failed to move HTML docs"
rm -rf "${ED}"/usr/share/doc/${PN} || die
dodoc ChangeLog NEWS README
}