diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2020-06-12 19:50:08 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2020-06-12 20:02:15 +0300 |
commit | ca5da1e06f6960ba6a892d3adf24512f57de2ad9 (patch) | |
tree | 1fdef964765e437e6837fb7a3ab458982e5a6f20 /app-doc | |
parent | app-admin/clsync: remove old (diff) | |
download | gentoo-ca5da1e06f6960ba6a892d3adf24512f57de2ad9.tar.gz gentoo-ca5da1e06f6960ba6a892d3adf24512f57de2ad9.tar.bz2 gentoo-ca5da1e06f6960ba6a892d3adf24512f57de2ad9.zip |
app-doc/clsync-docs: remove old
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/clsync-docs/Manifest | 1 | ||||
-rw-r--r-- | app-doc/clsync-docs/clsync-docs-0.4.2.ebuild | 40 |
2 files changed, 0 insertions, 41 deletions
diff --git a/app-doc/clsync-docs/Manifest b/app-doc/clsync-docs/Manifest index bc0327932bec..53ae0d386a14 100644 --- a/app-doc/clsync-docs/Manifest +++ b/app-doc/clsync-docs/Manifest @@ -1,2 +1 @@ -DIST clsync-0.4.2.tar.gz 256042 BLAKE2B 28474fc66341b93705a502fcff390e3affcd89a9e1eb272dce9b28be709562e09c03e9c300cfeb5371e2e618a2239468a58c46212a39d751fbbfddeaab12bcf6 SHA512 d14a2efc4bf58d9d5c7a3fe5634cacdd182cd7cd814b0e9ebd99024a7282b056d1f7ceeec6903666391c3572d599a18e205af818b098ed7768d5c0e0f4cd1200 DIST clsync-0.4.4.tar.gz 268276 BLAKE2B 0027760cfdee5c4410c4cea45aae2def6498d812d2f50038993c39a33c6029722ec2dd2cfff20815a3ffd8834eb8c439059e5f1d2cc3d2cf98ecb22ed22f2322 SHA512 cdafbf43fdeafe9cb53c08e0514ef356fb5b4bbd8da2226263180e7441d222c76e6c73f847f484b3688a8672e4a85df0346c0236d8d0ed4506d209189af02dcd diff --git a/app-doc/clsync-docs/clsync-docs-0.4.2.ebuild b/app-doc/clsync-docs/clsync-docs-0.4.2.ebuild deleted file mode 100644 index 80ae3e55b4a1..000000000000 --- a/app-doc/clsync-docs/clsync-docs-0.4.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PN="${PN%-docs}" -MY_P="${MY_PN}-${PV}" - -SRC_URI="https://github.com/xaionaro/${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/xaionaro/clsync" -LICENSE="GPL-3+" -SLOT="0" -IUSE="api +examples" - -DEPEND="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 - docinto examples - dodoc -r examples/{production,clsync*} - fi -} |