commit: 0dd23a8833c7fd72d286c1b423bb1343d131bc73
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 11:03:52 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 11:22:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dd23a88
net-im/biboumi: drop 9.0-r2
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-im/biboumi/biboumi-9.0-r2.ebuild | 110 -----------------------------------
1 file changed, 110 deletions(-)
diff --git a/net-im/biboumi/biboumi-9.0-r2.ebuild
b/net-im/biboumi/biboumi-9.0-r2.ebuild
deleted file mode 100644
index 4f571807cf7e..000000000000
--- a/net-im/biboumi/biboumi-9.0-r2.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-MY_PV="${PV/_/-}"
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+idn postgres +sqlite +ssl systemd udns"
-
-DEPEND="
- dev-libs/expat
- virtual/libiconv
- sys-apps/util-linux
- sqlite? ( dev-db/sqlite:3 )
- postgres? ( dev-db/postgresql:* )
- idn? ( net-dns/libidn:= )
- udns? ( net-libs/udns )
- ssl? ( dev-libs/botan:2= )
- !ssl? ( dev-libs/libgcrypt )
- systemd? ( sys-apps/systemd:= )
-"
-BDEPEND="dev-python/sphinx"
-RDEPEND="
- ${DEPEND}
- acct-user/biboumi
-"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-DOCS=( README.rst CHANGELOG.rst doc/user.rst )
-
-src_configure() {
- local mycmakeargs=(
- -DSERVICE_USER="${PN}"
- -DSERVICE_GROUP="${PN}"
- )
-
- # Account for biboumi's atypical configuration system.
- if use systemd; then
- mycmakeargs+=(-DWITH_SYSTEMD=yes)
- else
- mycmakeargs+=(-DWITHOUT_SYSTEMD=yes)
- fi
-
- if use idn; then
- mycmakeargs+=(-DWITH_LIBIDN=yes)
- else
- mycmakeargs+=(-DWITHOUT_LIBIDN=yes)
- fi
-
- if use ssl; then
- mycmakeargs+=(-DWITH_BOTAN=yes)
- else
- mycmakeargs+=(-DWITHOUT_BOTAN=yes)
- fi
-
- if use udns; then
- mycmakeargs+=(-DWITH_UDNS=yes)
- else
- mycmakeargs+=(-DWITHOUT_UDNS=yes)
- fi
-
- if use sqlite; then
- mycmakeargs+=(-DWITH_SQLITE3=yes)
- else
- mycmakeargs+=(-DWITHOUT_SQLITE3=yes)
- fi
-
- if use postgres; then
- mycmakeargs+=(-DWITH_POSTGRESQL=yes)
- else
- mycmakeargs+=(-DWITHOUT_POSTGRESQL=yes)
- fi
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
-
- cmake_build man
-}
-
-src_install() {
- cmake_src_install
-
- newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/${PN}.logrotate" "${PN}"
-
- diropts --owner=biboumi --group=biboumi --mode=750
- if use sqlite; then
- keepdir /var/lib/biboumi
- fi
- keepdir /var/log/biboumi
-
- insinto /etc/biboumi
- insopts --group=biboumi --mode=640
- newins conf/biboumi.cfg biboumi.cfg.example
-}