diff options
author | Brian Evans <grknight@gentoo.org> | 2018-10-24 13:49:26 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-10-24 13:49:26 -0400 |
commit | caf420c807bd52e6f0bdbf12845cf7f72a87c55f (patch) | |
tree | aa88b11a793ecbe0b4adb41d918a4f1c0cda947a /quickstart | |
parent | Remove more versionator references (diff) | |
download | devmanual-caf420c807bd52e6f0bdbf12845cf7f72a87c55f.tar.gz devmanual-caf420c807bd52e6f0bdbf12845cf7f72a87c55f.tar.bz2 devmanual-caf420c807bd52e6f0bdbf12845cf7f72a87c55f.zip |
Change eutils in quickstart to epatch and desktop where necessary
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'quickstart')
-rw-r--r-- | quickstart/text.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quickstart/text.xml b/quickstart/text.xml index b82185d..19a2b9e 100644 --- a/quickstart/text.xml +++ b/quickstart/text.xml @@ -260,9 +260,9 @@ compile-time dependencies, and the <c>RDEPEND</c> lists runtime dependencies. Se <p> Often we need to apply patches. This is done in the <c>src_prepare</c> function using the <c>epatch</c> helper function. To use <c>epatch</c> -one must first tell Portage that the <c>eutils</c> eclass (an eclass is +one must first tell Portage that the <c>epatch</c> eclass (an eclass is like a library) is required <d/> -this is done via <c>inherit eutils</c> at the top of the ebuild. Here's +this is done via <c>inherit epatch</c> at the top of the ebuild. Here's <c>app-misc/detox/detox-1.1.0.ebuild</c>: </p> @@ -272,7 +272,7 @@ this is done via <c>inherit eutils</c> at the top of the ebuild. Here's EAPI=5 -inherit eutils +inherit epatch DESCRIPTION="detox safely removes spaces and strange characters from filenames" HOMEPAGE="http://detox.sourceforge.net/" @@ -372,7 +372,7 @@ Another more complicated example, this time based upon EAPI=5 -inherit eutils +inherit epatch desktop DESCRIPTION="A lightweight email client and newsreader" HOMEPAGE="https://sylpheed.good-day.net/" |