summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2021-12-09 14:57:23 +0100
committerJakov Smolić <jsmolic@gentoo.org>2021-12-09 14:57:23 +0100
commit9f30a9617034ce6f86f763cad6ac794876bafaac (patch)
treed9b2151047f8bdbdf84835396cf999005e2f1dac /net-libs/balde/balde-0.1.1.ebuild
parentnet-libs/balde-markdown: treeclean (diff)
downloadgentoo-9f30a9617034ce6f86f763cad6ac794876bafaac.tar.gz
gentoo-9f30a9617034ce6f86f763cad6ac794876bafaac.tar.bz2
gentoo-9f30a9617034ce6f86f763cad6ac794876bafaac.zip
net-libs/balde: treeclean
Closes: https://bugs.gentoo.org/819321 Closes: https://bugs.gentoo.org/819312 Closes: https://bugs.gentoo.org/691770 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-libs/balde/balde-0.1.1.ebuild')
-rw-r--r--net-libs/balde/balde-0.1.1.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/net-libs/balde/balde-0.1.1.ebuild b/net-libs/balde/balde-0.1.1.ebuild
deleted file mode 100644
index d9d20aa89a46..000000000000
--- a/net-libs/balde/balde-0.1.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-if [[ ${PV} = *9999* ]]; then
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
- inherit git-r3 autotools
-fi
-
-DESCRIPTION="A microframework for C based on GLib and bad intentions"
-HOMEPAGE="https://balde.rgm.io/"
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2"
-KEYWORDS="~amd64 ~x86"
-if [[ ${PV} = *9999* ]]; then
- SRC_URI=""
-fi
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-libs/glib-2.34
- dev-libs/fcgi
- x11-misc/shared-mime-info"
-
-if [[ ${PV} = *9999* ]]; then
- RDEPEND="${RDEPEND}
- dev-util/peg"
-fi
-
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_prepare() {
- [[ ${PV} = *9999* ]] && eautoreconf
- default
-}
-
-src_configure() {
- econf \
- $(use_with doc doxygen) \
- --disable-examples \
- --without-valgrind
-}
-
-src_compile() {
- default
- use doc && emake doxygen
-}
-
-src_install() {
- default
- use doc && dohtml -r doc/build/html/.
-}