diff options
author | 2022-09-09 09:58:52 +0200 | |
---|---|---|
committer | 2022-09-09 09:58:52 +0200 | |
commit | 57fc8d1c44749f3a27a93d6ab7382e6e2ec3a522 (patch) | |
tree | b103614ed4c3da07f3049e4068d1c3244632ac78 /dev-libs/libdaemon | |
parent | dev-libs/judy: drop multilib, static-libs, EAPI 8 (diff) | |
download | gentoo-57fc8d1c44749f3a27a93d6ab7382e6e2ec3a522.tar.gz gentoo-57fc8d1c44749f3a27a93d6ab7382e6e2ec3a522.tar.bz2 gentoo-57fc8d1c44749f3a27a93d6ab7382e6e2ec3a522.zip |
dev-libs/libdaemon: drop multilib, static-libs, EAPI 8
No multilib or static-libs reverse dependencies.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/libdaemon')
-rw-r--r-- | dev-libs/libdaemon/libdaemon-0.14-r4.ebuild (renamed from dev-libs/libdaemon/libdaemon-0.14-r3.ebuild) | 43 |
1 files changed, 18 insertions, 25 deletions
diff --git a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild b/dev-libs/libdaemon/libdaemon-0.14-r4.ebuild index 6e38f45fae5b..30beecfa0faa 100644 --- a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild +++ b/dev-libs/libdaemon/libdaemon-0.14-r4.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit autotools multilib-minimal +inherit autotools DESCRIPTION="Simple library for creating daemon processes in C" HOMEPAGE="http://0pointer.de/lennart/projects/libdaemon/" @@ -12,7 +12,7 @@ SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0/5" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="doc examples static-libs" +IUSE="doc examples" BDEPEND="doc? ( app-doc/doxygen )" @@ -27,40 +27,33 @@ src_prepare() { # (elibtoolize is insufficient) # bug #668404 eautoreconf - - # doxygen is broken with out-of-source builds - multilib_copy_sources } -multilib_src_configure() { - econf \ - --localstatedir=/var \ - --disable-examples \ - --disable-lynx \ - $(use_enable static-libs static) +src_configure() { + local myeconfargs=( + --localstatedir="${EPREFIX}"/var + --disable-examples + --disable-lynx + ) + + econf "${myeconfargs[@]}" } -multilib_src_compile() { +src_compile() { emake - if multilib_is_native_abi && use doc; then + if use doc; then einfo "Building documentation" emake doxygen - fi -} -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi && use doc; then - docinto html - dodoc -r doc/README.html doc/style.css doc/reference/html/* - doman doc/reference/man/man3/*.h.3 + HTML_DOCS=( doc/README.html doc/style.css doc/reference/html/. ) fi } -multilib_src_install_all() { - einstalldocs +src_install() { + default + + use doc && doman doc/reference/man/man3/*.h.3 find "${ED}" -name '*.la' -delete || die |