Files
gentoo/dev-libs/log4cpp/log4cpp-1.1.ebuild
Michał Górny 064af661d0 */*: [QA] Fix trivial cases of MissingTestRestrict
The result was achieved via the following pipeline:

    pkgcheck scan -c RestrictTestCheck -R FormatReporter \
      --format '{category}/{package}/{package}-{version}.ebuild' |
    xargs -n32 grep -L RESTRICT |
    xargs -n32 sed -i -e '/^IUSE=.*test/aRESTRICT="!test? ( test )"'

The resulting metadata was compared before and after the change.
Few Go ebuilds had to be fixed manually due to implicit RESTRICT=strip
added by the eclass.  Two ebuilds have to be fixed because of multiline
IUSE.

Suggested-by: Robin H. Johnson <robbat2@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/13942
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-12-11 00:22:38 +01:00

61 lines
1.2 KiB
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools multilib-minimal
DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
HOMEPAGE="http://log4cpp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/5"
KEYWORDS="amd64 ~arm ppc s390 x86"
IUSE="doc static-libs test"
RESTRICT="!test? ( test )"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
PATCHES=(
"${FILESDIR}"/1.0-doc_install_path.patch
"${FILESDIR}"/1.0-gcc43.patch
"${FILESDIR}"/1.0-asneeded.patch
"${FILESDIR}"/${P}-cmath-fix.patch
"${FILESDIR}"/${P}-automake-1.13.patch
)
S="${WORKDIR}/${PN}"
MULTILIB_CHOST_TOOLS=(
/usr/bin/log4cpp-config
)
src_prepare() {
default
mv configure.{in,ac} || die
# Build tests conditionally
if ! use test; then
sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die
fi
eautoreconf
}
multilib_src_configure() {
ECONF_SOURCE=${S} econf \
--without-idsa \
$(use_enable doc doxygen) \
$(use_enable static-libs static)
}
multilib_src_install_all() {
einstalldocs
# package installs .pc files
find "${D}" -name '*.la' -delete || die
}