app-doc/clsync-docs: Drop old
authorMikle Kolyada <zlogene@gentoo.org>
Fri, 20 Jul 2018 22:07:34 +0000 (01:07 +0300)
committerMikle Kolyada <zlogene@gentoo.org>
Fri, 20 Jul 2018 22:07:34 +0000 (01:07 +0300)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

app-doc/clsync-docs/Manifest
app-doc/clsync-docs/clsync-docs-0.4.1.ebuild [deleted file]

index 80d49e32bcc35823c3999b58162f91acd4a519c3..908a4bd9d9e1d3f4581a2f92804977c4b90bc86f 100644 (file)
@@ -1,2 +1 @@
-DIST clsync-0.4.1.tar.gz 253890 BLAKE2B c8aada690635f1cac355a1eaa51f4379688b0005869c5dcd6edccf5ae8e86abddf9ff99ccfcffeb165ccc80f407087a3f0863d1b78279894ff410daf25467740 SHA512 875280f706026d44806b92c22fa58d016136b2792f67a6b7e77f932465081da7a1ebaf22c25e538e4b58bfe04cd1cd5450ecab99c3df53ddd2a0fa966442d444
 DIST clsync-0.4.2.tar.gz 256042 BLAKE2B 28474fc66341b93705a502fcff390e3affcd89a9e1eb272dce9b28be709562e09c03e9c300cfeb5371e2e618a2239468a58c46212a39d751fbbfddeaab12bcf6 SHA512 d14a2efc4bf58d9d5c7a3fe5634cacdd182cd7cd814b0e9ebd99024a7282b056d1f7ceeec6903666391c3572d599a18e205af818b098ed7768d5c0e0f4cd1200
diff --git a/app-doc/clsync-docs/clsync-docs-0.4.1.ebuild b/app-doc/clsync-docs/clsync-docs-0.4.1.ebuild
deleted file mode 100644 (file)
index f4943ee..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PN="${PN%-docs}"
-MY_P="${MY_PN}-${PV}"
-
-if [[ ${PV} == "9999" ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://github.com/xaionaro/${MY_PN}.git"
-else
-       SRC_URI="https://github.com/xaionaro/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
-       KEYWORDS="~amd64 ~x86"
-       S="${WORKDIR}/${MY_P}"
-fi
-
-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="
-       virtual/pkgconfig
-       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
-               dohtml -r doc/doxygen/html/*
-               dodoc -r doc/devel/*
-       fi
-       if use examples; then
-               docinto examples
-               dodoc -r examples/{production,clsync*}
-       fi
-}