commit: 444a8e9858bddba62b329832c2b4c69262c06c87
Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Wed May 6 16:23:08 2020 +0000
Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Wed May 6 16:25:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444a8e98
app-doc/clsync-docs: drop old
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
app-doc/clsync-docs/clsync-docs-0.4.4.ebuild | 39 ----------------------------
1 file changed, 39 deletions(-)
diff --git a/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild
b/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild
deleted file mode 100644
index 2de567fcf95..00000000000
--- a/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN%-docs}"
-MY_P="${MY_PN}-${PV}"
-
-SRC_URI="https://github.com/clsync/${MY_PN}/archive/v${PV}.tar.gz ->
${MY_P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Clsync and libclsync API documentation"
-HOMEPAGE="http://ut.mephi.ru/oss/clsync https://github.com/clsync/clsync"
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="api +examples"
-
-BDEPEND="api? ( app-doc/doxygen )"
-
-src_configure() {
- : # doxygen doesn't depend on configuration
-}
-
-src_compile() {
- if use api; then
- doxygen .doxygen || die "doxygen failed"
- fi
-}
-
-src_install() {
- dodoc CONTRIB DEVELOPING NOTES PROTOCOL README.md SHORTHANDS TODO
- if use api; then
- dodoc -r doc/doxygen/html doc/devel/*
- fi
- if use examples; then
- dodoc -r examples
- fi
-}