app-doc/devmanual: [QA] Port to git-r3
authorDavid Seifert <soap@gentoo.org>
Mon, 25 Dec 2017 13:45:07 +0000 (14:45 +0100)
committerDavid Seifert <soap@gentoo.org>
Mon, 25 Dec 2017 14:42:17 +0000 (15:42 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

app-doc/devmanual/devmanual-0_pre20141116.ebuild
app-doc/devmanual/devmanual-9999.ebuild

index 28cc59a11004285eab1162d900d83fb32af2b83d..e891efa24f2369c49ef716f8c3f294ccca853876 100644 (file)
@@ -1,32 +1,28 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-inherit readme.gentoo
-
-[[ "${PV}" == "9999" ]] && inherit git-2
+inherit readme.gentoo-r1
 
 DESCRIPTION="The Gentoo Development Guide"
 HOMEPAGE="https://devmanual.gentoo.org/"
-if [[ "${PV}" == "9999" ]]; then
-EGIT_REPO_URI="git://anongit.gentoo.org/proj/devmanual.git"
+
+if [[ ${PV} == *9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="git://anongit.gentoo.org/proj/devmanual.git"
 else
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
+       SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-macos"
 fi
 
 LICENSE="CC-BY-SA-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-macos"
 IUSE=""
 
 DEPEND="dev-libs/libxslt
        media-gfx/imagemagick[truetype,svg,png]"
 
-DOC_CONTENTS="In order to browse the Gentoo Development Guide in
-       offline mode, point your browser to the following url:
-       ${EPREFIX}/usr/share/doc/devmanual/html/index.html"
-
 src_compile() {
        # Imagemagick uses inkscape (if present) to delegate
        # svg conversions.
@@ -38,9 +34,22 @@ src_compile() {
 }
 
 src_install() {
-       dohtml -r *
+       # clean out XML/XSL before installing
+       find . \( \
+               -iname '*.xml' -o \
+               -iname '*.xsl' -o \
+               -iname '*.svg' \) -delete || die
+       rm -r README.md xsl LICENSE Makefile || die
+
+       local HTML_DOCS=( . )
+       einstalldocs
+
        einfo "Creating symlink from ${PF} to ${PN} for preserving bookmarks"
        dosym ${PF} /usr/share/doc/${PN}
+
+       local DOC_CONTENTS="In order to browse the Gentoo Development Guide in
+               offline mode, point your browser to the following url:
+               ${EPREFIX}/usr/share/doc/devmanual/html/index.html"
        readme.gentoo_create_doc
 }
 
index 27453deb6185b6669b345251cb6652ae36897ffd..e891efa24f2369c49ef716f8c3f294ccca853876 100644 (file)
@@ -1,26 +1,28 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-inherit git-2 readme.gentoo
+inherit readme.gentoo-r1
 
 DESCRIPTION="The Gentoo Development Guide"
 HOMEPAGE="https://devmanual.gentoo.org/"
-EGIT_REPO_URI="git://anongit.gentoo.org/proj/devmanual.git"
+
+if [[ ${PV} == *9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="git://anongit.gentoo.org/proj/devmanual.git"
+else
+       SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-macos"
+fi
 
 LICENSE="CC-BY-SA-2.0"
 SLOT="0"
-KEYWORDS=""
 IUSE=""
 
 DEPEND="dev-libs/libxslt
        media-gfx/imagemagick[truetype,svg,png]"
 
-DOC_CONTENTS="In order to browse the Gentoo Development Guide in
-       offline mode, point your browser to the following url:
-       /usr/share/doc/devmanual/html/index.html"
-
 src_compile() {
        # Imagemagick uses inkscape (if present) to delegate
        # svg conversions.
@@ -32,9 +34,22 @@ src_compile() {
 }
 
 src_install() {
-       dohtml -r *
+       # clean out XML/XSL before installing
+       find . \( \
+               -iname '*.xml' -o \
+               -iname '*.xsl' -o \
+               -iname '*.svg' \) -delete || die
+       rm -r README.md xsl LICENSE Makefile || die
+
+       local HTML_DOCS=( . )
+       einstalldocs
+
        einfo "Creating symlink from ${PF} to ${PN} for preserving bookmarks"
        dosym ${PF} /usr/share/doc/${PN}
+
+       local DOC_CONTENTS="In order to browse the Gentoo Development Guide in
+               offline mode, point your browser to the following url:
+               ${EPREFIX}/usr/share/doc/devmanual/html/index.html"
        readme.gentoo_create_doc
 }