diff options
author | Andrey Utkin <andrey_utkin@gentoo.org> | 2018-09-22 23:20:13 +0100 |
---|---|---|
committer | Andrey Utkin <andrey_utkin@gentoo.org> | 2018-09-23 01:59:36 +0100 |
commit | 2e4fafc65fa4455bbbf0a634ad540dd9f153250c (patch) | |
tree | a2be11e88cad7ae209dbf41525dcd5e5739a4ff0 | |
parent | net-im/mcabber: drop misused 'modules' USE flag (diff) | |
download | gentoo-2e4fafc65fa4455bbbf0a634ad540dd9f153250c.tar.gz gentoo-2e4fafc65fa4455bbbf0a634ad540dd9f153250c.tar.bz2 gentoo-2e4fafc65fa4455bbbf0a634ad540dd9f153250c.zip |
net-im/mcabber: EAPI=7
Stopped using autotools-utils eclass.
Package-Manager: Portage-2.3.48, Repoman-2.3.10
-rw-r--r-- | net-im/mcabber/mcabber-9999.ebuild | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/net-im/mcabber/mcabber-9999.ebuild b/net-im/mcabber/mcabber-9999.ebuild index b2a9886fa91b..0813371b2a8a 100644 --- a/net-im/mcabber/mcabber-9999.ebuild +++ b/net-im/mcabber/mcabber-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit flag-o-matic autotools-utils mercurial +inherit flag-o-matic mercurial DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP" HOMEPAGE="http://mcabber.com/" @@ -37,9 +37,6 @@ RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 ) DEPEND="${RDEPEND} virtual/pkgconfig" -## autotools-utils.eclass settings -AUTOTOOLS_AUTORECONF="1" -AUTOTOOLS_IN_SOURCE_BUILD="1" DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt ) pkg_setup() { @@ -49,19 +46,17 @@ pkg_setup() { } src_configure() { - local myeconfargs=( + econf \ --enable-modules \ $(use_enable crypt gpgme) \ $(use_enable otr) \ $(use_enable aspell) \ $(use_enable spell enchant) \ $(use_with idn libidn) - ) - autotools-utils_src_configure } src_install() { - autotools-utils_src_install + default # clean unneeded language documentation for i in ${LANGS}; do |