blob: d3c96aa71dfc1746e1afffd4ce5e29bf53ff5b81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/minbif/minbif-1.0.3.ebuild,v 1.3 2011/01/01 14:40:50 xmw Exp $
EAPI=2
inherit cmake-utils eutils
DESCRIPTION="an IRC gateway to IM networks"
HOMEPAGE="http://minbif.im/"
SRC_URI="http://symlink.me/attachments/download/50/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gnutls +imlib +libcaca pam video xinetd"
DEPEND=">=net-im/pidgin-2.6
video? ( >=net-im/pidgin-2.6[gstreamer] net-libs/farsight2 )
libcaca? ( media-libs/libcaca media-libs/imlib2 )
imlib? ( media-libs/imlib2 )
pam? ( sys-libs/pam )
gnutls? ( net-libs/gnutls )"
RDEPEND="${DEPEND}
virtual/logger
xinetd? ( sys-apps/xinetd )"
src_prepare() {
sed -i "s/-Werror//g" CMakeLists.txt || die "sed failed"
sed -i "s#share/doc/minbif#share/doc/${P}#" \
CMakeLists.txt || die "sed failed"
if use xinetd; then
sed -i "s/type\s=\s[0-9]/type = 0/" \
minbif.conf || die "sed failed"
fi
}
src_configure() {
use video && ! use libcaca && \
die "You need to enable libcaca if you enable video"
local mycmakeargs
mycmakeargs="${mycmakeargs}
-DCONF_PREFIX=${PREFIX:-/etc/minbif}
$(cmake-utils_use_enable libcaca CACA)
$(cmake-utils_use_enable video VIDEO)
$(cmake-utils_use_enable imlib IMLIB)
$(cmake-utils_use_enable pam PAM)
$(cmake-utils_use_enable gnutls TLS)"
cmake-utils_src_configure
}
pkg_preinst() {
enewgroup minbif
enewuser minbif -1 -1 /var/lib/minbif minbif
}
src_install() {
cmake-utils_src_install
keepdir /var/lib/minbif
fperms 700 /var/lib/minbif
fowners minbif:minbif /var/lib/minbif
dodoc ChangeLog README
doman man/minbif.8
if use xinetd; then
insinto /etc/xinetd.d
newins doc/minbif.xinetd minbif
fi
newinitd "${FILESDIR}"/minbif.initd minbif || die
dodir /usr/share/minbif
insinto /usr/share/minbif
doins -r scripts
}
|