summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-06-24 06:32:12 +0000
committerJustin Lecher <jlec@gentoo.org>2015-06-24 06:32:12 +0000
commit96d981bc0da8c26d985f4fa6444e01c3b1bd7727 (patch)
tree3d41deda2990eee2c78754182b820c9ea9d2bbfd /eclass
parentAdd support for multiple styles in Qt5, thanks jorgicio for the patch; http:/... (diff)
downloadgentoo-2-96d981bc0da8c26d985f4fa6444e01c3b1bd7727.tar.gz
gentoo-2-96d981bc0da8c26d985f4fa6444e01c3b1bd7727.tar.bz2
gentoo-2-96d981bc0da8c26d985f4fa6444e01c3b1bd7727.zip
Drop base.eclass usage
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/waf-utils.eclass8
2 files changed, 8 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 35d349572006..081ff25e9d67 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1679 2015/06/23 18:59:43 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1680 2015/06/24 06:32:12 jlec Exp $
+
+ 24 Jun 2015; Justin Lecher <jlec@gentoo.org> waf-utils.eclass:
+ Drop base.eclass usage
23 Jun 2015; William Hubbs <williamh@gentoo.org> golang-vcs.eclass:
The GOPATH environment variable is now passed directly to the
diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
index f55f98a57f38..a3bf52a92817 100644
--- a/eclass/waf-utils.eclass
+++ b/eclass/waf-utils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.22 2015/01/03 14:50:34 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.23 2015/06/24 06:32:12 jlec Exp $
# @ECLASS: waf-utils.eclass
# @MAINTAINER:
@@ -15,10 +15,10 @@
# waf-based packages much easier.
# Its main features are support of common portage default settings.
-inherit base eutils multilib toolchain-funcs multiprocessing
+inherit eutils multilib toolchain-funcs multiprocessing
case ${EAPI:-0} in
- 3|4|5) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
+ 4|5) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac
@@ -125,5 +125,5 @@ waf-utils_src_install() {
"${WAF_BINARY}" --destdir="${D}" install || die "Make install failed"
# Manual document installation
- base_src_install_docs
+ einstalldocs
}