dev-libs/log4cpp: Port to EAPI 6
authorDavid Seifert <soap@gentoo.org>
Sun, 31 Dec 2017 11:54:57 +0000 (12:54 +0100)
committerDavid Seifert <soap@gentoo.org>
Sun, 31 Dec 2017 12:43:53 +0000 (13:43 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

dev-libs/log4cpp/files/1.0-asneeded.patch
dev-libs/log4cpp/files/1.0-doc_install_path.patch
dev-libs/log4cpp/files/log4cpp-1.1-automake-1.13.patch
dev-libs/log4cpp/files/log4cpp-1.1-cmath-fix.patch
dev-libs/log4cpp/log4cpp-1.1.ebuild

index e9fb05f4ae99f134ece394db4ce319195cb526fc..7e88c545a374d80707481a27c66ecbaf5ecc1882 100644 (file)
@@ -1,7 +1,7 @@
 http://bugs.gentoo.org/247067
 
---- m4/ACX_PTHREAD.m4
-+++ m4/ACX_PTHREAD.m4
+--- a/m4/ACX_PTHREAD.m4
++++ b/m4/ACX_PTHREAD.m4
 @@ -266,6 +266,117 @@
          else
            PTHREAD_CC=$CC
index 8f9ef5137619fae89cabf49129c575a0238c8dba..abe88dfd123b38dec142d12cf054df0ab8a8d822 100644 (file)
@@ -1,11 +1,10 @@
---- doc/Makefile.am.orig       2007-10-13 09:39:44.000000000 +0200
-+++ doc/Makefile.am    2007-10-13 09:40:03.000000000 +0200
-@@ -1,7 +1,7 @@
+--- a/doc/Makefile.am
++++ b/doc/Makefile.am
+@@ -1,7 +1,6 @@
  SUBDIRS = html
  
  man3dir = $(mandir)/man3
 -docdir  = $(prefix)/doc/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
-+docdir  = $(prefix)/share/doc/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
  
  EXTRA_DIST = \
        mainPage.txt
index ffac4a1dbfc714e08d811de783107615ea8befa6..3e7cb560a5099847b12f3d3b6eeb5a1d6e2498d9 100644 (file)
@@ -1,11 +1,12 @@
---- configure.ac.orig  2015-01-14 09:37:13.616446476 +0300
-+++ configure.ac       2015-01-14 09:37:26.119445770 +0300
-@@ -17,7 +17,7 @@
+--- a/configure.in
++++ b/configure.in
+@@ -17,7 +17,8 @@
  
  #AC_CONFIG_SRCDIR(configure.in)
  AC_CONFIG_AUX_DIR(config)
 -AM_CONFIG_HEADER(include/config.h)
 +AC_CONFIG_HEADERS([include/config.h])
++AC_CONFIG_MACRO_DIR([m4])
  
  AM_INIT_AUTOMAKE
  
index fe3c810814bda54fb0f8425075ca6246d031240c..0180580717ab6fcc2de611aaf0460d689ac6f375 100644 (file)
@@ -1,5 +1,5 @@
---- src/PatternLayout.cpp.orig      2015-01-14 09:24:32.332489499 +0300
-+++ src/PatternLayout.cpp   2015-01-14 09:23:18.162493691 +0300
+--- a/src/PatternLayout.cpp
++++ b/src/PatternLayout.cpp
 @@ -24,6 +24,7 @@
  #include <iomanip>
  #include <ctime>
index bea580222caeaff2059a13263ea7af7f99cb0732..d27aa21fff1ca7993972e8de688fb24478538588 100644 (file)
@@ -1,11 +1,9 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-AT_M4DIR="m4"
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-multilib
+inherit autotools multilib-minimal
 
 DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
 HOMEPAGE="http://log4cpp.sourceforge.net/"
@@ -19,14 +17,12 @@ 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"
+       "${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}"
@@ -36,6 +32,8 @@ MULTILIB_CHOST_TOOLS=(
 )
 
 src_prepare() {
+       default
+
        mv configure.{in,ac} || die
 
        # Build tests conditionally
@@ -43,13 +41,19 @@ src_prepare() {
                sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die
        fi
 
-       autotools-multilib_src_prepare
+       eautoreconf
 }
 
 multilib_src_configure() {
-       local myeconfargs=(
-               --without-idsa
-               $(use_enable doc doxygen)
-       )
-       autotools-utils_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
 }