diff options
author | Manuel Rüger <manuel@rueg.eu> | 2016-10-03 02:12:20 +0200 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2016-10-28 10:38:07 -0400 |
commit | 003c9dc975e405c979b5fd285e23bd25ce9711e4 (patch) | |
tree | f870d5a07237a4c5074114609b82e9b9acdd4d38 /quickstart | |
parent | ebuild-writing/variables: move the trailing slash issue to a separate section (diff) | |
download | devmanual-003c9dc975e405c979b5fd285e23bd25ce9711e4.tar.gz devmanual-003c9dc975e405c979b5fd285e23bd25ce9711e4.tar.bz2 devmanual-003c9dc975e405c979b5fd285e23bd25ce9711e4.zip |
quickstart: Update the first ebuild to the latest EAPI
Drop dohtml, as it is deprecated in EAPI=6 and we should not encourage
new users to use it.
Diffstat (limited to 'quickstart')
-rw-r--r-- | quickstart/text.xml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/quickstart/text.xml b/quickstart/text.xml index e919716..25d66bd 100644 --- a/quickstart/text.xml +++ b/quickstart/text.xml @@ -38,7 +38,7 @@ can see real ebuilds in the main tree). # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 DESCRIPTION="Exuberant ctags generates tags files for quick source navigation" HOMEPAGE="http://ctags.sourceforge.net" @@ -56,7 +56,6 @@ src_install() { emake DESTDIR="${D}" install dodoc FAQ NEWS README - dohtml EXTENDING.html ctags.html } </codesample> </body> @@ -162,7 +161,7 @@ installs. </note> <p> -The <c>dodoc</c> and <c>dohtml</c> are helper functions for installing +The <c>dodoc</c> is a helper function for installing files into the relevant part of <c>/usr/share/doc</c>. </p> |