net-libs/libyahoo2: bump EAPI; drop eutils; add LibreSSL support
authorAaron Bauman <bman@gentoo.org>
Tue, 29 May 2018 21:53:51 +0000 (17:53 -0400)
committerAaron Bauman <bman@gentoo.org>
Wed, 30 May 2018 00:27:33 +0000 (20:27 -0400)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

net-libs/libyahoo2/files/libyahoo2-1.0.1-asneeded.patch
net-libs/libyahoo2/libyahoo2-1.0.1.ebuild

index b05190a02a71450e6a019fbe0f9f5d29cea2fb9d..4e0f1142cd52561152ffd1b4f1fce6259e4e9346 100644 (file)
@@ -1,5 +1,5 @@
---- src/Makefile.am
-+++ src/Makefile.am
+--- a/src/Makefile.am
++++ b/src/Makefile.am
 @@ -21,11 +21,9 @@
  noinst_PROGRAMS = yahoo autoresponder
  
index 0cd41ed48213caa20c1891f7da847bd1ba8e104e..541f05dc3d81cdfb67049ba51e6ca18b35e6cf6e 100644 (file)
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=2
-inherit autotools eutils
+EAPI=7
+inherit autotools
 
 DESCRIPTION="interface to the new Yahoo! Messenger protocol"
 HOMEPAGE="http://libyahoo2.sourceforge.net/"
@@ -11,33 +11,40 @@ SRC_URI="mirror://sourceforge/libyahoo2/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="static-libs ssl"
+IUSE="libressl ssl static-libs"
 
 RDEPEND="dev-libs/glib:2
-       ssl? ( dev-libs/openssl )"
+       ssl? (
+               libressl? ( dev-libs/libressl:0= )
+               !libressl? ( dev-libs/openssl:0= )
+       )
+"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+       "${FILESDIR}/${P}-asneeded.patch"
+)
+
 src_prepare() {
-       epatch "${FILESDIR}"/${P}-asneeded.patch
+       default
        sed -i -e 's:-ansi -pedantic::' configure.ac || die #240912
        eautoreconf
 }
 
 src_configure() {
        econf \
-               --disable-dependency-tracking \
                $(use_enable static-libs static) \
                $(use_enable ssl sample-client)
 }
 
 src_install() {
-       emake DESTDIR="${D}" install || die
+       default
 
        if use ssl; then
-               dobin src/.libs/{autoresponder,yahoo} || die
+               dobin src/.libs/{autoresponder,yahoo}
        fi
 
        dodoc AUTHORS ChangeLog doc/*.txt NEWS README TODO
 
-       find "${D}" -name '*.la' -exec rm -f '{}' +
+       find "${D}" -name '*.la' -delete || die "Pruning failed"
 }