diff options
Diffstat (limited to 'dev-libs/log4cpp/log4cpp-1.1.ebuild')
-rw-r--r-- | dev-libs/log4cpp/log4cpp-1.1.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.ebuild b/dev-libs/log4cpp/log4cpp-1.1.ebuild new file mode 100644 index 000000000000..b1f4dd383a9d --- /dev/null +++ b/dev-libs/log4cpp/log4cpp-1.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cpp/log4cpp-1.1.ebuild,v 1.1 2015/01/14 06:48:11 pinkbyte Exp $ + +EAPI=5 + +AT_M4DIR="m4" +AUTOTOOLS_AUTORECONF=1 +inherit autotools-multilib + +DESCRIPTION="Library of 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" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +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() { + mv configure.{in,ac} || die + + # Build tests conditionally + if ! use test; then + sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die + fi + + autotools-multilib_src_prepare +} + +multilib_src_configure() { + local myeconfargs=( + --without-idsa + $(use_enable doc doxygen) + ) + autotools-utils_src_configure +} |