diff options
author | Michael Weber <xmw@gentoo.org> | 2014-12-24 09:58:27 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2014-12-24 09:58:27 +0000 |
commit | 8f24f904f9215ec89dab76610c06e6dd2ef34c3e (patch) | |
tree | 1c66a1127953a13254445397fcf5c1d03d1a6490 /eclass | |
parent | x11-libs/qwt: Add opengl support; fix wrong lib location in pc file, #523490 (diff) | |
download | gentoo-2-8f24f904f9215ec89dab76610c06e6dd2ef34c3e.tar.gz gentoo-2-8f24f904f9215ec89dab76610c06e6dd2ef34c3e.tar.bz2 gentoo-2-8f24f904f9215ec89dab76610c06e6dd2ef34c3e.zip |
remove base.eclass inherit
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/netsurf.eclass | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 0083dab4124a..47bdd197ee73 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1471 2014/12/21 14:30:08 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1472 2014/12/24 09:58:27 xmw Exp $ + + 24 Dec 2014; Michael Weber <xmw@gentoo.org> netsurf.eclass: + remove base.eclass inherit 21 Dec 2014; Michał Górny <mgorny@gentoo.org> tests/python-utils-r1.sh: Update tests for unsupported python3.2. diff --git a/eclass/netsurf.eclass b/eclass/netsurf.eclass index e1d778729adf..4574ebb706a5 100644 --- a/eclass/netsurf.eclass +++ b/eclass/netsurf.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/netsurf.eclass,v 1.1 2013/06/23 16:36:49 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/netsurf.eclass,v 1.2 2014/12/24 09:58:27 xmw Exp $ # @ECLASS: netsurf.eclass # @MAINTAINER: @@ -17,7 +17,7 @@ case ${EAPI:-0} in *) ;; esac -inherit base toolchain-funcs multilib-minimal +inherit eutils toolchain-funcs multilib-minimal EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install @@ -56,10 +56,12 @@ DEPEND="virtual/pkgconfig" # @FUNCTION: netsurf_src_prepare # @DESCRIPTION: -# Run base_src_prepare for PATCHES support and multilib_copy_sources for -# in-source build. +# Apply and PATCHES and multilib_copy_sources for in-source build. netsurf_src_prepare() { - base_src_prepare + [[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}" + debug-print "$FUNCNAME: applying user patches" + epatch_user + multilib_copy_sources } |