summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-02-14 19:23:04 +0100
committerUlrich Müller <ulm@gentoo.org>2020-02-14 19:24:55 +0100
commit0a90f4aadd6736879081962207905261142293cf (patch)
treeef17d94fb3fb1fc89e6003fff5c127e88f155c86 /app-doc
parentapp-doc/devmanual: Restore dropped ~alpha keyword, bug 708072. (diff)
downloadgentoo-0a90f4aadd6736879081962207905261142293cf.tar.gz
gentoo-0a90f4aadd6736879081962207905261142293cf.tar.bz2
gentoo-0a90f4aadd6736879081962207905261142293cf.zip
app-doc/devmanual: Remove old.
Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-doc')
-rw-r--r--app-doc/devmanual/Manifest1
-rw-r--r--app-doc/devmanual/devmanual-0_pre20141116.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/app-doc/devmanual/Manifest b/app-doc/devmanual/Manifest
index 192ea59eecd1..ebc70e1b5948 100644
--- a/app-doc/devmanual/Manifest
+++ b/app-doc/devmanual/Manifest
@@ -1,2 +1 @@
-DIST devmanual-0_pre20141116.tar.gz 169936 BLAKE2B 9b01004750b9fce226fa6a965292d3ffaff0923f877da611743e39ee19077ea7fe0d21ff138853d3f79e4d4941026c30fcabf63c8903572ed7ba5d50d32c8dd5 SHA512 6af3f9a262bdb2ceb61ab195691dff4a850b22e8d1226e20ae3257c566b6cc913f756c8b90a40e8aa78b1242e78d24c4209a1d9cdb0706ae9b64c653544a028f
DIST devmanual-0_pre20200207.tar.xz 163940 BLAKE2B c6cf856a8f6c80b500466e27cc4106c070cff2dcf8c89d58c9ca90d03cb34a1e6a2048cb99364993f224f3497309fc24207dc44f9c14ece37c49aa602480dac0 SHA512 f6a88312e2030bf4d9fcf64bf1f38397087cb151aa41cd0c254cfc6251e4d5b291e3b361094a7c1d5fdb16e40c1702c0f0b7460ba230bfb217ad733f400c9089
diff --git a/app-doc/devmanual/devmanual-0_pre20141116.ebuild b/app-doc/devmanual/devmanual-0_pre20141116.ebuild
deleted file mode 100644
index 15b7afe991b4..000000000000
--- a/app-doc/devmanual/devmanual-0_pre20141116.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit readme.gentoo-r1
-
-DESCRIPTION="The Gentoo Development Guide"
-HOMEPAGE="https://devmanual.gentoo.org/"
-
-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"
-IUSE=""
-
-DEPEND="dev-libs/libxslt
- media-gfx/imagemagick[truetype,svg,png]"
-
-src_compile() {
- # Imagemagick uses inkscape (if present) to delegate
- # svg conversions.
- # Inkscape uses g_get_user_config_dir () which in turn
- # uses XDG_CONFIG_HOME to get the config directory for this
- # user. See bug 463380
- export XDG_CONFIG_HOME="${T}/inkscape_home"
- emake
-}
-
-src_install() {
- # 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
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
- if ! has_version app-doc/eclass-manpages; then
- elog "The offline version of the devmanual does not include the"
- elog "documentation for the eclasses. If you need it, then emerge"
- elog "the following package:"
- elog
- elog "app-doc/eclass-manpages"
- elog
- fi
-}