diff options
author | Florian Schmaus <flow@gentoo.org> | 2022-03-14 12:03:52 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-03-14 12:22:54 +0100 |
commit | 0dd23a8833c7fd72d286c1b423bb1343d131bc73 (patch) | |
tree | 622c6768dded7a292162da96f54b9d861c9c343f /net-im/biboumi | |
parent | media-video/mplayer: ~riscv keywording (diff) | |
download | gentoo-0dd23a8833c7fd72d286c1b423bb1343d131bc73.tar.gz gentoo-0dd23a8833c7fd72d286c1b423bb1343d131bc73.tar.bz2 gentoo-0dd23a8833c7fd72d286c1b423bb1343d131bc73.zip |
net-im/biboumi: drop 9.0-r2
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'net-im/biboumi')
-rw-r--r-- | net-im/biboumi/biboumi-9.0-r2.ebuild | 110 |
1 files changed, 0 insertions, 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 -} |