Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/minbif/
Date: Mon, 02 May 2016 22:24:10
Message-Id: 1462227707.5bab766ae0e38dce1076ab17edb2750ee008f573.wizardedit@gentoo
1 commit: 5bab766ae0e38dce1076ab17edb2750ee008f573
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 18:49:23 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 22:21:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bab766a
7
8 net-im/minbif: remove old version
9
10 Package-Manager: portage-2.2.26
11
12 net-im/minbif/minbif-1.0.5-r1.ebuild | 84 ------------------------------------
13 1 file changed, 84 deletions(-)
14
15 diff --git a/net-im/minbif/minbif-1.0.5-r1.ebuild b/net-im/minbif/minbif-1.0.5-r1.ebuild
16 deleted file mode 100644
17 index 0262b1a..0000000
18 --- a/net-im/minbif/minbif-1.0.5-r1.ebuild
19 +++ /dev/null
20 @@ -1,84 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -inherit cmake-utils eutils user
27 -
28 -DESCRIPTION="an IRC gateway to IM networks"
29 -HOMEPAGE="https://symlink.me/projects/minbif/wiki/"
30 -SRC_URI="https://symlink.me/attachments/download/148/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~arm x86"
35 -IUSE="gnutls +imlib +libcaca pam xinetd"
36 -REQUIRED_USE="
37 - libcaca? ( imlib )
38 -"
39 -
40 -DEPEND="
41 - >=net-im/pidgin-2.6
42 - libcaca? ( media-libs/libcaca media-libs/imlib2 )
43 - imlib? ( media-libs/imlib2 )
44 - pam? ( sys-libs/pam )
45 - gnutls? ( net-libs/gnutls )
46 -"
47 -RDEPEND="${DEPEND}
48 - virtual/logger
49 - xinetd? ( sys-apps/xinetd )
50 -"
51 -
52 -pkg_setup() {
53 - enewgroup minbif
54 - enewuser minbif -1 -1 /var/lib/minbif minbif
55 -}
56 -
57 -src_prepare() {
58 - epatch "${FILESDIR}/${PN}-1.0.5-glib-single-includes.patch"
59 - epatch "${FILESDIR}/${PN}-1.0.5-gcc47.patch"
60 -
61 - sed -i "s/-Werror//g" CMakeLists.txt || die "sed failed"
62 -
63 - sed -i "s#share/doc/minbif#share/doc/${P}#" \
64 - CMakeLists.txt || die "sed failed"
65 -
66 - if use xinetd; then
67 - sed -i "s/type\s=\s[0-9]/type = 0/" \
68 - minbif.conf || die "sed failed"
69 - fi
70 -}
71 -
72 -src_configure() {
73 - local mycmakeargs
74 - mycmakeargs="${mycmakeargs}
75 - -DCONF_PREFIX=${PREFIX:-/etc/minbif}
76 - -DENABLE_VIDEO=OFF
77 - $(cmake-utils_use_enable libcaca CACA)
78 - $(cmake-utils_use_enable imlib IMLIB)
79 - $(cmake-utils_use_enable pam PAM)
80 - $(cmake-utils_use_enable gnutls TLS)"
81 -
82 - cmake-utils_src_configure
83 -}
84 -
85 -src_install() {
86 - cmake-utils_src_install
87 - keepdir /var/lib/minbif
88 - fperms 700 /var/lib/minbif
89 - fowners minbif:minbif /var/lib/minbif
90 -
91 - dodoc ChangeLog README
92 - doman man/minbif.8
93 -
94 - if use xinetd; then
95 - insinto /etc/xinetd.d
96 - newins doc/minbif.xinetd minbif
97 - fi
98 -
99 - newinitd "${FILESDIR}"/minbif.initd minbif
100 -
101 - dodir /usr/share/minbif
102 - insinto /usr/share/minbif
103 - doins -r scripts
104 -}